Pith. sign in

REVIEW 4 major objections 5 minor 1 cited by

A Novel Hybrid Approach Using an Attention-Based Transformer + GRU Model for Predicting Cryptocurrency Prices

T0 review · 4 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read A hybrid Transformer + GRU model predicts Bitcoin and Ethereum daily closing prices with lower error than four neural baselines.

desk verdict The hybrid's claimed consistent superiority is contradicted by the paper's own significance test, and the Ethereum comparison looks too good to be true without any training details or code. read the letter →

arxiv 2504.17079 v2 pith:T4VLUSTV submitted 2025-04-23 cs.LG stat.AP

classification cs.LGstat.AP
keywords BitcoinEthereumcryptocurrencypricepredictionTransformerGRUhybriddeeplearningFearandGreedIndextimeseriesforecasting
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that a hybrid network, a Transformer encoder followed by a GRU decoder, predicts the next-day closing price of Bitcoin and Ethereum more accurately than four established baselines: RBFN, GRNN, BiLSTM, and BiGRU. The inputs are the previous day's price, trading volume, and the Fear and Greed Index, with an 80/20 train/test split and one-step-ahead forecasts. On the test windows the hybrid reports the lowest MSE, RMSE, MAE, and MAPE for both assets, and Friedman plus Wilcoxon tests are used to argue the differences are statistically significant. Because daily price direction is what traders act on, a reliable one-day-ahead forecast from public features would be practically useful; the paper also positions the architecture as a template for hybrid long-range plus short-term time series modelling.

What carries the argument

The load-bearing object is the hybrid architecture itself: a Transformer encoder (embedding, sine/cosine positional encoding, L multi-head self-attention layers with residual connections and layer norm, feed-forward networks) whose output sequence is passed to a GRU decoder; the final GRU hidden state is linearly projected to the predicted price. The Transformer's self-attention is what the paper credits with capturing long-range dependencies across the sliding window, while the GRU's update and reset gates model short-term sequential dynamics; the min-max normalization and one-step lag framing set up the forecasting task. The claim's empirical weight rests on this specific encoder-decoder combination rather than on either component alone.

What would settle it

Run the exact same 80/20 split and one-step-ahead task with the four baselines given a standard hyperparameter search, with hidden sizes comparable to the GRU decoder, early stopping, and several seeds, and check whether the hybrid's test MSE and MAPE remain lowest; in particular, if a tuned BiLSTM or BiGRU on Ethereum drops from the reported MSEs of roughly 908,000 and 688,000 to the hybrid's ballpark of about 11,000, the central claim would be falsified.

Watch

Extended reading notes

Core claim

On the paper's own terms, the discovery is that combining a Transformer encoder, which uses multi-head self-attention to weigh all past observations simultaneously, with a GRU decoder, which compresses the encoded sequence into a gated hidden state, yields consistently lower one-day-ahead prediction error for Bitcoin and Ethereum than either feedforward baselines (RBFN, GRNN) or bidirectional recurrent baselines (BiLSTM, BiGRU). For Ethereum the reported margin is large: the hybrid's test MSE of about 11,345 is roughly 18 times smaller than RBFN's and 80 times smaller than BiLSTM's. For Bitcoin the hybrid's MSE of about 3.82 million is the smallest in the table, though the Wilcoxon post-hoc test finds its advantage over BiGRU is not significant at the Bonferroni-corrected level. The paper treats this as evidence that long-range pattern capture plus short-term sequential gating is a productive combination for volatile financial series.

Load-bearing premise

The load-bearing premise is that the four baseline models were implemented with reasonably competitive hyperparameters and training, because the paper reports no architecture details, hidden sizes, optimizers, learning rates, epochs, or random seeds for any model; if the baselines are handicapped by poor settings, the reported superiority is an artifact of the comparison.

Editorial extensions

