highcharts
Version:
JavaScript charting framework
97 lines (96 loc) • 2.57 kB
JavaScript
/* *
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
;
import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
const { tema: TEMAIndicator } = SeriesRegistry.seriesTypes;
import U from '../../../Core/Utilities.js';
const { correctFloat, merge } = U;
/* *
*
* Class
*
* */
/**
* The TRIX series type.
*
* @private
* @class
* @name Highcharts.seriesTypes.trix
*
* @augments Highcharts.Series
*/
class TRIXIndicator extends TEMAIndicator {
/* *
*
* Functions
*
* */
// TRIX is calculated using TEMA so we just extend getTemaPoint method.
getTemaPoint(xVal, tripledPeriod, EMAlevels, i) {
if (i > tripledPeriod) {
return [
xVal[i - 3],
EMAlevels.prevLevel3 !== 0 ?
correctFloat(EMAlevels.level3 - EMAlevels.prevLevel3) /
EMAlevels.prevLevel3 * 100 : null
];
}
}
}
/* *
*
* Static Properties
*
* */
/**
* Triple exponential average (TRIX) oscillator. This series requires
* `linkedTo` option to be set.
*
* @sample {highstock} stock/indicators/trix
* TRIX indicator
*
* @extends plotOptions.tema
* @since 7.0.0
* @product highstock
* @excluding allAreas, colorAxis, compare, compareBase, joinBy, keys,
* navigatorOptions, pointInterval, pointIntervalUnit,
* pointPlacement, pointRange, pointStart, showInNavigator,
* stacking
* @requires stock/indicators/indicators
* @requires stock/indicators/tema
* @requires stock/indicators/trix
* @optionparent plotOptions.trix
*/
TRIXIndicator.defaultOptions = merge(TEMAIndicator.defaultOptions);
SeriesRegistry.registerSeriesType('trix', TRIXIndicator);
/* *
*
* Default Export
*
* */
export default TRIXIndicator;
/* *
*
* API Options
*
* */
/**
* A `TRIX` series. If the [type](#series.trix.type) option is not specified, it
* is inherited from [chart.type](#chart.type).
*
* @extends series,plotOptions.trix
* @since 7.0.0
* @product highstock
* @excluding allAreas, colorAxis, compare, compareBase, dataParser, dataURL,
* joinBy, keys, navigatorOptions, pointInterval, pointIntervalUnit,
* pointPlacement, pointRange, pointStart, showInNavigator, stacking
* @requires stock/indicators/indicators
* @requires stock/indicators/tema
* @apioption series.trix
*/
''; // To include the above in the js output