4.1. Experimental Setup
The experimental framework of this study is designed to evaluate the effectiveness of the proposed forecasting and rebalancing mechanisms using real-world financial data. All experiments are conducted using daily observations covering the period from January 2022 to December 2024. The primary prediction targets are six ESG-themed ETFs, selected for their relevance to sustainability-oriented investment themes and accessibility through public data platforms. These ETFs span U.S.-based ESG-compliant equity indices, global clean energy sectors, China’s green technology markets, and direct exposure to global carbon pricing through carbon allowance markets. Each ETF’s adjusted closing price is collected via Yahoo Finance and aligned into a synchronized daily sequence. These prices are transformed into daily log returns, which serve as the regression targets for the forecasting models.
The technical indicators are drawn from two primary categories-moving average-based and momentum-based metrics- specifically including SMA, EMA, RSI, and MACD. These indicators are computed using the ETF price series and are treated as dynamic, model-aware signals for trend characterization and price momentum. Meanwhile, carbon-related market signals are represented by four daily indices retrieved from the S&P Global Carbon Credit Index family. These include benchmarks that reflect pricing developments in both compliance markets (e.g., EUA, CCA) and broader global carbon allowance portfolios. To ensure consistency in scale and interpretation, all carbon indices are standardized using z-score normalization, preserving temporal fluctuation patterns while aligning value distributions across assets.
The forecasting task is performed using three Transformer-inspired deep learning architectures: the Ordinary Transformer, Informer, and TFT. Each model is trained independently using the same data inputs and evaluation splits, with the objective of predicting next-day returns for all six ETFs. The use of these three architectures is intended to compare how differences in attention sparsity, temporal filtering, and gating mechanisms influence sequence prediction in financial domains. The target of each model is a one-step-ahead prediction for each asset, formulated as a univariate regression per ETF per day. All models are trained using Mean Squared Error as the loss function, with early stopping criteria based on validation loss. The training-validation-testing split follows a chronological split strategy, using the earliest portion of data for training and the latest for testing to simulate realistic deployment. To avoid information leakage, all rolling normalization statistics were computed using only information available up to each forecast origin, and the validation and test periods were evaluated strictly out-of-sample under the chronological split.
On top of the forecasting output, this study applies the two-step rebalancing strategy defined in
Section 3.2.2. In Step 1, predicted next-day returns are filtered by a return deviation threshold
. When the deviation of an asset-specific forecast from the cross-asset average is smaller than
, that forecast is replaced by the average forecast in order to suppress weak relative signals. In Step 2, the filtered forecasts are converted into portfolio weights through a Softmax mapping, where
controls the sharpness of the score-to-weight transformation. The resulting weights are then updated through inertia smoothing, where
determines the extent to which the previous day’s portfolio weights are retained. In the main experiment, the return deviation threshold is fixed at
= 0.005 to suppress minor cross-asset noise while preserving economically meaningful forecast dispersion. The parameters
and
are examined in the sensitivity analysis to evaluate the trade-off among responsiveness, stability, and turnover under the baseline and no-carbon settings.
These parameters are fixed during the primary experiment and later varied in robustness analysis to evaluate stability and sensitivity. Model performance is evaluated through a set of six metrics. RMSE, MAE, and the coefficient of determination are used to measure prediction accuracy. Sharpe Ratio, MDD, and Hit Ratio are used to assess the portfolio-level implications of the predictions under the rebalancing strategy. All evaluation metrics are computed based on the daily predictions and resulting portfolio performance, using rolling windows where appropriate to capture short- and mid-term dynamics. The experimental protocol emphasizes both pointwise error analysis and trend consistency in directional forecasting.
All training and inference procedures are conducted in a high-performance computing environment to ensure scalability and reproducibility. The experimental system runs on a workstation with Windows 11 Pro, powered by an Intel® Core™ i9-12900K processor (Intel, Santa Clara, CA, USA) and 32 GB of RAM. GPU acceleration is enabled through an NVIDIA GeForce RTX 4080 (NVIDIA, Santa Clara, CA, USA) graphics card, which supports efficient attention matrix computation, parallelized backpropagation, and time-series batching during model training. This configuration provides sufficient capacity to handle multivariate time series inputs and high-resolution output across long evaluation periods.
4.2. Experimental Results
In this experiment, all models are trained using a fixed chronological data split: the training set includes data from January 2022 to June 2023, the validation set spans July 2023 to December 2023, and the testing set covers January 2024 to December 2024. Input sequences are constructed using a rolling window of 30 trading days, with the model predicting the return on the next day. The batch size is set to 32, and early stopping is employed based on validation loss with a patience of 20 epochs. Three Transformer-based architectures are implemented under the same preprocessing pipeline. The ordinary Transformer adopts a full self-attention mechanism and positional encoding without specialized temporal modules. The Informer model incorporates a sparse self-attention structure that reduces computational cost in long sequences by focusing on dominant patterns. It also uses a distilling decoder for improved efficiency. The TFT introduces interpretable elements, including variable selection networks, gating mechanisms, and temporal fusion layers, which allow the model to dynamically weight both input variables and time steps. All models are optimized using the Adam optimizer with a learning rate of 0.01, and weight decay set to 1 × 10−5.
This section presents the empirical results of the proposed ESG portfolio rebalancing framework.
Section 4.2.1 examines forecasting diagnostics across models and assets.
Section 4.2.2 analyzes sensitivity to the Softmax sharpness and smoothing parameters.
Section 4.2.3 compares the proposed strategies with stronger benchmark allocation rules, while
Section 4.2.4 reports the ablation results of the main rebalancing components.
Section 4.2.5 evaluates statistical uncertainty through bootstrap confidence intervals, and
Section 4.2.6 examines subperiod robustness across 2024H1 and 2024H2.
Section 4.2.7 then investigates explainability from grouped, feature-level, and local SHAP perspectives, followed by a comprehensive empirical evaluation in
Section 4.2.8.
4.2.1. Forecast Error Diagnostics Across Models
This subsection assesses the reasonableness and stability of one-day-ahead forecasts by comparing three deep models (Transformer, Informer, TFT) against classical baselines (LSTM, GRU, SVR) across six ETFs (ESGU, ICLN, KGRN, KRBN, SUSA, TAN).
Figure 2 and
Figure 3 report the cross-ticker dispersion of MAE and RMSE, while
Figure 4 summarizes R
2. For a concise cross-model comparison, we also average each metric over all tickers and report the results in
Table 1.
The evidence indicates that Informer achieves the strongest aggregate forecasting performance across the six ETFs, with the lowest average MAE and RMSE and consistently competitive R2, suggesting better alignment with the underlying price dynamics. TFT follows as the next most stable deep model in the aggregate summary, although its advantage is less pronounced and its forecasts remain closer to the benchmark in later portfolio analysis. Transformer shows competitive behavior on selected tickers, especially in more volatile names, but its error metrics are less consistent across the full universe and therefore do not match Informer’s overall average performance. Among the remaining baselines, GRU generally occupies a middle position without a clear leading pattern, while SVR and LSTM exhibit weaker and less stable results on several assets, including larger errors or negative R2 values on specific tickers.
In this experiment, Informer delivers the clearest and most consistent forecasting advantage in both error minimization and explanatory power (R2). TFT remains the second most stable deep model in the aggregate evaluation, whereas Transformer is better characterized as selectively competitive rather than uniformly strong across all tickers. This distinction is important for the later portfolio analysis: lower average forecasting error does not automatically guarantee the best allocation path, because portfolio outcomes also depend on cross-asset score dispersion, rebalancing sensitivity, and turnover interaction. For this reason, the subsequent portfolio backtests and explainability analysis focus on the three deep sequence models, which provide the most relevant comparison for understanding how predictive structure is translated into portfolio decisions.
Before proceeding to portfolio-level evaluations, it is essential to examine whether the models produce return forecasts that resonate with actual market movements.
Figure 5,
Figure 6,
Figure 7,
Figure 8,
Figure 9 and
Figure 10 plot the next-day log returns for each of the six ETFs, superimposed with their corresponding price series for context. The black curve marks the observed log return, whereas Transformer, Informer, and TFT are shown in blue, orange dashed, and purple dotted lines, respectively. These figures are used to assess whether the model outputs broadly track market turning behavior and whether the resulting forecast signals are sufficiently informative to support the subsequent rebalancing analysis.
In the case of ESGU, the market environment is relatively tranquil, with a steady uptrend and moderate return volatility. All three models track the general shape of the return curve, though discrepancies emerge in their vertical positioning. Informer remains consistently above the zero line, indicating a positive bias, while Transformer and TFT fluctuate closer to a zero-mean band, capturing several subtle spikes. Here, the key difference lies in the level shift rather than direction. Even if turning points are correctly identified, persistent deviation from the baseline inflates error metrics, particularly MAE.
As for ICLN, which experiences a strong mid-year rally followed by a fourth-quarter decline, the performance gap between models becomes more pronounced. Transformer aligns well with the actual series, mirroring both the upward surges and corrective dips. TFT tends to be more cautious, undershooting rebounds during drawdowns and reacting less decisively to market swings. Informer, while smoother, exhibits a gentle downward tilt for long stretches, deviating from the true curve in a systematic fashion. This explains why Transformer outperforms on ICLN in terms of both RMSE and MAE.
The return sequence for KGRN is dominated by oscillatory waves, with recurring rise-and-fade cycles. Transformer effectively mirrors both the timing and the amplitude of these cycles, offering a balanced representation. In contrast, Informer and TFT appear more constrained, failing to fully register the extremes. As volatility intensifies mid-year, Transformer retains its phase alignment without being drawn away from a neutral baseline. This characteristic is crucial in our two-step allocation method, as score stability directly impacts portfolio weight calibration.
A different dynamic plays out in KRBN, a carbon-credit ETF that often exhibits sudden price shocks and reversals. All models dampen the magnitude of these extreme movements, likely due to risk-aware architectures. However, Transformer still manages to capture the correct directional shifts, whereas Informer periodically drifts upward and TFT becomes noisier near inflection points. In this jump-revert regime, directional accuracy proves more valuable than perfect magnitude estimation, and Transformer strikes that balance more effectively.
With SUSA, we enter low-volatility territory. The predicted return curves are tightly packed and nearly indistinguishable at a glance. Transformer, Informer, and TFT converge around the zero line, with minor variation in smoothness: Informer is the smoothest and carries a slight upward bias, Transformer is centered and slightly more dynamic, while TFT exhibits small, rapid fluctuations. In such cases, exploitable alpha is minimal, and model differentiation becomes a matter of noise control and stability rather than signal quality.
TAN introduces the opposite scenario, being the most volatile ETF in this group. The price curve shows frequent reversals, particularly sharp toward the year’s end. Transformer maintains close tracking with the truth while staying near the baseline, showing restraint without sacrificing directional accuracy. TFT overshoots both upswings and downswings, producing conspicuous spikes, especially in the final quarter. Informer remains moderate but can drift negatively. Here, volatility magnifies the contrasts among models, providing clear visual evidence of their behavioral traits.
This set of overlays illustrates three central observations. First, all models maintain reasonable phase alignment with the truth, satisfying the primary requirement for our Softmax-based rebalancing. Second, systematic traits-Informer’s level drift and TFT’s reactivity-manifest more visibly in volatile contexts and explain their relatively higher residual errors. Third, the clarity of visual separation among models is directly related to volatility: high-volatility ETFs like TAN and KRBN accentuate the differences, while low-volatility ones like SUSA compress them. These graphical checks complement our earlier numerical results and help explain why Transformer may exhibit a comparatively smoother portfolio path in subsequent experiments, even when its aggregate forecast errors are not the lowest.
4.2.2. Sensitivity to Softmax Sharpness and Rebalancing Smoothing: Baseline vs. No-Carbon
This section investigates how variations in the Softmax sharpness parameter
and the inertia smoothing coefficient
affect portfolio-level performance under the baseline and no-carbon settings. Performance is evaluated through changes in Sharpe ratio, maximum drawdown, hit ratio, and turnover. Here,
controls how aggressively filtered return scores are translated into cross-asset allocation differences, whereas
controls how strongly previous portfolio weights are retained during rebalancing.
Figure 11 summarizes these sensitivity patterns across the three deep sequence models and helps identify whether performance changes are mainly associated with allocation concentration, smoothing intensity, or the presence of carbon-related inputs.
As shown in
Figure 11a,
Sharpe steadily increases with
for both Informer and Transformer. This pattern indicates that the performance contribution of carbon-informed forecasts becomes more visible when the score-to-weight mapping is sharper. TFT displays the opposite tendency, suggesting that a more concentrated allocation rule does not help it convert the baseline forecasts into superior portfolio outcomes. The contrast across models shows that the value of carbon information depends on how effectively each architecture converts forecast dispersion into allocation signals.
Turning to directional accuracy, hit ratios remain mostly stable across α variations. As illustrated in
Figure 11c, ΔHit values hover around zero for all three models, with only minor dips for Informer and Transformer in select α regions. This supports the conclusion that carbon signals do not significantly affect the ability to predict market direction. When analyzing
(with
fixed at 1.2), the trends shift. In
Figure 11d, all models perform best under low
, where allocations are based mostly on current scores. This highlights the importance of responsiveness in capturing short-term opportunities. As
increases, Transformer and Informer gradually lose this edge, while TFT shows moderate improvement, benefiting from persistence in smoother market conditions. A different dynamic appears in
Figure 11e, which charts drawdown sensitivity. Informer and Transformer benefit from increased
, as smoother allocations help limit large losses. Conversely, TFT’s Δ MDD worsens with rising
, possibly due to lagged reactions that magnify losses during downturns. These results reflect each model’s trade-off between adaptability and stability.
Figure 11f revisits the hit ratio across
levels and confirms earlier findings—directional accuracy remains largely unchanged. ΔHit values stay near zero, with no consistent advantage from smoothing, reinforcing that model structure, not
δ, dictates forecast accuracy.
Figure 11g tracks changes in turnover. Higher
consistently lowers ΔTurnover, particularly for Transformer, suggesting reduced trading activity and improved cost-efficiency. Informer sees the steepest increase in turnover at low
, where quick responsiveness comes at a price. These cost implications are essential when evaluating post-transaction net returns.
The sensitivity analysis reveals the nuanced interplay between responsiveness, stability, and model structure. Carbon signals can improve portfolio outcomes when they are aligned with each model’s learning dynamics and with an appropriately calibrated allocation rule.
4.2.3. Benchmark Comparison with Stronger Allocation Baselines
This experiment evaluates portfolio-level allocation performance rather than forecasting accuracy for individual assets. Using three deep learning models, namely Transformer, Informer, and TFT, this study constructs dynamic portfolio weights across six ESG-themed ETFs, including ESGU, SUSA, ICLN, TAN, KRBN, and KGRN. In addition to the model-based strategies, three benchmark allocation methods are considered, namely Equal Weight, Risk Parity, and Momentum, in order to provide a stronger comparative basis for portfolio evaluation.
Figure 12a,b further illustrate the corresponding equity and drawdown trajectories over the aligned test period.
Table 2 shows that the benchmark strategies display heterogeneous behavior across performance dimensions. Equal Weight achieves the highest Sharpe ratio among all reported strategies, whereas Momentum exhibits the weakest overall performance, with the lowest Sharpe ratio and the deepest drawdown. Risk Parity remains more stable than Momentum, but its overall risk-adjusted performance is still limited. Against these stronger baselines, the three deep learning-based strategies remain competitive. Informer delivers the strongest Sharpe ratio among the model-based approaches, while Transformer and TFT produce comparable drawdown levels with relatively low average turnover. These results suggest that the proposed framework does not rely on comparison with a weak baseline only, but retains reasonable portfolio performance when evaluated against standard benchmark allocation rules.
From the trajectory perspective,
Figure 12a indicates that the model-based strategies generally move within a similar range, although their cumulative paths differ from those of the benchmark rules during several subperiods.
Figure 12b shows that the deep learning-based strategies avoid the pronounced drawdown deterioration observed under the Momentum benchmark, while remaining broadly comparable to Equal Weight and Risk Parity in downside behavior. This pattern suggests that the proposed rebalancing mechanism provides a competitive alternative to conventional allocation rules, although its advantage is better interpreted as moderate and context-dependent rather than uniformly dominant across all metrics.
Starting from
Figure 12a, the equity curves reveal clear differences between standard benchmark rules and model-based rebalancing strategies over the aligned test period. Equal Weight remains one of the strongest performers in cumulative return terms, while Momentum shows a visibly weaker trajectory and loses competitiveness in the latter half of the sample. Risk Parity follows a more stable path, although its cumulative growth remains moderate. Against these benchmark rules, the Transformer-, Informer-, and TFT-based strategies remain within a comparable performance range. Their equity paths do not indicate uniformly dominant outperformance, but they do show that the proposed framework can maintain competitive portfolio growth without relying on comparison against a weak baseline alone.
Figure 12b further compares the drawdown behavior of these strategies. The most pronounced deterioration is observed under the Momentum benchmark, which experiences substantially deeper and more persistent drawdowns than the other strategies. In contrast, the three deep learning-based strategies remain closer to Equal Weight and Risk Parity in downside behavior, suggesting that the proposed rebalancing mechanism avoids the most severe drawdown episodes while maintaining broadly comparable risk characteristics. Among the model-based strategies, the differences are moderate rather than extreme, which implies that their relative advantages are better interpreted in terms of stability and allocation behavior instead of sharply different directional success rates. This visual and metric-based comparison should therefore be interpreted primarily as evidence of competitiveness, especially because the later bootstrap analysis shows that many benchmark-based differences are not statistically significant at the 95% level.
4.2.4. Ablation Analysis of the Proposed Framework
To further examine whether the proposed framework derives its performance from a meaningful combination of components rather than from a single design choice, this study conducts an ablation analysis on the main rebalancing mechanism. The analysis considers five settings for each forecasting architecture, namely the Full Model, No Carbon, No Threshold, α = 0, and δ = 0. The Full Model uses the selected hyperparameter setting for each forecasting model, whereas the remaining variants remove or deactivate one component at a time while keeping the other elements unchanged. This design makes it possible to evaluate the separate roles of carbon-related inputs, threshold filtering, score concentration, and smoothing-based portfolio updating.
As shown in
Table 3, the three model families respond differently to the removal of individual components. For Transformer, the Full Model records a Sharpe ratio of about 0.44, while the No Carbon and No Threshold settings remain close to this level. When
α = 0, the Sharpe ratio declines to about 0.41, whereas setting
δ = 0 increases it to approximately 0.49. Informer exhibits the strongest sensitivity to the ablation design. Its Full Model produces a Sharpe ratio near 0.50, the No Carbon setting declines moderately to around 0.47, and
δ = 0 leads to the largest increase, reaching roughly 0.75. By contrast, TFT remains relatively stable across all settings, with Sharpe ratios clustered around 0.41. TFT exhibits minimal sensitivity across the tested ablation settings, indicating that its allocation output remains relatively invariant under the current parameterization. These results suggest that the contribution of each module is model-dependent rather than uniform across architectures.
From the risk perspective, the maximum drawdown values remain relatively close across most ablation settings, indicating that the removal of individual components does not radically alter downside behavior over the test window. This pattern is important because it implies that the observed performance differences are driven more by return efficiency and trading dynamics than by extreme changes in drawdown alone. In practical portfolio terms, the framework appears to modify the quality of allocation decisions and rebalancing behavior more strongly than it changes the broad scale of downside risk.
Figure 13a provides a visual summary of the Sharpe-ratio differences reported in
Table 3. The figure shows that the Full Model, No Carbon, and No Threshold settings remain relatively close for Transformer and Informer, whereas the
α = 0 setting lowers performance and the
δ = 0 setting increases performance most strongly, especially for Informer. For TFT, the variation is much smaller, which suggests that its portfolio behavior is less sensitive to the removal of any single component. This also implies that the performance of the proposed framework is not driven by carbon features alone, because removing carbon inputs does not fully collapse the strategy performance. Instead, the model output is shaped by the interaction between predictive structure and allocation mapping.
Figure 13b offers a clearer interpretation of the smoothing mechanism. When α = 0, average turnover is reduced to nearly zero across the models, which is consistent with the loss of differentiated score-to-weight mapping. In contrast, setting
δ = 0 increases turnover sharply, most visibly for Informer, where the value rises to about 0.022, compared with approximately 0.0049 under the Full Model. Transformer also shows a turnover increase from around 0.0015 to about 0.0047 when smoothing is removed. These changes indicate that the smoothing component plays a direct role in controlling trading intensity and portfolio stability. Even when higher Sharpe ratios are observed under
δ = 0, the associated turnover expansion suggests a less conservative and potentially less implementable allocation process from a practical portfolio management perspective.
The ablation results support two conclusions. First, the proposed framework does not depend on a single isolated component, since different ablation settings alter performance in different ways across models. Second, the smoothing mechanism has the clearest financial interpretation, because it directly governs turnover and thereby influences the trade-off between responsiveness and implementation stability. Carbon inputs and threshold filtering still provide useful refinements, but their effects appear more moderate and architecture-dependent. This evidence strengthens the argument that the framework operates as a coordinated decision system rather than as a simple stacking of unrelated modules.
4.2.5. Statistical Confidence and Uncertainty Assessment
To complement the preceding performance comparisons, this study further evaluates the uncertainty associated with selected benchmark and ablation comparisons by constructing bootstrap-based confidence intervals. The purpose of this analysis is to determine whether the observed differences in Sharpe ratio and maximum drawdown remain stable after accounting for sampling variability. Because portfolio return paths exhibit temporal dependence, moving-block bootstrap resampling is adopted so that local time-series structure can be preserved when estimating confidence intervals.
As shown in
Table 4, most benchmark-based comparisons do not produce statistically decisive differences at the 95% level. For example, the Sharpe-ratio differences between Informer and Equal Weight, between Informer and Risk Parity, and between Transformer and Equal Weight are all associated with confidence intervals that cross zero. A similar pattern is observed for the corresponding maximum drawdown differences. These results indicate that, although the model-based strategies remain competitive relative to standard allocation rules, the magnitude and direction of their apparent advantage are not uniformly stable across repeated resampling.
At the same time, the uncertainty assessment does not suggest that all effects are negligible. In the comparison between the Informer Full Model and the No Carbon setting, both performance indicators show statistically significant differences. The estimated change in maximum drawdown is approximately , with a positive 95% confidence interval ranging from about to . The corresponding change in Sharpe ratio is about , with a 95% confidence interval from roughly to . This suggests that, at least within the Informer framework, the removal of carbon-related inputs leads to a measurable weakening of portfolio performance, even though the absolute size of the effect remains moderate.
By contrast, TFT shows virtually no difference between the Full Model and the No Carbon setting, with point estimates equal to zero for both Sharpe ratio and maximum drawdown. Transformer exhibits only small positive point estimates in the same comparison, but the corresponding confidence intervals still overlap zero. This pattern indicates that the usefulness of carbon-related inputs is not identical across architectures. Instead, their marginal contribution appears to be more pronounced in Informer, while the same information provides weaker incremental benefit in Transformer and almost no measurable effect in TFT under the present evaluation setting.
From an empirical perspective,
Table 4 supports a more nuanced interpretation of the portfolio results. Several benchmark differences are visible at the level of point estimates, yet many of these differences are not sufficiently stable to warrant strong claims of general superiority. In contrast, the carbon-input ablation within Informer remains statistically identifiable. Taken together, the confidence-interval evidence suggests that the proposed framework should be interpreted in terms of competitive performance, architecture-dependent behavior, and mechanism-level variation rather than as a universally dominant allocation rule across all metrics.
4.2.6. Subperiod Robustness Analysis
To further examine whether the portfolio results remain stable across different market phases, this study divides the 2024 test period into two subperiods, namely 2024H1 and 2024H2, and compares benchmark and model-based strategies within each segment. This design makes it possible to distinguish whether the observed portfolio behavior is persistent across time or driven mainly by one particular market regime. Because the allocation rules and model outputs may react differently under changing return dispersion and sector rotation, subperiod analysis provides an additional robustness check beyond full-period averages.
As shown in
Table 5, the benchmark and model-based strategies display clear subperiod heterogeneity. In 2024H1, Equal Weight records the strongest Sharpe ratio at approximately 1.03, followed by Risk Parity at about 0.68, while Momentum remains positive at roughly 0.45. By contrast, the three model-based strategies produce lower Sharpe ratios in the first half of the year, with Informer around 0.32, Transformer around 0.27, and TFT around 0.24. These results suggest that during the earlier subperiod, simpler benchmark rules remain highly competitive, especially under conditions in which broad market exposure appears to be rewarded more consistently than model-driven reallocations. The ranking changes noticeably in 2024H2. Equal Weight remains positive, with a Sharpe ratio near 0.52, but Informer rises to about 0.62 and becomes the strongest performer in this subperiod. Transformer also improves materially to around 0.55, while TFT increases to approximately 0.52. In contrast, Momentum deteriorates sharply and turns negative, with a Sharpe ratio near −0.41. Risk Parity remains positive but moderate, at about 0.32. This shift indicates that the relative advantage of the model-based strategies becomes more visible in the later subperiod, particularly when the benchmark based on recent price continuation becomes less reliable.
From the downside-risk perspective, maximum drawdown differences are smaller than Sharpe-ratio differences, but the relative pattern is still informative. As shown in
Table 5 and
Figure 14b, Momentum exhibits the deepest drawdowns in both subperiods, approximately −0.155 in 2024H1 and −0.159 in 2024H2, which is clearly worse than the remaining strategies. Equal Weight, Transformer, Informer, and TFT remain clustered near the −0.10 range across both subperiods, while Risk Parity produces the shallowest drawdown in 2024H2 at about −0.077. These results suggest that the main cross-period distinction is driven less by radical changes in downside exposure and more by changes in return efficiency and allocation effectiveness.
Figure 14a visualizes the shift in risk-adjusted performance across the two subperiods. The figure shows that benchmark rules dominate more clearly in 2024H1, especially Equal Weight and Risk Parity, whereas the model-based strategies gain relative strength in 2024H2. Informer presents the clearest improvement, but Transformer and TFT also move upward relative to the benchmark set.
Figure 14b shows that drawdown profiles remain comparatively stable for most strategies except Momentum, whose downside deterioration is consistently more severe than that of the other approaches. Taken together, these two panels indicate that the proposed framework does not deliver a uniform advantage in every subperiod, but its relative competitiveness becomes stronger in the latter half of the year.
The turnover statistics in
Table 5 also help explain part of this behavior. Momentum maintains by far the highest turnover in both subperiods, exceeding 0.32, whereas the model-based strategies remain much lower, with Informer around 0.004 to 0.005, Transformer near 0.0015, and TFT effectively close to zero. This implies that the model-based strategies achieve their improved second-half competitiveness without requiring turnover levels comparable to the most active benchmark rule. From a portfolio management perspective, this pattern is meaningful because it suggests that later-period performance improvement is not simply purchased through excessive trading intensity.
The subperiod analysis leads to two main conclusions. First, the relative ordering of strategies is period-dependent rather than fixed, which means that full-sample averages should not be interpreted as universally representative of all market conditions. Second, the model-based strategies appear more resilient in 2024H2, while benchmark rules, especially Equal Weight and Risk Parity, remain more competitive in 2024H1. Therefore, the robustness evidence supports a balanced interpretation in which the proposed framework functions as a competitive and adaptive allocation mechanism, with strengths that become more visible under selected subperiod conditions rather than under every regime uniformly.
4.2.7. Explainability Analysis
To further clarify how carbon-related information influences portfolio construction, this study conducts a multi-level explainability analysis based on grouped contribution summaries, feature-level decomposition, and detailed SHAP beeswarm inspection. Rather than relying on a single interpretability plot, the analysis is organized from aggregated patterns to local attribution behavior. This design makes it possible to explain not only whether carbon-related inputs matter, but also how their contribution varies across asset groups, individual carbon indicators, and model architectures.
As shown in
Table 6, the contribution of carbon-related features differs systematically across both models and asset groups. For Informer, the Carbon-Sensitive group records the highest mean absolute contribution at approximately
, followed by the Intermediate group at about
, while Broad ESG remains lower at roughly
. A similar pattern appears in TFT, where Carbon-Sensitive reaches about
, Intermediate about
, and Broad ESG only around
. Transformer differs slightly in structure: its Intermediate group exhibits the largest mean absolute contribution, approximately
, while Carbon-Sensitive is lower at about
, and Broad ESG remains the smallest at roughly
. The within-model contribution shares reinforce the same conclusion. Informer assigns about 40.3% of the grouped carbon-feature contribution to Carbon-Sensitive assets, TFT assigns about 50.3%, and Transformer allocates its largest share, around 55.4%, to the Intermediate group. These results indicate that carbon information is not uniformly distributed across the investment universe, but becomes more influential in asset groups with stronger thematic or market sensitivity.
Figure 15 provides a visual summary of the grouped contribution structure reported in
Table 6.
Figure 15a shows that Broad ESG consistently receives the weakest carbon-feature contribution, whereas Intermediate and Carbon-Sensitive groups account for most of the explainable variation.
Figure 15b makes this contrast more visible by showing the concentration of stronger values in the Intermediate and Carbon-Sensitive regions, while Broad ESG remains relatively subdued across the three architectures.
Figure 15c confirms the same ranking pattern from an alternative grouped comparison view. From a financial perspective, this result is plausible because carbon-related information should be more relevant when the target assets are more directly connected to environmental themes, energy transition exposure, or carbon-sensitive market fluctuations. Broad ESG funds, by construction, are usually more diversified and therefore less likely to translate carbon-related signals into large short-horizon forecasting effects.
Figure 16 extends the group-level evidence by decomposing the contribution into four specific carbon indicators, namely GCC, CCA, EUA, and UCITS. The figure shows that the contribution pattern is not driven by a single universal proxy. Instead, the relative importance of carbon indicators changes across models and asset groups. In the Transformer panel, GCC and UCITS appear especially strong for the Intermediate group, while Broad ESG remains comparatively weak across most features. In Informer, the contribution pattern is more distributed: GCC and CCA show strong values in Carbon-Sensitive and Intermediate assets, EUA remains substantial in the same two groups, and UCITS becomes particularly strong for Broad ESG. In TFT, the strongest feature-level responses are concentrated in the Carbon-Sensitive group, especially for GCC, CCA, and UCITS, while EUA stands out most strongly in the Intermediate group. These differences indicate that the models do not exploit carbon-related information in the same way. Instead, each architecture emphasizes a different subset of carbon indicators when translating forecasts into portfolio-level behavior.
The feature-level evidence also helps interpret why portfolio performance can differ even when aggregate forecasting metrics are relatively close. A model may not dominate in raw prediction error, yet still produce a different allocation outcome if it reacts more strongly to selected carbon indicators in specific asset groups. In this sense, the explainability results complement the performance analysis by showing that cross-model differences are linked not only to forecast quality but also to the structure through which carbon information is encoded and weighted.
To preserve local attribution detail,
Figure 17 reports the original carbon-only SHAP beeswarm plots across the three forecasting models and six ETFs. Each panel presents the SHAP value distribution of EUA, GCC, CCA, and UCITS for one model–ticker pair. The horizontal axis denotes the sign and magnitude of local contribution, while the color encodes the underlying feature level. In general, Transformer exhibits the most concentrated and directionally coherent clouds, especially for major carbon features in carbon-linked or more volatile assets. Informer retains a similar directional structure but often shows wider dispersion and longer tails, indicating stronger amplification under variable market conditions. TFT, in contrast, presents flatter and more interleaved distributions in several cases, implying a more selective and less uniformly monotonic response pattern.
Cross-ticker contrasts are also clear in
Figure 17. KRBN and TAN display stronger positive shifts under Transformer and Informer, especially for key carbon features, which is consistent with the larger grouped contribution observed earlier for Carbon-Sensitive assets. ESGU and SUSA remain much more tightly centered around zero, suggesting weaker short-horizon explanatory power of carbon information for broader and more defensive ESG allocations. ICLN and KGRN lie between these two extremes, with visible but less uniform carbon-feature effects. This local evidence aligns closely with the grouped summaries in
Table 6 and
Figure 15, and therefore provides a consistent interpretability narrative from aggregate structure to daily feature attribution. This pattern is also economically plausible. KRBN is directly linked to global carbon-credit markets, so movements in carbon-related indices are more likely to contain immediate information about its valuation and expected return dynamics. TAN, while not a carbon-credit fund, is concentrated in the solar and energy-transition segment, whose pricing can be influenced by climate policy expectations, decarbonization incentives, and the relative attractiveness of clean-energy investment under changing carbon-market conditions. By contrast, broader ESG funds such as ESGU and SUSA are more diversified and therefore less likely to translate short-horizon carbon-market variation into large cross-asset return differentials.
The explainability analysis reveals a clear hierarchical pattern.
Table 6 and
Figure 15 establish that grouped carbon-feature importance is concentrated more heavily in Intermediate and Carbon-Sensitive assets than in Broad ESG assets.
Figure 16 then shows that this structure is carried by different combinations of GCC, CCA, EUA, and UCITS across models.
Figure 17 finally confirms that these grouped patterns are supported by local SHAP distributions at the ticker level. Therefore, the proposed framework can be interpreted as explainable in a substantive sense: carbon-related information is not merely present in the input space, but contributes in structured, model-dependent, and asset-sensitive ways to portfolio formation.
4.2.8. Deep Models for Carbon-Credit-Aware Rebalancing: A Comprehensive Empirical Evaluation
The empirical evidence indicates that the portfolio outcomes of this study are shaped by the joint interaction of forecasting architecture, allocation mapping, smoothing intensity, and the economic relevance of carbon-related inputs. The three Transformer-inspired models do not generate identical portfolio behavior, even when they are trained on the same ESG-themed ETF universe and processed under the same rebalancing pipeline. This difference is not explained by forecasting error alone. Instead, it reflects how each architecture converts cross-asset forecast dispersion into allocation decisions and how effectively carbon-related signals are translated into investable portfolio adjustments. In this sense, the contribution of the framework lies in transparent integration and empirical validation of the full rebalancing pipeline.
From the forecasting perspective, Informer provides the strongest aggregate prediction quality, while Transformer remains competitive on selected assets and market phases. TFT is more stable than aggressive, and its predictive structure tends to produce allocation outcomes that remain closer to passive or weakly differentiated benchmark behavior when the rebalancing rule is not sufficiently responsive. This distinction becomes important at the portfolio level, where small differences in forecast dispersion can produce noticeably different allocation paths after threshold filtering, Softmax transformation, and inertia smoothing are applied. The results therefore suggest that portfolio performance depends less on a single pointwise prediction metric and more on whether the model generates sufficiently meaningful relative signals across assets.
The benchmark comparison further clarifies the practical role of the proposed framework. Equal Weight remains a strong benchmark throughout the full evaluation period, and Risk Parity also preserves reasonable downside control. This indicates that the ESG ETF universe itself contains substantial passive structure, and any model-based strategy must compete against already viable allocation rules. Under this setting, the deep learning-based approaches do not exhibit universal dominance, yet they remain competitive and avoid the severe deterioration observed under the momentum benchmark. Informer delivers the strongest Sharpe ratio among the model-based strategies, while Transformer and TFT remain close in drawdown behavior with substantially lower turnover than the most active benchmark rule. This pattern suggests that the framework is not artificially advantaged by weak baselines, but operates as a viable alternative allocation mechanism under realistic comparison settings.
The ablation evidence offers a more direct view of how the framework functions internally. Carbon-related inputs, threshold filtering, score concentration, and smoothing do not contribute equally across architectures. In Informer, removing carbon features leads to a visible decline in Sharpe ratio, while suppressing smoothing raises return efficiency but also produces a strong increase in turnover. The Transformer shows a similar but milder pattern. TFT, by contrast, remains much less sensitive to most ablation changes, implying that its portfolio behavior is less dependent on any single component under the present specification. These findings show that the rebalancing framework cannot be reduced to one isolated design choice. The mechanism operates through the interaction between model structure and allocation control, with smoothing playing the clearest operational role in governing trading intensity and implementation stability.
The uncertainty analysis refines this interpretation. Several benchmark differences are visible at the level of point estimates, but many of them are not stable enough to support strong claims of general superiority once sampling variation is taken into account. At the same time, the carbon-input ablation within Informer remains statistically identifiable, indicating that at least part of the framework’s advantage is tied to the informative content of carbon-related signals rather than to noise in the allocation process. This result is important because it supports a measured interpretation of the evidence. The proposed method should be understood as competitive and conditionally effective, rather than uniformly superior in every comparison and under every metric.
The subperiod analysis reinforces the same conclusion from a time-varying perspective. Strategy ranking changes between 2024H1 and 2024H2, indicating that performance is regime-dependent rather than fixed. Benchmark rules, especially Equal Weight and Risk Parity, remain highly competitive in the first half of the year. In the second half, model-based strategies gain relative strength, with Informer showing the clearest improvement and Transformer and TFT also moving upward. Meanwhile, drawdown profiles remain broadly comparable across most strategies except for Momentum, whose downside deterioration is consistently more severe. This suggests that the relative advantage of the proposed framework becomes more visible when market conditions place greater value on adaptive cross-asset differentiation, whereas simpler allocation rules remain effective when broad exposure is already well rewarded.
The explainability analysis provides the economic interpretation that links these portfolio outcomes back to the input space. Carbon-related contributions are not uniformly distributed across assets. Their influence is weakest in Broad ESG funds and becomes stronger in Intermediate and Carbon-Sensitive groups. Informer and TFT place a larger share of grouped contribution on Carbon-Sensitive assets, while Transformer assigns its largest share to the Intermediate group. At the feature level, the four carbon indicators do not contribute in the same way across architectures, indicating that each model extracts different forms of carbon-related information. The local SHAP beeswarm patterns further confirm that carbon-linked and more volatile assets, especially KRBN and TAN, exhibit clearer and more directional carbon-feature effects, whereas broader and more defensive ESG funds such as ESGU and SUSA remain closer to zero. This evidence explains why portfolio-level differences widen when carbon sensitivity and market volatility become more pronounced. This interpretation is economically consistent with the fact that KRBN has direct exposure to carbon-credit pricing, while TAN is more tightly connected to renewable-energy valuation and transition-sensitive capital flows than broad ESG funds.
The empirical results show that the framework is most effective when carbon-related information is preserved, forecast dispersion is translated into sufficiently differentiated portfolio weights, and the rebalancing rule balances responsiveness against turnover through moderate smoothing. Informer appears to make the most effective use of this interaction under the current setting, while Transformer provides a comparatively stable profile with moderate implementation intensity. TFT remains informative from an interpretability perspective, but its portfolio contribution is more selective and less forceful unless allocation differentiation becomes sufficiently strong. These findings support the view that carbon-credit-aware rebalancing should be interpreted as a competitive and explainable framework whose usefulness depends on model architecture, market conditions, and the way sustainability signals are translated into allocation behavior.