| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "$schema": "https://schema.freqtrade.io/schema.json",
- "max_open_trades": 1,
- "stake_currency": "USDT",
- "stake_amount": 10,
- "tradable_balance_ratio": 0.99,
- "dry_run": true,
- "dry_run_wallet": 1000,
- "trading_mode": "futures",
- "margin_mode": "isolated",
- "timeframe": "15m",
- "dataformat_ohlcv": "json",
- "exchange": {
- "name": "okx",
- "key": "",
- "secret": "",
- "password": "",
- "ccxt_config": {
- "timeout": 60000,
- "enableRateLimit": true,
- "httpsProxy": "http://127.0.0.1:7897",
- "options": {
- "defaultType": "swap"
- }
- },
- "ccxt_async_config": {
- "timeout": 60000,
- "enableRateLimit": true,
- "httpsProxy": "http://127.0.0.1:7897",
- "options": {
- "defaultType": "swap"
- }
- },
- "pair_whitelist": [
- "BTC/USDT:USDT"
- ],
- "pair_blacklist": []
- },
- "pairlists": [
- {
- "method": "StaticPairList"
- }
- ],
- "entry_pricing": {
- "price_side": "other",
- "use_order_book": false
- },
- "exit_pricing": {
- "price_side": "other",
- "use_order_book": false
- },
- "order_types": {
- "entry": "market",
- "exit": "market",
- "emergency_exit": "market",
- "force_entry": "market",
- "force_exit": "market",
- "stoploss": "market",
- "stoploss_on_exchange": false
- },
- "unfilledtimeout": {
- "entry": 10,
- "exit": 10,
- "unit": "minutes"
- },
- "bot_name": "okx-codex-btc-rsi2-guarded",
- "initial_state": "stopped",
- "internals": {
- "process_throttle_secs": 5
- }
- }
|