Market Ingest Fetch market data for a symbol, normalize to OHLCV vectors, and store with HNSW indexing for fast pattern search. When to use When you need to ingest raw market data (price and volume) for a symbol and prepare it for pattern detection and similarity search. This is the first step before running pattern detection or comparison. Steps 1. Fetch data -- retrieve OHLCV data for the symbol from the configured data source (REST API, CSV file, or manual input) 2. Normalize -- convert raw prices to relative values: - Open: - High: - Low: - Close: - Volume: Z-score against rolling mean/st…