A full-stack quantitative trading analysis platform that combines traditional technical indicators with AI/ML predictions for enhanced market analysis. Designed to Value Cost Average (VCA) ASX stocks. Developed to maximize long-term investment returns through systematic, data-driven decision making. (Rather than DCA like a noob)
-
Interactive Backtesting Interface
- Test trading strategies directly from the frontend
- Visual backtesting results and performance metrics
- Real-time strategy optimization
- Custom parameter adjustment through UI
-
Advanced AI Model Customization
- Fine-tune ML models through the frontend interface
- Customize training parameters
- Adjust prediction timeframes
- Model performance comparison tools
-
Complete ASX Stock Integration
- Access to all ASX-listed stocks via Yahoo Finance
- Automated stock screening
- Sector-based analysis
- Market-wide trend detection
This platform integrates multiple layers of market analysis:
- Traditional technical indicators
- AI-driven price predictions
- Risk management metrics
- Market regime detection
- Real-time market data fetching using yfinance
- Comprehensive technical analysis
- Multiple timeframe analysis
- Volume profile analysis
- Risk metrics calculation
- Recommended VCA for the current month
- Prophet model for trend forecasting
- LSTM-based advanced predictions
- Parallel processing for multiple model consensus
- Confidence intervals for predictions
- Dynamic position sizing
- Volatility-adjusted recommendations
- Market regime-based risk scaling
- Automated stop-loss suggestions
-
Moving Averages
- SMA (20, 50, 200 days)
- EMA (100 days)
- TEMA (Triple Exponential Moving Average)
- HMA (Hull Moving Average)
-
MACD (Moving Average Convergence Divergence)
- Signal Line
- MACD Line
- MACD Histogram
- Used for trend direction and momentum
-
RSI (Relative Strength Index)
- Measures speed and magnitude of price changes
- Overbought > 70
- Oversold < 30
-
Stochastic Oscillator
- Stoch %K (Fast)
- Stoch %D (Slow)
- Measures price position relative to high-low range
-
ROC (Rate of Change)
- Measures percentage price change over time
- Used for momentum confirmation
-
Bollinger Bands
- Upper Band (2 standard deviations)
- Middle Band (20-day SMA)
- Lower Band (2 standard deviations)
- Used for volatility and potential reversal points
-
ATR (Average True Range)
- Measures market volatility
- Used for position sizing and stop-loss calculation
-
VWAP (Volume Weighted Average Price)
- Intraday trading reference
- Institutional trading benchmark
-
OBV (On-Balance Volume)
- Cumulative volume indicator
- Confirms price trends with volume
-
Accumulation/Distribution Line
- Measures money flow
- Helps identify divergences
- Facebook's Prophet model for time series forecasting
- Features:
- Trend detection
- Seasonality patterns
- Holiday effects
- Changepoint detection
- Deep learning model for complex pattern recognition
- Architecture:
LSTM(100) → Dropout(0.3) → LSTM(100) → Dropout(0.3) → LSTM(100) → Dense(1)
- Features:
- Multi-feature input (price, volume, indicators)
- Sequence learning
- Non-linear pattern recognition
- Multiple model instances run simultaneously
- Benefits:
- Reduced prediction variance
- Improved reliability
- Confidence interval calculation
- Model consensus
- Historical performance testing
- Metrics:
- MAE (Mean Absolute Error)
- RMSE (Root Mean Square Error)
- MAPE (Mean Absolute Percentage Error)
- Custom performance metrics
- Model back tests 5 years of data
The system uses multiple factors to determine market regime:
-
Trend Analysis
- SMA relationships
- EMA crossovers
- Price momentum
-
Volatility Analysis
- ATR trends
- Bollinger Band width
- Price range analysis
-
Volume Analysis
- OBV trends
- Volume momentum
- A/D line analysis
- Python 3.8 or higher
- Node.js 14+ and npm
- Git
- Clone the repository:
git clone <repository-url>
cd quantitative-trading-dashboard
- Create and activate a Python virtual environment:
# Windows
python -m venv venv
.\venv\Scripts\activate
# macOS/Linux
python3 -m venv venv
source venv/bin/activate
- Install Python dependencies:
pip install -r requirements.txt
- Navigate to the frontend directory:
cd frontend
- Install Node.js dependencies:
npm install
- Start the Flask backend server (from the root directory):
# Windows
cd quant-dashboard/backend/app
python app.py
# macOS/Linux
export FLASK_APP=app.py
export FLASK_ENV=development
flask run
The backend server will start at http://localhost:5000
- In a new terminal, start the frontend development server:
cd quant-dashboard/frontend
npm run dev
The frontend will be available at http://localhost:5173
If you encounter issues with package installation:
- Prophet installation:
# Windows
conda install -c conda-forge prophet
# macOS/Linux
pip install prophet
- TensorFlow installation:
pip install tensorflow
If you get SSL certificate errors with yfinance:
pip install --upgrade certifi
- Access the dashboard at
http://localhost:5173
- Enter a stock ticker
- Set your investment parameters:
- Monthly target investment
- Total investment target
- Chose a AI modle to run
The system will provide:
- Current market analysis
- Investment recommendations
- AI-driven price predictions
- Risk assessment
- Position sizing suggestions
-
/api/analyze
- Basic market analysis
- Technical indicators
- Investment recommendations
-
/api/predict
- Basic AI predictions
- Prophet model forecasts
- Trend analysis
-
/api/predict-advanced
- LSTM model predictions
- Confidence intervals
- Multiple timeframe analysis
-
/api/backtest
- Historical performance
- Model accuracy metrics
- Strategy validation
- Frontend: React + Vite
- Backend: Flask
- AI/ML: Prophet, TensorFlow
- Data: yfinance, pandas
For development, use:
# Frontend
cd frontend
npm run dev
# Backend
cd backend
python app.py