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
Arron band - lower
Trend
AROON_LOWER(period=14) [low < AROON_LOWER()] Pro
DeMarker indicator
Trend
DEMARKER(period=14) [DEMARKER() > 0.7] Pro
Average directional movement index
Trend
ADX(period=14, ma_type='rma') [ADX() > 40] Core
True strength index
Trend
TSI(fast_period=14, slow_period=25, signal_period=8, input_col=close, ma_type='ema') [TSI() > 20] Pro
True strength index signal
Trend
TSI_SIGNAL(fast_period=14, slow_period=25, signal_period=8, input_col=close, ma_type='ema') [TSI() > TSI_SIGNAL()] Pro
Mass index
Trend
MASS_INDEX(period=25, ema_period=9) [TREND(MASS_INDEX(), decreasing, 6)] Pro
QStick trend
Trend
QSTICK(period=14, ma_type='ema') [QSTICK() > 0] Pro
T3 moving average
Trend
T3(input_col=close, period=14, ma_type='ema', damping_coeff=0.7) [CROSSED(input_col=T3(14), input_col2=T3(28))] Pro
Check for trend in timeseries data
Trend
TREND(input_col=close, direction='increasing', period=14) [TREND(ATR(14), decreasing, 10)] Pro
Returns the TenkanSen Ichimoku
Trend
ICHM_TS(period=9) [ICHM_TS(9)] Pro