Skip to main content
Skip to main content

Indicators, strategies, and functions

Your chart can show more than candles. Exeria ships 97 indicators, 10 functions, and 11 strategies — all added with the same API: chart.addScript("KEY").

This section explains the three types in plain language, how to pick which data series feeds a study, and how to choose which panel it draws on.

Loading chart…
Example: EMA on the price chart + RSI in its own panel below.

Pick your page

You want to…Read
Understand the three script typesOverview
Choose input series and target panelSeries and panels
Wire scripts together in codeProgrammatic wiring
Add a moving average or oscillatorIndicators
Transform or combine series (new concept)Functions
Generate Buy/Sell signals (new concept)Strategies
Look up every built-in keyIndicator · Function · Strategy catalogs

The three types in one sentence each

TypeWhat it doesThink of it as…
IndicatorComputes a derived line or histogram from price (or volume)Classic RSI, MACD, Bollinger Bands
FunctionTransforms or combines any numeric seriesSpreadsheet formula on chart data
StrategyEmits trading signals (Buy, Sell, Exit…) when rules fireRule engine that draws arrows on the chart
flowchart TB
Price["Main price series (OHLC)"]
Ind["Indicator — e.g. EMA"]
Fn["Function — e.g. DISPLACE(EMA)"]
Strat["Strategy — e.g. CROSS(EMA, SMA)"]

Price --> Ind
Ind --> Fn
Ind --> Strat
Fn --> Strat

How you add anything

From ChartUI: toolbar → Indicators → tabs Indicator / Function / Strategy → pick one → adjust settings → OK.

From code:

chart.addScript("EMA");
chart.addScript("RSI");
chart.addScript("CROSS");
chart.addScript("DISPLACE");

List available keys:

console.log(Object.keys(chart.getScripts()));

Tutorial: Add an indicator.

Built-in counts (current registry)

CategoryCountCatalog
Indicators97Full list
Functions10Full list
Strategies11Full list

Quick troubleshooting

ProblemPage to check
Indicator uses wrong price fieldSeries and panels
RSI covers the candlesPanel selector → New panel
Strategy shows no arrowsInputs may still point at defaults — Programmatic wiring
Function flat / emptyWire DSERIES to a real output — Functions overview

Ready? Start with Overview or Series and panels if you configure studies in the UI.