docs: call it the memory log throughout

- docstrings, comments, messages and the README section use "memory log", matching TradingMemoryLog and memory_log_path
- the write, read and settle paths are named for what they do, not by design phase
This commit is contained in:
Yijia-Xiao
2026-09-24 19:38:41 +00:00
parent c50420fc5c
commit 5ac5786d0d
9 changed files with 25 additions and 23 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
"""Backtesting: many single-shot decisions, scored by the decision log.
"""Backtesting: many single-shot decisions, scored by the memory log.
A run already records its rating and later settles it with realized and alpha
return against the regional benchmark. A backtest is that machinery over a grid
@@ -76,7 +76,7 @@ def _config(tmp_path):
@pytest.mark.unit
def test_the_live_decision_log_is_never_written(tmp_path):
def test_the_live_memory_log_is_never_written(tmp_path):
config = _config(tmp_path)
result = run_backtest(["NVDA"], ["2026-01-05", "2026-01-12"], config)