You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix(issue-2201): [bug]-分析后无报告生成
* fix(review-feedback-2211): Keep the TTM cutoff anchored to the as-of date and Propagate report
* fix(review-feedback-2211): Move the empty-watchlist check before the trading-day return
* fix(review-feedback-2211): preserve the failure status, but defer returning until after the and
* fix(review-feedback-2211): preserve the failure result, but defer returning until after the
* fix(review-feedback-2211): Handle failures in the market-review-only CLI branch
Copy file name to clipboardExpand all lines: docs/FAQ_EN.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,9 +164,22 @@ First confirm whether `LITELLM_CONFIG` or `LLM_CHANNELS` is active, because eith
164
164
1.**Auto-chunking**: Latest version implements automatic long message splitting
165
165
2.**Single stock push mode**: Set `SINGLE_STOCK_NOTIFY=true`, push immediately after each stock analysis
166
166
3.**Brief report**: Set `REPORT_TYPE=simple` for simplified format
167
+
4.**Local file fallback**: Even with no notification channel configured, `SINGLE_STOCK_NOTIFY=true` still saves each stock report to `reports/report_YYYYMMDD_<stock_code>.md`
167
168
168
169
---
169
170
171
+
### Q8.1: Analysis finished, but no report file was created under `reports/`?
172
+
173
+
**Common causes**:
174
+
1.`STOCK_LIST` is empty and market review was not enabled for this run
175
+
2. The stock list is non-empty, but every stock analysis failed so no successful result was produced
176
+
3. Stock results were produced, but writing to `reports/` failed (for example due to permissions or mount issues)
177
+
178
+
**Current behavior**:
179
+
1. CLI-triggered analysis now logs the exact failure reason for these cases
180
+
2. Standalone non-`--serve` runs now return a non-zero exit code so workflows do not treat “no report generated” as success
181
+
3. In single-stock push mode, local Markdown report saving still happens even when notifications are not configured
0 commit comments