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 |
|---|---|---|---|
| Returns the greatest of the 2 input values Utility |
C_MAX(input_col, input_col2) |
[C_MAX(close, open)] |
Core |
| Returns the lowest of the 2 input values Price |
C_MIN(input_col, input_col2) |
[close > 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 |
| Returns the TenkanSen Ichimoku Trend |
ICHM_TS(period=9) |
[ICHM_TS(9)] |
Pro |
| Returns the KijunSen (Base Line) Ichimoku Trend |
ICHM_KS(period=26) |
[ICHM_KS(period)] |
Pro |
| Returns the Chiku Span (Lagging Span) Ichimoku Trend |
ICHM_CS(period=26) |
[ICHM_CS(26)] |
Pro |
| Returns the Senkou A (Leading Span A) Ichimoku Trend |
ICHM_SA(ts_period=9, ks_period=26, shift_period=26) |
[ICHM_SA(9 ,26)] |
Pro |