compute_indicator
Validate an indicator's behavior on a small price array before integrating it into a strategy, testing parameters and window effects.
Instructions
Run a single FLOX indicator over a list of floats and return the output. Use this to sanity-check an indicator's behaviour on a small price array BEFORE wiring it into a strategy — especially when the indicator has window / period / smoothing parameters whose effect isn't obvious from the name. Input is capped at 1 MiB. Requires the optional flox-py dependency.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Indicator name in flox_py — case either matches the class (`EMA`, `RSI`, `Bollinger`) or the function (`ema`, `rsi`, `vwap`). | |
| data | Yes | Input series (e.g. close prices). Up to 125k samples. |