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 |
|---|---|---|---|
| Moving average convergence divergence - slow line Momentum |
MACD_LINE(input_col, fast_period=12, slow_period=26, signal_period=9, ma_type='ema') |
[MACD_LINE(close, 12, 26, 9) > MACD_SIGNAL(close, 12, 26, 9)] |
Core |
| Moving average convergence divergence - fast line Momentum |
MACD_SIGNAL(input_col, fast_period=12, slow_period=26, signal_period=9, ma_type='ema') |
[MACD_LINE(close, 12, 26, 9) < MACD_SIGNAL(close, 12, 26, 9)] |
Core |
| Moving average convergence divergence - histogram Momentum |
MACD_HIST(input_col, fast_period=12, slow_period=26, signal_period=9, ma_type='ema') |
[MACD_HIST(close, 12, 26, 9) > 0] |
Core |
| Absolute price oscillator Momentum |
APO(fast_period=12, slow_period=26, ma_type='sma') |
[APO(12, 26) > 0] |
Core |
| Chande momentum oscillator Momentum |
CMO(period=10, input_col=close) |
[CMO(15) > 25] |
Pro |
| Commodity channel index Momentum |
CCI(period=14) |
[CCI(28) < -100] |
Core |
| Relative strength index Momentum |
RSI(period=14, input_col=close, ma_type='rma') |
[RSI() > 15] |
Core |
| Connor's relative strength index Momentum |
CRSI(rsi_period=3, updown_period=2, roc_period=100, input_col=close) |
[CRSI()<25] |
Pro |
| Detrended price oscillator Momentum |
DPO(period=14, input_col=close, ma_type='sma') |
[DPO(28) < DPO(14)] |
Pro |
| Ergodic oscillator Momentum |
EO(fast_period=14, slow_period=25, signal_period=8, input_col=close, ma_type='ema') |
[EO(input_col=volume) > 10000] |
Pro |