Files
MidasBot/freqtrade/user_data/config_nfi.json
jerem 633b033f4d 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
2026-06-23 19:25:49 +02:00

110 lines
2.4 KiB
JSON

{
"$schema": "https://schema.freqtrade.io/schema.json",
"bot_name": "MidasBot",
"max_open_trades": 6,
"stake_currency": "USDT",
"stake_amount": "unlimited",
"tradable_balance_ratio": 0.99,
"fiat_display_currency": "EUR",
"dry_run": true,
"dry_run_wallet": 1000,
"cancel_open_orders_on_exit": false,
"trading_mode": "spot",
"margin_mode": "",
"timeframe": "5m",
"unfilledtimeout": {
"entry": 10,
"exit": 10,
"exit_timeout_count": 0,
"unit": "minutes"
},
"entry_pricing": {
"price_side": "same",
"use_order_book": true,
"order_book_top": 1,
"price_last_balance": 0.0,
"check_depth_of_market": {
"enabled": false,
"bids_to_ask_delta": 1
}
},
"exit_pricing": {
"price_side": "same",
"use_order_book": true,
"order_book_top": 1
},
"exchange": {
"name": "binance",
"key": "",
"secret": "",
"ccxt_config": {},
"ccxt_async_config": {},
"pair_whitelist": [
"BTC/USDT",
"ETH/USDT",
"SOL/USDT",
"BNB/USDT",
"XRP/USDT",
"ADA/USDT",
"AVAX/USDT",
"DOGE/USDT",
"LINK/USDT",
"DOT/USDT",
"LTC/USDT",
"TRX/USDT",
"ATOM/USDT",
"NEAR/USDT",
"APT/USDT",
"ARB/USDT",
"OP/USDT",
"FIL/USDT",
"INJ/USDT",
"SUI/USDT",
"UNI/USDT",
"AAVE/USDT",
"ETC/USDT",
"XLM/USDT",
"ALGO/USDT",
"VET/USDT",
"HBAR/USDT",
"RUNE/USDT",
"SAND/USDT",
"GALA/USDT"
],
"pair_blacklist": [
".*(BULL|BEAR|UP|DOWN)/.*",
".*(USDC|TUSD|BUSD|DAI|FDUSD)/.*"
]
},
"pairlists": [
{
"method": "StaticPairList"
}
],
"telegram": {
"enabled": false,
"token": "",
"chat_id": ""
},
"api_server": {
"enabled": false,
"listen_ip_address": "0.0.0.0",
"listen_port": 8080,
"verbosity": "error",
"enable_openapi": true,
"jwt_secret_key": "set-via-env-FREQTRADE__API_SERVER__JWT_SECRET_KEY",
"ws_token": "set-via-env-FREQTRADE__API_SERVER__WS_TOKEN",
"CORS_origins": [],
"username": "set-via-env",
"password": "set-via-env"
},
"initial_state": "running",
"force_entry_enable": false,
"internals": {
"process_throttle_secs": 5
},
"use_exit_signal": true,
"exit_profit_only": false,
"ignore_roi_if_entry_signal": true,
"position_adjustment_enable": true
}