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 |
| Acceleration bands - upper Trend |
ABANDS_UPPER(period = 12, ma_type='sma') |
[high > ABANDS_UPPER()] |
Core |
| Acceleration bands - middle Trend |
ABANDS_MIDDLE(period = 12, ma_type='sma') |
[close > ABANDS_MIDDLE()] |
Core |
| Acceleration bands - lower Trend |
ABANDS_LOWER(period = 12, ma_type='sma') |
[low < ABANDS_LOWER()] |
Core |
| Aroon band - upper Trend |
AROON_UPPER(period=14) |
[close < AROON_UPPER()] |
Pro |
| Aroon band - middle Trend |
AROON_MIDDLE(period=14) |
[close > AROON_MIDDLE()] |
Pro |