回测基本一致

This commit is contained in:
2026-06-26 20:50:07 +08:00
parent 49be922517
commit 0dcbfe0781
58 changed files with 4843 additions and 40 deletions
+23
View File
@@ -0,0 +1,23 @@
"""Pre-run interactive wizard (doc 05 §5).
Captures the handful of run settings that change run-to-run and writes them
to ``wizard-answers.yaml`` for reproducibility. A run with no saved settings
is not reproducible and shouldn't be promoted.
"""
from .wizard import (
WizardAnswers,
WizardQuestion,
load_answers,
run_wizard,
save_answers,
DEFAULT_QUESTIONS,
)
__all__ = [
"WizardAnswers",
"WizardQuestion",
"run_wizard",
"save_answers",
"load_answers",
"DEFAULT_QUESTIONS",
]