Technical reference
Technical indicators and screener functions.
Search 101 indicators and query functions available in EZStockScreener. These can be combined, nested, and used in technical or hybrid workflows.
Builder-ready syntax
Each row shows the query format and a sample expression you can adapt inside the advanced screener.
| Indicator | Syntax | Example | Access |
|---|---|---|---|
| Relative volatility index Volatility |
RVI(period=14, std_period=10, ma_type='sma') |
[RVI(28) < 10] |
Pro |
| Relative momentum index Momentum |
RMI(period=14, lookback_period=1, input_col=close, ma_type='rma') |
[RMI() > 100] |
Pro |
| Inertia of stock Utility |
INERTIA(period=14, std_period=10, linreg_period=10) |
[CROSSED(input_col=INERTIA(period=10, std_period=5, linreg_period=14), input_col2=50)] |
Pro |
| Intraday intensity oscillator Momentum |
IIO(period=14) |
[TREND(IIO(14), decreasing, 5)] |
Pro |
| Intraday momentum index Momentum |
IMI(period=14, ma_type='rma') |
[CROSSED(input_col=IMI(14), input_col2=IMI(28))] |
Pro |
| Keltner channels upper band Volatility |
KELTNER_UPPER(input_col=close, period=20, atr_period=10, sd_levels = 2) |
[TOUCHING(KELTNER_UPPER())] |
Core |
| Keltner channels middle band Volatility |
KELTNER_MIDDLE(input_col=close, period=20, atr_period=10, sd_levels = 2) |
[close > KELTNER_MIDDLE] |
Core |
| Keltner channels lower band Volatility |
KELTNER_LOWER(input_col=close, period=20, atr_period=10, sd_levels = 2) |
[low < KELTNER_LOWER(sd_levels = 3)] |
Core |
| Know sure thing line Utility |
KST_LINE(period=14, signal_period=9) |
[CROSSED(input_col=KST_LINE(), input_col2=KST_SIGNAL())] |
Core |
| Know sure thing signal Utility |
KST_SIGNAL(period=14, signal_period=9) |
[CROSSED(input_col=KST_LINE(), input_col2=KST_SIGNAL())] |
Core |