MidasBot: bot trading crypto IA + stratégies Ichimoku validées
- Infra: Freqtrade (futures dry-run) + Redis + dashboard + Docker Compose - Couche IA: ai_analyzer (Claude via abonnement, MCP TradingView, backfill biais) - Stratégies: SampleStrategy, AiBiasStrategy, IchimokuLS (long/short, validée train/test + données vierges + walk-forward), MTFIchimoku, variantes hyperopt - Arbitrage CEX (dry-run), backtesting, walk-forward, volatility targeting - IchimokuLS en dry-run live (config_live.json) Claude-Session: https://claude.ai/code/session_01VHETcFacdnDhQzthLpdYFR
This commit is contained in:
13
dashboard/Dockerfile
Normal file
13
dashboard/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
# Dashboard « Insights IA » (FastAPI).
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
COPY dashboard/requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY dashboard/ /app/
|
||||
|
||||
ENV REDIS_URL=redis://redis:6379/0 \
|
||||
FREQUI_URL=http://127.0.0.1:8080
|
||||
|
||||
EXPOSE 8500
|
||||
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8500"]
|
||||
Reference in New Issue
Block a user