Data overview
Notes
- Each record represents 1-hour candlesticks.
- Most features were created using the ta-lib technical analysis library.
- Numerical data in
train_dataset.csv
has already been processed with robust scaling, while categorical features have been label encoded.
raw_1h_data.csv
Index
- datetime - date and time (in
YYYY-MM-DD HH:MM:SS
format), indicating the timestamp for each record.
Features
- open - opening price for the hourly interval.
- high - highest price reached during the hour.
- low - lowest price reached during the hour.
- close - closing price for the hourly interval.
- volume - trading volume traded during that hour.
train_dataset.csv
Index
- datetime - date and time (in
YYYY-MM-DD HH:MM:SS
format), indicating the timestamp for each record.
Features
- volume - trading volume traded during the hour.
- SAREXT - Extended Parabolic SAR.
- BBANDS_168_lower - Lower Bollinger Band with 168-hour lookback.
- ADXR_24 - Average Directional Movement Index Rating with 24-hour lookback.
- ADXR_72 - Average Directional Movement Index Rating with 72-hour lookback.
- ADXR_168 - Average Directional Movement Index Rating with 168-hour lookback.
- DX_24 - Directional Movement Index with 24-hour lookback.
- STOCHRSI_D - Stochastic RSI D-line.
- APO - Absolute Price Oscillator.
- TRIX_24 - 1-day Rate-of-Change of Triple Smooth EMA with 24-hour lookback.
- TRIX_168 - 1-day Rate-of-Change of Triple Smooth EMA with 168-hour lookback.
- ADOSC - Chaikin A/D Oscillator.
- HT_DCPERIOD - Hilbert Transform - Dominant Cycle Period.
- HT_PHASOR_inphase - Hilbert Transform Phasor Component.
- candles_since_start - Cumulative count of candles elapsed since the beginning of the dataset.
- day_sin - Sine component of circular encoding for time of day.
- day_cos - Cosine component of circular encoding for time of day.
- dayofweek_sin - Sine component of circular encoding for day of week.
- dayofyear_sin - Sine component of circular encoding for day of year.
- dayofyear_cos - Cosine component of circular encoding for day of year.
- target - Target variable (closing price of the next record).