Closed odlainepre closed 5 years ago
@nikitamarcius If you have set data like below object candlestickSeries.setData([ { time: "2018-12-19", open: 141.77, high: 170.39, low: 120.25, close: 145.72 }, { time: "2018-12-20", open: 145.72, high: 147.99, low: 100.11, close: 108.19 } ]); You will get active data i.e. object using const ohlc = param.seriesPrices.get(this.candlestickSeries). i.e -> { open: 141.77, high: 170.39, low: 120.25, close: 145.72 }
@pinal-knoxpo thnx, it`s works
https://jsfiddle.net/tpmrjkwz/
UPD: Was version problem, my version was 1.0.0rc2 (return only price), updated to 1.1.0 Stand Alone 1.0.0 also works.
Hi!
How to get candle data (OHLC) with subscribeCrossHairMove ? I can only get the current price.