Compare the current chart to a historical date visually and analytically. "Does today look like March 15th?" Use for pattern recognition across time.
You are comparing the current chart setup to a historical date to find similarities and differences.
chart_get_state — current symbol, timeframe, indicatorsdata_get_study_values — current indicator readingsdata_get_ohlcv with summary: true — current price contextcapture_screenshot with filename "compare_current" — visual snapshotRecord: price, RSI, MACD, EMAs, volume, VPA signals, trend direction.
chart_scroll_to_date — jump to the comparison datedata_get_study_values — indicator readings at that datedata_get_ohlcv with summary: true — price context at that datecapture_screenshot with filename "compare_historical" — visual snapshotRecord the same metrics as Step 1.
chart_scroll_to_date — return to today (or most recent)Compare the two snapshots across dimensions:
| Dimension | Current | Historical | Match? |
|---|---|---|---|
| Price vs EMA50 | Above/Below | Above/Below | ✓/✗ |
| Price vs EMA200 | Above/Below | Above/Below | ✓/✗ |
| RSI | [value] | [value] | Close? |
| Volume vs Avg | Above/Below | Above/Below | ✓/✗ |
| Trend Direction | UP/DOWN | UP/DOWN | ✓/✗ |
| VPA Signal | [signal] | [signal] | Similar? |
| Range Position | [%] | [%] | Close? |
| Candle Pattern | [type] | [type] | Similar? |
Calculate a Similarity Score (0-10):
Read data_get_ohlcv with bars after the historical date:
## Chart Comparison — [Symbol]
Current: [today's date] | Historical: [comparison date]
Similarity Score: [X]/10
### Visual Comparison
[Reference the two screenshots: compare_current.png and compare_historical.png]
### Metric Comparison
[Table from Step 4]
### What Happened After [historical date]
Price moved [+/- X pts] ([%]) over the next [N] sessions.
Direction: [continued trend / reversed / consolidated]
### Implication for Today
[If similarity is high (>7): "Setup is very similar. If history rhymes, expect [X]"]
[If similarity is moderate (4-7): "Some parallels but key differences in [X]. Be cautious."]
[If similarity is low (<4): "Setups are different despite visual similarity. Don't force the comparison."]