live market websocket and monitoring wallets
This commit is contained in:
@ -1,25 +1,16 @@
|
||||
{
|
||||
"sma_cross_eth_1m": {
|
||||
"strategy_name": "sma_cross_1",
|
||||
"sma_cross_eth_5m": {
|
||||
"strategy_name": "sma_cross_2",
|
||||
"script": "strategies.ma_cross_strategy.MaCrossStrategy",
|
||||
"optimization_params": {
|
||||
"fast": {
|
||||
"start": 4,
|
||||
"end": 15,
|
||||
"start": 5,
|
||||
"end": 150,
|
||||
"step": 1
|
||||
},
|
||||
"slow": {
|
||||
"start": 20,
|
||||
"end": 60,
|
||||
"step": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"sma_44d_btc": {
|
||||
"strategy_name": "sma_cross_2",
|
||||
"optimization_params": {
|
||||
"sma_period": {
|
||||
"start": 20,
|
||||
"end": 250,
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"step": 1
|
||||
}
|
||||
}
|
||||
|
||||
@ -3,10 +3,5 @@
|
||||
"coin": "BTC",
|
||||
"side": "short",
|
||||
"size": 0.0001
|
||||
},
|
||||
"sma_cross_1": {
|
||||
"coin": "ETH",
|
||||
"side": "short",
|
||||
"size": 0.0028
|
||||
}
|
||||
}
|
||||
@ -1,52 +1,31 @@
|
||||
{
|
||||
"sma_cross_1": {
|
||||
"sma_cross_eth_5m": {
|
||||
"enabled": true,
|
||||
"script": "strategy_sma_cross.py",
|
||||
"agent": "scalper",
|
||||
"script": "strategy_runner.py",
|
||||
"class": "strategies.ma_cross_strategy.MaCrossStrategy",
|
||||
"agent": "scalper_agent",
|
||||
"parameters": {
|
||||
"coin": "ETH",
|
||||
"timeframe": "5m",
|
||||
"slow": 44,
|
||||
"fast": 7,
|
||||
"size": 0.0028,
|
||||
"leverage_long": 5,
|
||||
"leverage_short": 2
|
||||
"timeframe": "1m",
|
||||
"short_ma": 7,
|
||||
"long_ma": 44,
|
||||
"size": 0.0055,
|
||||
"leverage_long": 5,
|
||||
"leverage_short": 5
|
||||
}
|
||||
},
|
||||
"sma_cross_2": {
|
||||
"sma_125d_btc": {
|
||||
"enabled": true,
|
||||
"script": "strategy_sma_cross.py",
|
||||
"agent": "swing",
|
||||
"parameters": {
|
||||
"coin": "BTC",
|
||||
"timeframe": "1D",
|
||||
"slow": 44,
|
||||
"fast": 0,
|
||||
"size": 0.0001,
|
||||
"leverage_long": 2,
|
||||
"leverage_short": 1
|
||||
}
|
||||
},
|
||||
"sma_125d_btc": {
|
||||
"enabled": false,
|
||||
"script": "strategy_template.py",
|
||||
"script": "strategy_runner.py",
|
||||
"class": "strategies.single_sma_strategy.SingleSmaStrategy",
|
||||
"agent": "swing_agent",
|
||||
"parameters": {
|
||||
"coin": "BTC",
|
||||
"timeframe": "1D",
|
||||
"sma_period": 125,
|
||||
"size": 0.0001
|
||||
}
|
||||
},
|
||||
"sma_44d_btc": {
|
||||
"enabled": false,
|
||||
"script": "strategy_template.py",
|
||||
"agent": "swing_agent",
|
||||
"parameters": {
|
||||
"coin": "BTC",
|
||||
"timeframe": "1D",
|
||||
"timeframe": "1d",
|
||||
"sma_period": 44,
|
||||
"size": 0.0001
|
||||
"size": 0.0001,
|
||||
"leverage_long": 2,
|
||||
"leverage_short": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"strategy_name": "sma_cross_1",
|
||||
"current_signal": "SELL",
|
||||
"last_signal_change_utc": "2025-10-18T16:19:00+00:00",
|
||||
"signal_price": 3870.5,
|
||||
"last_checked_utc": "2025-10-18T16:40:05.039625+00:00"
|
||||
"current_signal": "FLAT",
|
||||
"last_signal_change_utc": "2025-10-18T20:22:00+00:00",
|
||||
"signal_price": 3893.9,
|
||||
"last_checked_utc": "2025-10-18T20:30:05.021192+00:00"
|
||||
}
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"strategy_name": "sma_cross_2",
|
||||
"current_signal": "SELL",
|
||||
"last_signal_change_utc": "2025-10-14T00:00:00+00:00",
|
||||
"signal_price": 113026.0,
|
||||
"last_checked_utc": "2025-10-18T16:40:09.950516+00:00"
|
||||
"last_signal_change_utc": "2025-10-20T00:00:00+00:00",
|
||||
"signal_price": 110811.0,
|
||||
"last_checked_utc": "2025-10-20T18:45:51.578502+00:00"
|
||||
}
|
||||
Reference in New Issue
Block a user