If this is right

  • If the hybrid's test-window errors hold up, one-day-ahead forecasts for Bitcoin and Ethereum can be produced from just price, volume, and the Fear and Greed Index with MAPE under 3 percent on these test periods.
  • The architecture gives a concrete template for combining Transformer long-range attention with GRU short-term gating that can be carried to other financial time series.
  • The statistical tests imply the hybrid's advantage over RBFN, GRNN, and BiLSTM is not a chance fluctuation on Bitcoin, and its advantage over all four baselines is significant for Ethereum.
  • For Bitcoin, the honest reading of the post-hoc test is that the hybrid and BiGRU are statistically indistinguishable, so any claim of universal superiority must be qualified.
  • The success of the hybrid suggests that bidirectional memory models are not always the best choice for one-day-ahead crypto closes; an encoder that sees the whole window at once can do at least as well.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural extension the paper does not run is to match hidden sizes and training budgets across models; if the hybrid's edge persists under equalized capacity, the architectural argument is much stronger.
  • The strong Ethereum result suggests testing the same encoder-decoder on other volatile, shorter-history assets, such as smaller-cap coins or commodity ETFs, to see whether the margin scales with volatility or with dataset length.
  • Because the model uses only three features, the same architecture could be probed with added on-chain or macro indicators to test whether the Transformer+GRU combination extracts more benefit from richer inputs than the baselines do.
  • If the authors' FGI proxy, an equally weighted blend of VADER social-media sentiment and Google Trends for dates before February 2018, is replaced with the official index throughout, the comparison could be re-run to check how sensitive the ranking is to the sentiment construction.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes a hybrid deep learning architecture that stacks an attention-based Transformer encoder with a GRU decoder for one-day-ahead prediction of Bitcoin and Ethereum daily closing prices. Inputs are lagged price, trading volume, and a Fear and Greed Index (FGI), with a hand-built pre-2018 FGI proxy. The model is compared against RBFN, GRNN, BiLSTM, and BiGRU using MSE, RMSE, MAE, MAPE, and a Friedman test with Wilcoxon signed-rank post-hoc tests. The authors claim the hybrid consistently achieves superior accuracy, with especially large error reductions on Ethereum. The paper includes step-by-step descriptions of the proposed architecture and the statistical methodology.

Significance. If the empirical claims were reproducible, the paper would offer a modest architectural contribution: a Transformer encoder followed by a GRU decoder for cryptocurrency price prediction, with evidence of improved accuracy over four standard baselines on two major assets. The clear presentation of the model equations (Section 3.1) and the inclusion of statistical significance testing are strengths. However, the significance is heavily circumscribed by three factors: the absence of any training or architecture details for all models, the absence of a naive persistence baseline, and the contradiction between the abstract's 'consistently superior' claim and the paper's own Wilcoxon results for Bitcoin, where the hybrid is not significantly better than BiGRU. The Ethereum results are so extreme (Table 3) that they raise serious concerns about baseline configuration, making the central superiority claim unverifiable in the current form. The paper also introduces an unvalidated FGI proxy with equal weights, further limiting the reliability of the feature set.

