- 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
80 lines
1.8 KiB
JSON
80 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://schema.freqtrade.io/schema.json",
|
|
"bot_name": "MidasBot",
|
|
"max_open_trades": 3,
|
|
"stake_currency": "USDT",
|
|
"stake_amount": "unlimited",
|
|
"tradable_balance_ratio": 0.99,
|
|
"fiat_display_currency": "EUR",
|
|
"dry_run": true,
|
|
"dry_run_wallet": 100,
|
|
"cancel_open_orders_on_exit": false,
|
|
"trading_mode": "futures",
|
|
"margin_mode": "isolated",
|
|
"timeframe": "15m",
|
|
"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:USDT",
|
|
"ETH/USDT:USDT",
|
|
"SOL/USDT:USDT",
|
|
"BNB/USDT: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
|
|
}
|
|
} |