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
Know sure thing signal
Utility
KST_SIGNAL(period=14, signal_period=9) [CROSSED(input_col=KST_LINE(), input_col2=KST_SIGNAL())] Core
Check occurrence of a signal
Utility
WITHIN_LAST(input_col, condition_compare='any', days_ago=1) [WITHIN_LAST(CROSSED(input_col=SMA(10), input_col2=SMA(200)), 'any', days_ago=7)] Pro
Count no. of days since a signal occurred
Utility
DAYS_SINCE(input_col, days_ago=7, total_period=14) [DAYS_SINCE(CROSSED(input_col=close, input_col2=SMA(200),'below'))] Pro
Value of an input column n days ago
Utility
DAYS_AGO(input_col, period=1) [close > DAYS_AGO(close, 5)] Pro
Returns the greatest of the 2 input values
Utility
C_MAX(input_col, input_col2) [C_MAX(close, open)] Core
Returns the greatest value of the input series within the given period
Utility
F_MAX(input_col, period=1, skip_period=0) [close > F_MAX(close, 10, 2)] Core
Returns the greatest value of the input series within the given period
Utility
F_MIN(input_col, period=1, skip_period=0) [close> F_MAX(low, 10, 2)] Core
Returns the absolute value of the input series
Utility
F_ABS(input_col) [close> F_ABS(open-close)] Core
Returns the value of the input series divided by the second.
Utility
F_DIV(input_col, input_col2) [close/100 > F_DIV(open, close)] Core