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 |
|---|---|---|---|
| Standard deviation Utility |
STD(input_col, period=14) |
[STD(close, 14) > 50] |
Core |
| Directional movement - plus Utility |
DI_PLUS(period=14, ma_type='rma') |
[TREND(DI_PLUS()-DI_MINUS(), increasing, 5] |
Core |
| Directional movement - minus Utility |
DI_MINUS(period=14, ma_type='rma') |
[DI_MINUS() < 50] |
Core |
| Donchian channels - upper Utility |
DONC_UPPER(period=14, lag_period=1) |
[high > DONC_UPPER(14)] |
Core |
| Donchian channels - middle Utility |
DONC_MIDDLE(period=14, lag_period=1) |
[close < DONC_MIDDLE(28)] |
Core |
| Ease of movement Utility |
EOM(period=14) |
[EOM() > 4] |
Pro |
| Ehler Fisher transform Utility |
EHLERT(period=14) |
[EHLERT() > 0] |
Pro |
| Force index Utility |
FORCE_INDEX(period = 14) |
[TREND(FORCE_INDEX(10), increasing, 3] |
Pro |
| Inertia of stock Utility |
INERTIA(period=14, std_period=10, linreg_period=10) |
[CROSSED(input_col=INERTIA(period=10, std_period=5, linreg_period=14), input_col2=50)] |
Pro |
| Know sure thing line Utility |
KST_LINE(period=14, signal_period=9) |
[CROSSED(input_col=KST_LINE(), input_col2=KST_SIGNAL())] |
Core |