Goal Chain: L0 Medici Enterprises → L1 Einstein Research → L2 Market Timing
Detects Follow-Through Day (FTD) signals for market bottom confirmation using William O'Neil's methodology. This skill helps identify when it's safer to increase equity exposure after a market correction. It is the offensive counterpart to the defensive market-top-detector skill.
This skill implements a state machine that tracks the S&P 500 (SPY) and NASDAQ (QQQ) for signs of a market bottom.
State Machine:
This skill is run via a CLI tool, typically as part of a daily market analysis cron job.
# Run the FTD analysis for the latest market data
einstein-research ftd
# Output (example)
{
"status": "FTD_CONFIRMED",
"details": "Follow-Through Day confirmed on 2026-03-14 for SPY.",
"spy": {
"state": "FTD_CONFIRMED",
"rally_attempt_start_date": "2026-03-10",
"day_count": 5,
"ftd_date": "2026-03-14",
"ftd_price_change_pct": 1.8,
"ftd_volume_change_pct": 25.1
},
"qqq": {
"state": "FTD_WATCH",
"rally_attempt_start_date": "2026-03-11",
"day_count": 4,
"ftd_date": null
},
"recommendation": "Market in confirmed uptrend. Consider increasing equity exposure cautiously. Monitor for confirmation on QQQ."
}
einstein-research ftd after market close each day.status changes to RALLY_ATTEMPT or FTD_CONFIRMED, send a notification to Omer.This skill should be used in conjunction with other indicators (like market breadth, sentiment, and the market-top-detector) for a complete picture.
共 1 个版本