Skip to content
EZStockScreener
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.

Reset
Indicator Syntax Example Access
Relative momentum index
Momentum
RMI(period=14, lookback_period=1, input_col=close, ma_type='rma') [RMI() > 100] Pro
Intraday intensity oscillator
Momentum
IIO(period=14) [TREND(IIO(14), decreasing, 5)] Pro
Intraday momentum index
Momentum
IMI(period=14, ma_type='rma') [CROSSED(input_col=IMI(14), input_col2=IMI(28))] 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
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
Ultimate oscillator
Momentum
ULTIMATE_OSC(fast_period=7,medium_period=14,slow_period=28) [TREND(ULTIMATE_OSC(), increasing, 5)] Pro