Trading-agent / user_data /config.json
MarneMorgan's picture
Update user_data/config.json
f3d9849 verified
raw
history blame contribute delete
689 Bytes
{
"$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
}
}