major comments (4)
  1. [Section 5, Table 4, Abstract] The abstract and Section 5 state that the hybrid model 'consistently achieves superior accuracy,' but Table 4 shows that the hybrid is not statistically significantly better than BiGRU for Bitcoin (Bonferroni-corrected p = 0.0421 > alpha* = 0.005). The authors acknowledge this result in Section 5, yet the abstract and conclusion retain the unqualified 'consistently superior' wording. This is an internal inconsistency in the paper's central claim and must be corrected.
  2. [Section 4, Tables 2-3; Section 3] No architecture or training hyperparameters are reported for any of the five models. The hybrid's key dimensions (d, d_ffn, d_gru, L, h, and window length T) are unspecified, and the baselines' hidden sizes, number of layers, optimizers, learning rates, batch sizes, epochs, and random seeds are absent. Without these details, the Ethereum results in Table 3 are not credible: a BiLSTM with an MSE of 907,844 versus the hybrid's 11,344 (an 80-fold gap) strongly suggests a misconfigured or undertrained baseline. The claimed 8-9x RMSE/MAE/MAPE reductions in Section 5 cannot be verified or reproduced from the manuscript.
  3. [Section 4, Section 5] No persistence (naive random-walk) baseline is included, despite the fact that daily closing prices are highly autocorrelated and the task is one-step-ahead prediction. A simple lag-1 forecast is the standard lower bound for such a problem and is necessary to interpret the absolute error levels. For example, the Bitcoin RMSE of 1,954 USD in Table 2 corresponds to roughly 2-3% of the price level in the test period; reporting the persistence error would clarify whether the proposed model offers any real predictive gain or merely performs well because prices are smooth.
  4. [Section 4, Eq. (4.17)] The construction of the pre-2018 FGI proxy is not adequately validated. The equal weights w1=w2=0.5 are stated as a 'simplifying assumption,' and Eq. (4.17) is ambiguous: as typeset, 'FGI = 1/2 (Score from VADER+1)/2 x 100 + Score Google Trends' does not obviously map to the stated [0,100] range. No attempt is made to compare the proxy against the official FGI on the overlap period after February 2018. Since this proxy is used as a feature for all Bitcoin data before 2018, this is a load-bearing data-construction choice that needs clarification and a sensitivity check.
minor comments (5)
  1. [Section 2.1 (text before Eq. (2.2))] The sentence beginning 'Here, we consider x_{t-1} is a three dimensional vector' contains a typo: 'Her' should be 'Here.' Also, the phrasing would benefit from a comma or a 'where' clause.
  2. [Section 4, Table 3 surrounding text] In the paragraph preceding Table 3, 'RBNF' should be 'RBFN.'
  3. [Section 4, Eq. (4.22)] The Friedman test description states that n is the number of datasets (blocks), but the reported chi-square values (1419.34 and 747.76) are too large for n=2 datasets. Clarify whether the blocks are individual test observations or some other unit; otherwise the test statistics are not interpretable.
  4. [Section 1, 'To the best of our knowledge'] The claim of being 'the first study to introduce a deep learning model that combines a parallel self-attention-based Transformer architecture with a sequential memory-based GRU model' is overbroad. There are numerous existing Transformer-RNN hybrid time-series models in the literature (some cited by the authors themselves); suggest softening the novelty claim.
  5. [Section 4, Figures 8 and 9] The prediction curves for the hybrid and BiGRU appear nearly indistinguishable in Figure 8, making visual comparison difficult. A zoomed panel over a shorter test sub-period would help the reader see the differences claimed in the metrics.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the paper's claims are empirical comparisons, not derivations that assume their own conclusions.

full rationale

The paper makes no derivation from first principles that could reduce to its inputs. Its central claim is that the proposed Transformer+GRU hybrid achieves lower test-set errors than RBFN, GRNN, BiLSTM, and BiGRU on Bitcoin and Ethereum daily close prediction. This is supported by reported MSE/RMSE/MAE/MAPE values (Tables 2–3) and by Friedman/Wilcoxon tests (Tables 4–5). The model architecture is described as a standard composition of a Transformer encoder and GRU decoder; there is no fitted parameter, calibrated constant, or learned quantity that is later renamed as a prediction. The hand-built pre-2018 Fear and Greed Index proxy uses an equal-weight combination of VADER social-media sentiment and Google Trends, but that proxy is an input feature, not the target, and the target price is not used to define the proxy. The self-citations (Mahdi et al. 2021; Mahdi and Al-Abdulla 2022) appear only in a general literature review and are not load-bearing for the hybrid model's claimed performance. The main substantive weakness, noted in the skeptical commentary, is that baseline training details are absent, making the comparison hard to audit; however, missing hyperparameter reporting is a reproducibility or fairness concern, not a circularity concern, because nothing in the paper equates the outcome with the input by construction. Therefore no circular step can be exhibited, and the appropriate finding is no significant circularity.

Assumptions & free parameters 5 free parameters · 4 assumptions · 1 invented entities

