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 |
|---|---|---|---|
| Mass index Trend |
MASS_INDEX(period=25, ema_period=9) |
[TREND(MASS_INDEX(), decreasing, 6)] |
Pro |
| Momentum of stock Momentum |
MOMENTUM(input_col=close, period = 14) |
[TREND(MASS_INDEX(), increasing, 6)] |
Pro |
| Prcentage price oscillator Momentum |
PPO(input_col = close, fast_period=14, slow_period=28, ma_type='sma') |
[PPO() > 50] |
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 |
| QStick trend Trend |
QSTICK(period=14, ma_type='ema') |
[QSTICK() > 0] |
Pro |
| Stochastics %K Momentum |
STOCH_K(k_period=14,d_period=4,smooth_period=3) |
[STOCH_K() < 20] |
Core |
| Stochastics %D Momentum |
STOCH_D(k_period=14,d_period=4,smooth_period=3) |
[STOCH_D() > 70] |
Core |
| Stochastic RSI %K Momentum |
STOCHRSI_K(period=14,rsi_period=14,k_period=14,d_period=4) |
[STOCHRSI_K() < 20] |
Pro |
| Stochastic RSI %D Momentum |
STOCHRSI_D(period=14,rsi_period=14,k_period=14,d_period=4) |
[STOCHRSI_D() > 70] |
Pro |