From 0a2e2022a5338eb725437eaf3a4e18deb4a298c5 Mon Sep 17 00:00:00 2001 From: Brummel Date: Mon, 15 Jun 2026 11:14:41 +0200 Subject: [PATCH] docs(aura-cli): note the --real real-data path in the module header The header described `aura run` as synthetic-only; --real now also streams real M1 bars through the #71 Source seam. Keep the entry-point doc honest. --- crates/aura-cli/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/aura-cli/src/main.rs b/crates/aura-cli/src/main.rs index 31e5fe5..509c906 100644 --- a/crates/aura-cli/src/main.rs +++ b/crates/aura-cli/src/main.rs @@ -5,6 +5,11 @@ //! signal-quality harness (synthetic source → SMA-cross → Exposure → SimBroker → //! recording sinks), runs it deterministically (C1), and prints the run's //! metrics + manifest (#6) as canonical JSON to stdout (the headline C14 move). +//! +//! `aura run --real [--from ] [--to ]` feeds that same harness +//! real M1 close bars, streamed lazily from the local data-server archive through +//! the #71 Source seam (`M1FieldSource`) instead of the synthetic stream — the +//! first real-data backtest from the CLI. mod render;