The central comparison rests on features (lagged price, volume, FGI proxy), a one-day-lag structure, and unspecified model and training hyperparameters. The only explicitly chosen constants are the FGI equal weights; the rest of the configuration is unstated.

free parameters (5)
  • FGI proxy weights = w1=w2=0.5
    Section 4: the pre-2018 Fear and Greed index is constructed as FGI = 0.5 * (VADER sentiment) + 0.5 * (Google Trends score). The equal weights are chosen by a 'simplifying assumption', not fit or validated against the official index.
  • Transformer encoder hyperparameters (L, h, d, d_ffn) = not reported
    Section 3.3: number of layers, heads, embedding dim, and FFN dim are named but never specified; these control model capacity and the comparison depends on them.
  • GRU decoder hidden dimension (d_gru) = not reported
    Section 3.1 step 4.2 defines Wp in R^{1 x d_gru} but never states d_gru.
  • Sliding window size (T) = not reported
    Section 3.1 step 2.2 uses a fixed-length window T x 3 but T is never given.
  • Training hyperparameters (optimizer, learning rate, epochs, batch size, dropout) = not reported
    Section 4 describes fitting without any training details; these affect all five models and the outcome.
assumptions (4)
  • domain assumption Daily crypto prices follow y_t = f(x_{t-1}) + eps_t with x = [price, volume, FGI] and one-day lag.
    Equation (2.1) and Section 4: the entire modelling framework assumes one-step-ahead predictability from these three lagged features.
  • ad hoc to paper The hand-built pre-2018 FGI proxy equals the official FGI in information content.
    Section 4: uses equal weights of VADER sentiment and Google Trends to extend FGI back before Feb 2018, with no validation against the official index on the overlapping period.
  • domain assumption The four baseline models were implemented and tuned fairly.
    Section 4: reports no hyperparameters or seeds for RBFN, GRNN, BiLSTM, BiGRU; the claimed margins assume the baselines are not artificially handicapped.
  • standard math Standard backpropagation and attention math are valid.
    The GRU and Transformer equations rely on standard neural network definitions; no proof is needed for the review.
invented entities (1)
  • Pre-2018 Fear and Greed Index proxy
    purpose: Extends the official FGI dataset backward in time so the full training period has a sentiment feature.
    The proxy is computed with arbitrarily equal weights from Twitter/VADER and Google Trends (Section 4, Eq. 4.17) and is never validated against the official FGI on the overlapping post-Feb-2018 period.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Novel Hybrid Approach Using an Attention-Based Transformer + GRU Model for Predicting Cryptocurrency Prices." pith.science (2026). https://pith.science/paper/T4VLUSTV

@misc{pith2026250417079,
  author       = {Pith},
  title        = {Pith review of: A Novel Hybrid Approach Using an Attention-Based Transformer + GRU Model for Predicting Cryptocurrency Prices},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/T4VLUSTV}},
  note         = {Machine review of arXiv:2504.17079}
}
read the original abstract

In this article, we introduce a novel deep learning hybrid model that integrates attention Transformer and Gated Recurrent Unit (GRU) architectures to improve the accuracy of cryptocurrency price predictions. By combining the Transformer's strength in capturing long-range patterns with the GRU's ability to model short-term and sequential trends, the hybrid model provides a well-rounded approach to time series forecasting. We apply the model to predict the daily closing prices of Bitcoin and Ethereum based on historical data that include past prices, trading volumes, and the Fear and Greed index. We evaluate the performance of our proposed model by comparing it with four other machine learning models: two are non-sequential feedforward models: Radial Basis Function Network (RBFN) and General Regression Neural Network (GRNN), and two are bidirectional sequential memory-based models: Bidirectional Long-Short-Term Memory (BiLSTM) and Bidirectional Gated Recurrent Unit (BiGRU). The performance of the model is assessed using several metrics, including Mean Squared Error (MSE), Root Mean Squared Error (RMSE), Mean Absolute Error (MAE), and Mean Absolute Percentage Error (MAPE), along with statistical validation through the nonparametric Friedman test followed by a post hoc Wilcoxon signed rank test. The results demonstrate that our hybrid model consistently achieves superior accuracy, highlighting its effectiveness for financial prediction tasks. These findings provide valuable insights for improving real-time decision making in cryptocurrency markets and support the growing use of hybrid deep learning models in financial analytics.

