Spaces:
Runtime error
Runtime error
File size: 689 Bytes
fa3e8d7 f3d9849 fa3e8d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {
"$schema": "https://freqtrade.io/schemas/config.schema.json",
"runmode": "dry_run",
"dry_run": true,
"strategy": "SimpleScalp",
"timeframe": "1m",
"max_open_trades": 1,
"stake_currency": "USDT",
"stake_amount": 25,
"exchange": {
"name": "binance",
"key": "${BINANCE_API_KEY}",
"secret": "${BINANCE_API_SECRET}",
"ccxt_config": {
"enableRateLimit": true
}
},
"pairlists": [
{
"method": "StaticPairList"
}
],
"pair_whitelist": [
"BTC/USDT",
"ETH/USDT"
],
"api_server": {
"enabled": true,
"listen_ip_address": "0.0.0.0",
"listen_port": 7860,
"verbosity": "error",
"enable_openapi": true
}
} |