- Added new dependencies: `plotly`, `websocket`, `cffi`, `gevent`, `greenlet`, and `narwhals` to `pyproject.toml` and `uv.lock`. - Updated `.gitignore` to exclude the `frontend/` directory. - Modified configuration files to set `start_date` to `2025-01-01` in `config_bbrs.json` and `config_default.json`, with `stop_date` set to `null` in both. - Introduced a new project metadata file `.cursor/project.mdc` for project documentation and management.
21 lines
443 B
JSON
21 lines
443 B
JSON
{
|
|
"start_date": "2024-01-01",
|
|
"stop_date": null,
|
|
"initial_usd": 10000,
|
|
"timeframes": ["15min"],
|
|
"strategies": [
|
|
{
|
|
"name": "default",
|
|
"weight": 1.0,
|
|
"params": {
|
|
"timeframe": "15min",
|
|
"stop_loss_pct": 0.03
|
|
}
|
|
}
|
|
],
|
|
"combination_rules": {
|
|
"entry": "any",
|
|
"exit": "any",
|
|
"min_confidence": 0.5
|
|
}
|
|
} |