📊
Time Series
Built-in series with automatic history tracking and lookback access
JavaScript-based language for financial technical analysis, enabling traders to create custom indicators and strategies
// Awesome Oscillator (AO)
const fastLength = input("Fast Length", 5);
const slowLength = input("Slow Length", 34);
function onTick() {
const mid = hl2;
const ao = ta.sma(mid, fastLength) - ta.sma(mid, slowLength);
spline(ao, {title: "awesome"});
spline(0, {title: "zero"});
}This documentation is available in llms.txt format:
llms.txt — structured index with linksllms-full.txt — complete documentation in one file