33 lines
851 B
JSON
33 lines
851 B
JSON
{
|
|
"sma_cross_eth_5m": {
|
|
"enabled": true,
|
|
"script": "strategy_runner.py",
|
|
"class": "strategies.ma_cross_strategy.MaCrossStrategy",
|
|
"agent": "scalper_agent",
|
|
"parameters": {
|
|
"coin": "ETH",
|
|
"timeframe": "1m",
|
|
"short_ma": 7,
|
|
"long_ma": 44,
|
|
"size": 0.0055,
|
|
"leverage_long": 5,
|
|
"leverage_short": 5
|
|
}
|
|
},
|
|
"sma_125d_btc": {
|
|
"enabled": true,
|
|
"script": "strategy_runner.py",
|
|
"class": "strategies.single_sma_strategy.SingleSmaStrategy",
|
|
"agent": "swing_agent",
|
|
"parameters": {
|
|
"coin": "BTC",
|
|
"timeframe": "1d",
|
|
"sma_period": 44,
|
|
"size": 0.0001,
|
|
"leverage_long": 2,
|
|
"leverage_short": 1
|
|
}
|
|
}
|
|
}
|
|
|