A modified candlestick chart that uses averaged OHLC values to filter noise and make trends easier to see — at the cost of losing real-time price accuracy.
HA Close = (Open + High + Low + Close) / 4 HA Open = (Prior HA Open + Prior HA Close) / 2 HA High = Max(High, HA Open, HA Close) HA Low = Min(Low, HA Open, HA Close)