For the complete documentation index, see llms.txt. This page is also available as Markdown.

Exponential Moving Average

The Exponential Moving Average in Origami Tech applies weighted smoothing to price data, ideal for momentum and crossover strategies.

ema(candles: List[[Candle]], period: int = 14, column: str = "close") -> List[Decimal]

Last updated