BTC Trading Bot Dataset With Advanced Indicators
Predict BTC Trends with Advanced Indicators
@kaggle.emirhanai_btc_trading_bot_dataset_with_advanced_indicators
Predict BTC Trends with Advanced Indicators
@kaggle.emirhanai_btc_trading_bot_dataset_with_advanced_indicators
BTC Trading Bot Dataset with Advanced Indicators - Predict $100,000 Breakthrough
Description:
This dataset is designed to power innovative machine learning and LLM-based trading bots focused on Bitcoin (BTC) trading strategies. It combines historical BTC price data with advanced custom indicators, offering valuable insights for predicting key market trends, including the potential breakthrough of BTC exceeding $100,000.
The dataset contains enriched features, meticulously crafted to serve as the foundation for predictive models and algorithmic trading strategies. Each indicator has been optimized for capturing both macro and micro trends in BTC's volatile market.
Date and Time: Timestamp of the price data in UTC.
Open, High, Low, Close (OHLC): Standard candlestick charting data.
Volume: Total trading volume in BTC during the respective time period.
Custom Indicators (Synthetic):
Derived Metrics:
This dataset is ideal for:
This dataset is tailored for Bitcoin trading and does not include unrelated financial instruments. The provided indicators were designed for educational and research purposes but align with real-world trading practices for improved predictive accuracy. Dive into the data and start creating your trading bot today!
CREATE TABLE btc_enriched_data (
"date" TIMESTAMP,
"price" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"vol" DOUBLE -- Vol.,
"change" DOUBLE -- Change %,
"ma10" DOUBLE,
"ma50" DOUBLE,
"ma200" DOUBLE,
"rsi" DOUBLE,
"mom_s" DOUBLE,
"vol_t" DOUBLE,
"t_osc" DOUBLE,
"bpi" DOUBLE,
"bri" BIGINT,
"sent_s" DOUBLE
);
Anyone who has the link will be able to view this.