Skip to content

Heikin-Ashi Charts

Heikin-Ashi smooths candlestick noise by averaging OHLC values.

Code

typescript
chart.addSeries({
  id: 'ha',
  type: 'heikin-ashi',
  data: { x: times, open, high, low, close },
})

Released under the MIT License.