Skip to content

Hollow Candles

Hollow candlestick style — bullish candles render as outlines when close >= open.

Code

typescript
chart.addSeries({
  id: 'ohlc',
  type: 'candlestick',
  data: ohlc,
  style: { hollow: true, bullishColor: '#22c55e', bearishColor: '#ef4444' },
})

Released under the MIT License.