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 |
|---|---|---|---|
| Absolute volume oscillator Volume |
AVO(fast_period=12, slow_period=26, ma_type='sma') |
[AVO(12, 26) < 0] |
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 |
| Arron band - lower Trend |
AROON_LOWER(period=14) |
[low < AROON_LOWER()] |
Pro |
| Average True range Volatility |
ATR(period=14, ma_type='sma') |
[ATR(10) > 5] |
Core |
| Bollinger bands - upper Volatility |
BOLLBANDS_UPPER(period=14, sd_levels = 2, input_col=close, ma_type='sma') |
[high > BOLLBANDS_UPPER()] |
Core |
| Bollinger bands - middle Volatility |
BOLLBANDS_MIDDLE(period=14, sd_levels = 2, input_col=close, ma_type='sma') |
[close < BOLLBANDS_MIDDLE(period=28)] |
Core |