- Removed JSON files from .gitignore to allow tracking of configuration files. - Added multiple new configuration files for the BBRS strategy, including multi-timeframe and default settings. - Introduced a combined configuration file to support weighted strategy execution. - Established a default configuration for 5-minute and 15-minute timeframes, enhancing flexibility for strategy testing.
29 lines
797 B
JSON
29 lines
797 B
JSON
{
|
|
"start_date": "2024-01-01",
|
|
"stop_date": "2024-01-31",
|
|
"initial_usd": 10000,
|
|
"timeframes": ["1min"],
|
|
"stop_loss_pcts": [0.05],
|
|
"strategies": [
|
|
{
|
|
"name": "bbrs",
|
|
"weight": 1.0,
|
|
"params": {
|
|
"bb_width": 0.05,
|
|
"bb_period": 20,
|
|
"rsi_period": 14,
|
|
"trending_rsi_threshold": [30, 70],
|
|
"trending_bb_multiplier": 2.5,
|
|
"sideways_rsi_threshold": [40, 60],
|
|
"sideways_bb_multiplier": 1.8,
|
|
"strategy_name": "MarketRegimeStrategy",
|
|
"SqueezeStrategy": true
|
|
}
|
|
}
|
|
],
|
|
"combination_rules": {
|
|
"entry": "any",
|
|
"exit": "any",
|
|
"min_confidence": 0.5
|
|
}
|
|
} |