highcharts
Version:
JavaScript charting framework
30 lines (29 loc) • 689 B
JavaScript
/* *
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Hønsi
*
* Integration of this software requires a license.
* - For commercial use, see www.highcharts.com/license
* - For non-commercial, see www.highcharts.com/license-eula
*
*
* */
;
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { candlestick: { prototype: { pointClass: CandlestickPoint } }, hlc: { prototype: {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pointClass: HLCPoint } } } = SeriesRegistry.seriesTypes;
/* *
*
* Class
*
* */
class HeikinAshiPoint extends CandlestickPoint {
}
/* *
*
* Default Export
*
* */
export default HeikinAshiPoint;