Core Concepts
A novel attention-based model called ACEFormer that combines an improved Empirical Mode Decomposition (EMD) algorithm, a time-aware mechanism, and an attention mechanism to accurately forecast stock market trends.
Abstract
The paper proposes a stock trend prediction solution called ACEFormer, which consists of four main components:
Pretreatment module: This module preprocesses the input data, including applying a novel noise reduction algorithm called ACEEMD (Alias Complete Ensemble Empirical Mode Decomposition with Adaptive Noise) to remove short-term high-frequency trading noise from the stock data.
Distillation module: This module extracts the main features from the preprocessed data using a probability self-attention mechanism, convolution, and max pooling. It also includes a time-aware mechanism to capture temporal features and enhance the temporal information of the input data.
Attention module: This module further extracts critical features from the output of the distillation module using the attention mechanism.
Fully connected module: This module is a linear regression that produces the final predicted stock values.
The authors demonstrate that ACEFormer significantly outperforms several state-of-the-art baselines, such as Informer, TimesNet, DLinear, and Non-stationary Transformer, on two public stock market datasets (NASDAQ100 and SPY500) in terms of trend prediction accuracy, Matthews Correlation Coefficient, investment return ratio, and Sharpe ratio.
Stats
Stock prices and trading volumes are highly volatile, nonlinear, and noisy.
Short-term high-frequency trading can conceal the actual long-term trend of stocks.
Existing denoising methods like moving averages are lagging indicators and cannot timely reflect the actual fluctuations of long-term trends.
Quotes
"Highly volatile stock data greatly affects the effectiveness of deep learning models."
"To solve this problem, we introduced a denoising algorithm called Alias Complete Ensemble Empirical Mode Decomposition with Adaptive Noise (ACEEMD)."
"The time-aware mechanism can overcome the weak ability of the attention mechanism to extract positional information and the irregularity of stock data intervals."