tradeblocks-mcp 1.0.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -268,7 +268,14 @@ npm run mcpb:pack
268
268
 
269
269
  ## Market Data (Optional)
270
270
 
271
- For market context (VIX regimes, intraday timing, gap analysis), export SPX/VIX data from TradingView using the included PineScript indicators. The MCP server syncs these CSVs into DuckDB automatically.
271
+ For market context (VIX regimes, intraday timing, gap analysis), export underlying/VIX data from TradingView using the included PineScript indicators. The MCP server syncs these CSVs into DuckDB automatically.
272
+
273
+ Supported `_marketdata` filename patterns:
274
+ - `<ticker>_daily.csv` (example: `spx_daily.csv`, `msft_daily.csv`)
275
+ - `<ticker>_15min.csv` (example: `spx_15min.csv`, `msft_15min.csv`)
276
+ - `<scope>_vix_intraday.csv` or `vix_intraday.csv` (global scope `ALL`)
277
+
278
+ Market tables are keyed by `(ticker, date)`, and trade enrichment joins on ticker + date.
272
279
 
273
280
  See [scripts/README.md](../../scripts/README.md) for setup instructions, field documentation, and the 3 PineScript indicators.
274
281