- 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.
19 lines
398 B
JSON
19 lines
398 B
JSON
{
|
|
"start_date": "2025-03-01",
|
|
"stop_date": "2025-03-15",
|
|
"initial_usd": 10000,
|
|
"timeframes": ["15min"],
|
|
"stop_loss_pcts": [0.03, 0.05],
|
|
"strategies": [
|
|
{
|
|
"name": "default",
|
|
"weight": 1.0,
|
|
"params": {}
|
|
}
|
|
],
|
|
"combination_rules": {
|
|
"entry": "any",
|
|
"exit": "any",
|
|
"min_confidence": 0.5
|
|
}
|
|
} |