Pattern Discovery Command¶
Discover profitable trading patterns through reverse engineering of historical price data.
Synopsis¶
Description¶
The pattern command identifies combinations of technical indicators that preceded profitable trades. It works by:
- Finding historical inflection points using FPOP
- Analyzing indicator values at those points
- Discovering patterns that led to gains
- Generating tradeable strategies from patterns
Quick Start¶
# Find patterns with 10% minimum gain
sqa-cli pattern --ticker AAPL --min-gain 10
# Generate strategies from discovered patterns
sqa-cli pattern --ticker AAPL --min-gain 10 --generate
# Export to CSV
sqa-cli pattern --ticker AAPL --min-gain 10 --export patterns.csv