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 |
|---|---|---|---|
| Simple moving average Trend |
SMA(input_col, period=14) |
[SMA(close, 14) > 10] |
Core |
| Exponential moving average Trend |
EMA(input_col, period=14) |
[EMA(close, 14) > SMA(low, 100)] |
Core |
| Wilder's moving average Trend |
RMA(input_col, period=14) |
[RMA(low, 14)*2 < close] |
Core |
| Weighted moving average Trend |
WMA(input_col, period=14) |
[WMA(close, 14) > 10] |
Core |
| Moving average divergence Trend |
MAD(input_col, period=14) |
[MAD(close, 14) < 25] |
Core |
| Standard deviation Utility |
STD(input_col, period=14) |
[STD(close, 14) > 50] |
Core |
| 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 |