BTC-PredictionAI
- 2 Devlogs
- 10 Total hours
It predicts the next 100 one-minute Bitcoin candles.
It predicts the next 100 one-minute Bitcoin candles.
I’ve had the idea of building my own AI for BTC predictions for a while. Not that whole “AI will make you rich” stuff, but just a tool that gives me a second opinion on the chart. After a few months of tinkering, the first version is done – and I’ve released it on GitHub for anyone to test.
This isn’t a tutorial or financial advice. It’s just a devlog explaining what I built and why.
It loads Bitcoin candles from Binance (1-minute chart, ~250,000 candles) and displays them in a chart that feels like TradingView. Three small AI models look at the last 200 candles and try to predict the next single candle:
All three work together: first Close, then High/Low as offsets to it, then Volume. The prediction is fed back as a new candle and the next step begins – using the same principle as ChatGPT, creating 100 predicted candles in one go.
Since it’s a replay, you can scroll through history, turn on the AI, and see if it was right back then. There’s also Paper Trading: Buy, Sell, Close – with a win/loss counter.
/live_chart)Then open http://localhost:8765 in your browser.
The current version is a first draft. Three simple nets with 10 features are far from the end goal:
But for now, the foundation works. Everything runs locally, offline, no API costs, no cloud dependency.
Built by tradersquant – BTC Prediction AI, July 2026
Currently, the AI uses 14 input features. I am considering increasing this to around 80 inputs. While this could potentially improve prediction accuracy, it also introduces a significant risk of excessive noise, which may ultimately degrade the model’s performance instead of enhancing it.