πŸ™†Methodology

We propose a stacked CNN-LSTM model for predicting the price of a future market contract on the Binance cryptocurrency exchange, specifically the Solana (SOL/USDT) token. Although optimized for the cryptocurrency market, it can also be trained on other data. In image processing, where CNNs are widely used, 3x3 and 5x5 filters are commonly employed to capture spatial variance over a rectangular array of pixels. The input size of the kernel is modified to 1x54 to match the input feature set consisting of a total of 54 input features. Each input feature is represented by a series of variables such as closing price, technical indicator values, candlestick patterns, etc. These inputs are fed to the CNN to extract features related to daily price levels and generate a tensor that is then passed to the LSTM network. The LSTM takes inputs from the preceding 30 time steps (measured in days or hours) and attempts to predict the next time step of the data.

Last updated