Figures

Figures reproduced from arXiv: 2504.17079 by the authors.

Figure 1
Figure 1. Architecture of a radial basis function network (RBFN). [PITH_FULL_IMAGE:figures/full_fig_p005_1.png] view at source ↗
Figure 2
Figure 2. Architecture of long-short-term memory (LSTM) network contains four interacting lay [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. Architecture of gated recurrent unit (GRU) network. [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Architecture of bidirectional gated recurrent unit (BiGRU). [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 5
Figure 5. Figure 5: Architecture of hybrid Transformer + GRU model. 4 Exploratory Data Analysis In our analysis, we consider the top two prominent cryptocurrencies with the highest cryptocur￾rency market capitalization: Bitcoin and Ethereum. The daily data was downloaded from the website …
Figure 6
Figure 6. Figure 6: Bitcoin daily prices (left) and Ethereum prices (right), with trends color-coded according [PITH_FULL_IMAGE:figures/full_fig_p014_6.png]
Figure 7
Figure 7. Figure 7: Box-plots of Bitcoin daily prices (left) and Ethereum prices (right) categorized by the [PITH_FULL_IMAGE:figures/full_fig_p014_7.png]
Figure 8
Figure 8. Figure 8: Comparison of the proposed hybrid Transformer-GRU model with four competing deep [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 9
Figure 9. Figure 9: Comparison of the proposed hybrid Transformer-GRU model with four competing deep [PITH_FULL_IMAGE:figures/full_fig_p016_9.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. crypto price prediction using lstm+xgboost

    cs.LG 2025-06 reject novelty 2.0 of 10

    An LSTM+XGBoost hybrid is reported to beat standalone models on crypto price forecasts, but the paper gives no reproducible protocol or data.

Reference graph

Works this paper leans on

52 extracted references · 30 canonical work pages · cited by 1 Pith paper

  1. [1]

    Razi, M.A., Athappilly, K. (2005). A comparative predictive analysis of neural networks (NNS), nonlinear regression and classification and regression tree (CART) models. Expert Systems with Applications, 29, 65--74

  2. [2]

    \' S lepaczuk, R., Zenkova, M. (2018). Robustness of support vector machines in algorithmic trading on cryptocurrency market. Central European Economic Journal, 5, 186--205

  3. [3]

    Chen, Z., Li, C., Sun, W. (2020). Bitcoin price prediction using machine learning: An approach to sample dimension engineering. Journal of Computational and Applied Mathematics, 365, 112395

  4. [4]

    Mahdi, E., Leiva, V., Mara’Beh, S., Martin-Barreiro, C. (2021). A New Approach to Predicting Cryptocurrency Returns Based on the Gold Prices with Support Vector Machines during the COVID-19 Pandemic Using Sensor-Related Data. Sensors, 21, 6319. https://doi.org/10.3390/s21186319

  5. [5]

    Akyildirim, E., Goncu, A., Sensoy, A. (2021). Prediction of cryptocurrency returns using machine learning. Annals of Operations Research, 297, 3--36. https://doi.org/10.1007/s10479-020-03575-y

  6. [6]

    Makala, D., Li, Z. (2021). Prediction of gold price with ARIMA and SVM . Journal of Physics: Conference Series, 1767, 012022

  7. [7]

    Jaquart, P., K¨opke, S., Weinhardt, C. (2022). Machine learning for cryptocurrency market prediction and trading. The Journal of Finance and Data Science, 8: 331--352. https://doi.org/10.1016/j.jfds.2022.12.001

  8. [8]

    Mahdi, E., Al-Abdulla, A. (2022). Impact of COVID-19 Pandemic News on the Cryptocurrency Market and Gold Returns: A Quantile-on-Quantile Regression Analysis. Econometrics, 10, 26. https://doi.org/10.3390/econometrics10020026

Show all 52 references
  1. [9]

    C., Rehman, M

    Qureshi, M., Iftikhar, H., Rodrigues, P. C., Rehman, M. Z., Salar, S. A. A. (2024). Statistical Modeling to Improve Time Series Forecasting Using Machine Learning, Time Series, and Hybrid Models: A Case Study of Bitcoin Price Forecasting. Mathematics, 12(23), 3666. https://doi...

  2. [10]

    S., Lowe, D

    Broomhead, D. S., Lowe, D. (1988). Radial basis functions, multi-variable functional interpolation and adaptive networks (Technical report). Royal Signals and Radar Establishment (RSRE), Memorandum 4148

  3. [11]

    S.; Lowe, D

    Broomhead, D. S.; Lowe, D. (1988). Multivariable functional interpolation and adaptive networks. Complex Systems, 2: 321--355

  4. [12]

    Predicting the Price of Cryptocurrency Using Support Vector Regression Methods

    Alahmari, S., A., (2020). Predicting the Price of Cryptocurrency Using Support Vector Regression Methods. Journal of Mechanics of Continua and Mathematical Sciences, 15(4): 313--322. https://doi.org/10.26782/jmcms.2020.04.00023

  5. [13]

    Casillo, M., Lombardi, M., Lorusso, A., Marongiu, F., Santaniello, D., Valentino, C. (2022). Sentiment Analysis and Recurrent Radial Basis Function Network for Bitcoin Price Prediction. IEEE 21st Mediterranean Electrotechnical Conference (MELECON), Palermo, Italy, pp. 1189--11...

  6. [14]

    Zhang, Y. (2025). Stock price behavior determination using an optimized radial basis function. Intelligent Decision Technologies, 1--18. doi:10.1177/18724981251315846

  7. [15]

    Specht, D. F. (1991). A general regression neural network. IEEE Transactions on Neural Networks, 2(6): 568--576. doi:10.1109/72.97934

  8. [16]

    Martínez, F., Charte, F., Rivera, A.J., Frías, M.P. (2019). Automatic Time Series Forecasting with GRNN: A Comparison with Other Models. In: Rojas, I., Joya, G., Catala, A. (eds) Advances in Computational Intelligence. IWANN 2019, Lecture Notes in Computer Science(), 11506. Sp...

  9. [17]

    Martínez, F., Charte, F., Frías, M., P., Martínez-Rodríguez, A. M. (2022). Strategies for time series forecasting with generalized regression neural networks. Neurocomputing, 49: 509-521 https://doi.org/10.1016/j.neucom.2021.12.028

  10. [18]

    Hochreiter, S., Schmidhuber, J. (1997). long-short-term memory. Neural Computation, 9(8): 1735--1780. https://doi.org/10.1162/neco.1997.9.8.1735

  11. [19]

    McNally, S., Roche, J., Caton, S. (2018). Predicting the Price of Bitcoin Using Machine Learning. 26th Euromicro International Conference on Parallel, Distributed and Network-based Processing (PDP), 339--343. https://api.semanticscholar.org/CorpusID:206505441

  12. [20]

    Liu, Y., Gong, C., Yang, L., Chen, Y. (2020). DSTP-RNN: A dual-stage two-phase attention-based recurrent neural network for long-term and multivariate time series prediction. Expert Systems with Applications, 143, 113082

  13. [21]

    Houstis, E., Vavalis, M

    Zoumpekas, T. Houstis, E., Vavalis, M. (2020). ETH analysis and predictions utilizing deep learning. Expert Systems with Applications, 162: 113866. https://doi.org/10.1016/j.eswa.2020.113866

  14. [22]

    Lahmiri, S., Bekiros, S. (2019). Cryptocurrency forecasting with deep learning chaotic neural networks. Chaos, Solitons & Fractals, 118, 35--40. https://doi.org/10.1016/j.chaos.2018.11.014

  15. [23]

    Ji, S., Kim, J., Im, H. (2019). A Comparative Study of Bitcoin Price Prediction Using Deep Learning. Mathematics, 7(10), 898. https://doi.org/10.3390/math7100898

  16. [24]

    Uras, N., Marchesi, L., Marchesi, M., Tonelli, R. (2020). Forecasting Bitcoin closing price series using linear regression and neural networks models. PeerJ Computer Science, 6: e279. https://doi.org/10.7717/peerj-cs.279

  17. [25]

    Lahmiri, S., and Bekiros, S. (2021). Deep learning forecasting in cryptocurrency high frequency trading. Cognitive Computation, 13: 485--487

  18. [26]

    Cho, K., Merrienboer, B., Gulcehre, C., Bahdanau, D., Fethi, B., Holger, S., Bengio, Y. (2014). Learning phrase representations using RNN encoder- decoder for statistical machine translation. https://arxiv.org/abs/1406.1078

  19. [27]

    Jianwei, E., Ye, J., Jin, H. (2019). A novel hybrid model on the prediction of time series and its application for the gold price analysis and forecasting. Physica A: Statistical Mechanics and its Applications, 527, 121454. https://doi.org/10.1016/j.physa.2019.121454

  20. [28]

    Dutta, A., Kumar, S., Basu, M. (2020). A gated recurrent unit approach to bitcoin price prediction. Journal of Risk and Financial Management, 13(2): 23. https://doi.org/10.3390/jrfm13020023

  21. [29]

    Tanwar, S., Patel, N. P. , Patel, S. N., Patel, J. R., Sharma, G., Davidson, I.E. Deep Learning-Based Cryptocurrency Price Prediction Scheme With Inter-Dependent Relations. IEEE Access, 9: 138633--138646. 10.1109/ACCESS.2021.3117848

  22. [30]

    Ye, Z., Wu, Y., Chen, H., Pan, Y., Jiang, Q. (2022). A Stacking Ensemble Deep Learning Model for Bitcoin Price Prediction Using Twitter Comments on Bitcoin. Mathematics, 10(8), 1307. https://doi.org/10.3390/math10081307

  23. [31]

    Price Prediction of Cryptocurrency Using a Multi-Layer Gated Recurrent Unit Network with Multi Features

    Patra1, G., R., Mohanty, M., N., (2023). Price Prediction of Cryptocurrency Using a Multi-Layer Gated Recurrent Unit Network with Multi Features. Computational Economics, 62: 1525--1544. https://doi.org/10.1007/s10614-022-10310-1

  24. [32]

    Hansun, S., Wicaksana, A ., Khaliq, A.Q.M. (2022). Multivariate cryptocurrency prediction: comparative analysis of three recurrent neural networks approaches. Journal of Big Data, 9, 50

  25. [33]

    H., Radzi, R

    Ferdiansyah, F., Othman, S. H., Radzi, R. Z., M., Stiawan, D., Sutikno T., (2023). Hybrid gated recurrent unit bidirectional-long-short-term memory model to improve cryptocurrency prediction accuracy. IAES International Journal of Artificial Intelligence (IJ-AI), 12 (1). http:...

  26. [34]

    N., Polosukhin, I

    Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Polosukhin, I. (2017). Attention is all you need. Advances in Neural Information Processing Systems, 30

  27. [35]

    W., Lee, K., Toutanova, K

    Devlin, J., Chang, M. W., Lee, K., Toutanova, K. (2018). BERT: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Techn...

  28. [36]

    Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., Houlsby, N. (2020). An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale. ArXiv, abs/2010.11929

  29. [37]

    Zhou, H., Zhang, S., Peng, J., Zhang, S., Li, J., Xiong, H., Zhang, W. (2021). Informer: Beyond Efficient Transformer for Long Sequence Time-Series Forecasting. Proceedings of the AAAI Conference on Artificial Intelligence, 35(12), 11106--11115. https://doi.org/10.1609/aaai.v3...

  30. [38]

    Grigsby, J., Wang, Z., Qi, Y. (2021). Long-Range Transformers for Dynamic Spatiotemporal Forecasting. computer science bibliography. ArXiv, https://arxiv.org/abs/2109.12218

  31. [39]

    Lezmi, E., Xu, J. (2023). Time Series Forecasting with Transformer Models and Application to Asset Management. Available at SSRN: https://ssrn.com/abstract=4375798 or http://dx.doi.org/10.2139/ssrn.4375798. black

  32. [40]

    Wen, Q., Zhou, T., Zhang, C., Chen, W., Ma, Z., Yan, J., Sun, L. (2023). Transformers in Time Series: A Survey. Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI-23, 6778--6786. https://doi.org/10.24963/ijcai.2023/759

  33. [41]

    Li, S., Jin, X., Xuan, Y., Zhou, X., Chen, W., Wang, Y.X., Yan, X. (2020). Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting. ArXiv, https://doi.org/10.48550/arXiv.1907.00235

  34. [42]

    Zerveas, G., Jayaraman, S., Patel, D., Bhamidipaty, A., Eickhoff, C. (2021). A transformer-based framework for multivariate time series representation learning. In KDD '21: Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining Pages 2114--2124 http...

  35. [43]

    Wu, H., Xu, J., Wang, J., Long, M. (2021). Autoformer: Decomposition transformers with auto-correlation for long-term series forecasting. NeurIPS. ArXiv, https://doi.org/10.48550/arXiv.2106.13008

  36. [44]

    Castangia, M., Grajales, L. M. M., Aliberti, A., Rossi, C., Macii, A., Macii, E., Patti, E. (2023). Transformer neural networks for interpretable flood forecasting. Environmental Modelling & Software, 160: 105581. https://doi.org/10.1016/j.envsoft.2022.105581

  37. [45]

    Bahdanau, D., Cho, K., Bengio, Y. (2015). Neural Machine Translation by Jointly Learning to Align and Translate. In Proceedings of the International Conference on Learning Representations (ICLR)

  38. [46]

    H, Alam, W., Avinash, G., Kumar, R.R., Ray, M., Barman, S., Singh, K.N., Naik, B.S., Alam, N.M., Pal, P., Rathod, S., Bisen, J

    Nayak, G.H. H, Alam, W., Avinash, G., Kumar, R.R., Ray, M., Barman, S., Singh, K.N., Naik, B.S., Alam, N.M., Pal, P., Rathod, S., Bisen, J. (2024). Transformer-based deep learning architecture for time series forecasting. Software Impacts, 22, 100716. https://doi.org/10.1016/j...

  39. [47]

    Kristoufek, L. (2013). BitCoin meets Google Trends and Wikipedia: Quantifying the relationship between phenomena of the Internet era. Scientific Reports, 3, 3415. https://doi.org/10.1038/srep03415

  40. [48]

    Urquhart, A. (2018). What causes the attention of Bitcoin?. Economics Letters, 166, 40--44, https://doi.org/10.1016/j.econlet.2018.02.017

  41. [49]

    Kao, Y.S., Day, M.Y., Chou, K.H. (2024). A comparison of bitcoin futures return and return volatility based on news sentiment contemporaneously or lead-lag. The North American Journal of Economics and Finance, 72, 102159. https://doi.org/10.1016/j.najef.2024.102159. black

  42. [50]

    Mai, F., Shan, J., Bai, Q., Sahne, W. (2018). How does social media impact Bitcoin value? A test of the silent majority hypothesis. Journal of Management Information Systems, 35(1): 19--52. https://doi.org/10.1080/07421222.2018.1440774

  43. [51]

    Garcia, D., Schweitzer, F. (2015). Social signals and algorithmic trading of Bitcoin. Royal Society Open Science, 2(9): 150288. http://doi.org/10.1098/rsos.150288

  44. [52]

    Yan, K., Li, Y. (2024). Machine learning-based analysis of volatility quantitative investment strategies for American financial stocks. Quantitative Finance and Economics, 2024, 8(2): 364-386. doi: 10.3934/QFE.2024014

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.