Real-time machine learning model that predicts cryptocurrency price trends, analyses trading volumes, and identifies profitable opportunities across Solana and Pump.fun tokens.
Built an end-to-end AI pipeline that ingests live cryptocurrency market data from multiple Solana-based exchanges and the Pump.fun launchpad, applies machine learning models for price prediction and volume analysis, and automates alerting for profitable trading opportunities. The system was designed to support informed retail investment decisions with real-time signals.
ML-powered forecasting of Solana and Pump.fun token prices using historical patterns, volume signals, and market momentum indicators.
Aggregates order-book and trade data from several crypto exchanges and news feeds to enhance prediction accuracy and reduce single-source bias.
Triggers real-time notifications when model confidence crosses profit thresholds โ supports actionable investment decisions without manual chart-watching.
Classifies trading volume regimes (accumulation, distribution, breakout) and overlays them with predicted price paths to surface high-probability setups.
Example prediction payload from the inference API:
# GET /api/predict?symbol=SOL&horizon=1h { "symbol": "SOL/USD", "timestamp": "2026-04-22T10:15:00Z", "current_price": 172.48, "prediction_horizon": "1h", "predicted_price": 174.91, "expected_change_pct": +1.41, "confidence": 0.82, "volume_regime": "accumulation", "signal": "BUY", "sources": ["binance", "coinbase", "pumpfun", "news_sentiment"] }
Python ML pipeline training models on aggregated historical + streaming crypto data. TensorFlow for prediction models, Node.js orchestration.
Integrates with Solana JSON-RPC, Pump.fun APIs, and centralized-exchange REST endpoints for multi-venue market data.
Containerized deployment on cloud infrastructure with scalable inference endpoints and scheduled retraining jobs.
Interactive dashboard for visualising predictions, historical performance, and alerts, built with Chart.js and vanilla JS.
Full source, ML training scripts, and dashboard frontend are on GitLab.
View Source on GitLab โ