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 |
| Chaikin money flow Volume |
CHAMF(period=14) |
[CHAMF(period=18) > 0.05] |
Pro |
| Chaikin volatility Volume |
CHAVOL(period=10, lag_period=10, ma_type='sma') |
[CHAVOL() < 20] |
Pro |
| Chaikin oscillator Volume |
CHAOSC(period=10, ma_type='ema') |
[CHAOSC(ma_type='sma') > 100] |
Pro |
| Prcentage volume oscillator Volume |
PVO(input_col = volume, fast_period=14, slow_period=28, ma_type='sma') |
[PVO() < 35] |
Pro |
| Positive volume index Volume |
PVI(period=14) |
[TREND(PVI(), increasing, 4)] |
Pro |