first stategies, import script for BTC histry

This commit is contained in:
2025-10-14 10:48:26 +02:00
parent b1da0ce0b2
commit ac8ac31d01
9 changed files with 717 additions and 97 deletions

48
_data/strategies.json Normal file
View File

@ -0,0 +1,48 @@
{
"rsi_strategy_eth": {
"enabled": true,
"script": "strategy_template.py",
"parameters": {
"coin": "ETH",
"timeframe": "5m",
"rsi_period": 14
}
},
"ma_cross_btc": {
"enabled": true,
"script": "strategy_template.py",
"parameters": {
"coin": "BTC",
"timeframe": "1h",
"short_ma": 10,
"long_ma": 50
}
},
"sma_125d_btc": {
"enabled": true,
"script": "strategy_template.py",
"parameters": {
"coin": "BTC",
"timeframe": "1D",
"sma_period": 125
}
},
"sma_44d_btc": {
"enabled": true,
"script": "strategy_template.py",
"parameters": {
"coin": "BTC",
"timeframe": "1D",
"sma_period": 44
}
},
"disabled_strategy": {
"enabled": false,
"script": "strategy_template.py",
"parameters": {
"coin": "SOL",
"timeframe": "15m"
}
}
}