tickerbot_get_signals_match
Find tickers matching a signal at any point in time, with support for boolean flags and numeric thresholds like >70. Returns sorted results for analysis.
Instructions
Find tickers that match a single signal right now (or at a past moment with asof). Booleans need no condition. Numerics need a condition like ">70" or "<=200". Sorted by signal value desc for numerics.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asof | No | Optional YYYY-MM-DD or ISO timestamp. Date-only matches daily state; a timestamp matches the finest intraday state covering the query. | |
| limit | No | Page size. Max 200. Default 50. | |
| cursor | No | Opaque cursor. | |
| signal | Yes | Column name on ticker (e.g. golden_cross_today, rsi_14, market_cap). | |
| sort_by | No | Row order: `default` (alphabetic for booleans, highest-value-first for numerics) or `market_cap` (desc, adds market_cap to each row). | |
| universe | No | Optional universe slug. | |
| condition | No | Required for numerics. Single bound: <op><value>, ops in (>, >=, =, !=, <, <=). | |
| include_active_since | No | Built-in booleans only: adds `active_since` per row — when the flag last flipped true (from the spans archive). |