Heiken Ashi

Category: trend

Standard Heiken Ashi implementation that smooths price action by calculating synthetic OHLC values based on the previous bar's averages.

Formula

haClose = (Open + High + Low + Close) / 4\nhaOpen = (prev_haOpen + prev_haClose) / 2\nhaHigh = max(High, haOpen, haClose)\nhaLow = min(Low, haOpen, haClose)

Inputs

See signal primitives, usage in published strategies and more on WOBR StrategyVerse.


Open in the WOBR AI app → · WOBR.AI home