chore: local defaults

This commit is contained in:
2026-03-09 12:24:30 +02:00
parent b7aa458e40
commit deb28f6714
2 changed files with 4 additions and 4 deletions

View File

@@ -60,12 +60,12 @@ All options are available as CLI flags and environment variables:
| `--oos-to` | | `2026-03-01` | Out-of-sample end | | `--oos-to` | | `2026-03-01` | Out-of-sample end |
| `--initial-balance` | | `10000` | Starting USDC balance | | `--initial-balance` | | `10000` | Starting USDC balance |
| `--fees-percent` | | `0.001` | Fee per trade (0.1%) | | `--fees-percent` | | `0.001` | Fee per trade (0.1%) |
| `--output-dir` | | `./results` | Where to save strategies and reports | | `--output-dir` | | `./scout-results` | Where to save strategies and reports |
## Output ## Output
``` ```
results/ scout-results/
├── strategy_001.json # Every strategy attempted ├── strategy_001.json # Every strategy attempted
├── strategy_002.json ├── strategy_002.json
├── ... ├── ...

View File

@@ -18,11 +18,11 @@ pub struct Cli {
pub anthropic_key: String, pub anthropic_key: String,
/// Anthropic API base URL. /// Anthropic API base URL.
#[arg(long, default_value = "https://api.anthropic.com")] #[arg(long, default_value = "http://beast.hanzalova.internal:1234")]
pub anthropic_url: String, pub anthropic_url: String,
/// Claude model to use for strategy generation. /// Claude model to use for strategy generation.
#[arg(long, default_value = "claude-sonnet-4-20250514")] #[arg(long, default_value = "qwen/qwen3.5-35b-a3b")]
pub model: String, pub model: String,
/// Maximum agent iterations (generate → backtest → evaluate cycles). /// Maximum agent iterations (generate → backtest → evaluate cycles).