123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /**
- * @license Highstock JS v9.1.1 (2021-06-04)
- *
- * Indicator series type for Highcharts Stock
- *
- * (c) 2010-2021 Sebastian Bochan
- *
- * License: www.highcharts.com/license
- */
- 'use strict';
- (function (factory) {
- if (typeof module === 'object' && module.exports) {
- factory['default'] = factory;
- module.exports = factory;
- } else if (typeof define === 'function' && define.amd) {
- define('highcharts/indicators/ema', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
- factory(Highcharts);
- factory.Highcharts = Highcharts;
- return factory;
- });
- } else {
- factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
- }
- }(function (Highcharts) {
- var _modules = Highcharts ? Highcharts._modules : {};
- function _registerModule(obj, path, args, fn) {
- if (!obj.hasOwnProperty(path)) {
- obj[path] = fn.apply(null, args);
- }
- }
- _registerModule(_modules, 'Stock/Indicators/EMA/EMAIndicator.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
- /* *
- *
- * License: www.highcharts.com/license
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d,
- b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d,
- b) { d.__proto__ = b; }) ||
- function (d,
- b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var SMAIndicator = SeriesRegistry.seriesTypes.sma;
- var correctFloat = U.correctFloat,
- isArray = U.isArray,
- merge = U.merge;
- /* *
- *
- * Class
- *
- * */
- /**
- * The EMA series type.
- *
- * @private
- * @class
- * @name Highcharts.seriesTypes.ema
- *
- * @augments Highcharts.Series
- */
- var EMAIndicator = /** @class */ (function (_super) {
- __extends(EMAIndicator, _super);
- function EMAIndicator() {
- var _this = _super !== null && _super.apply(this,
- arguments) || this;
- /* *
- *
- * Properties
- *
- * */
- _this.data = void 0;
- _this.options = void 0;
- _this.points = void 0;
- return _this;
- }
- /* *
- *
- * Functions
- *
- * */
- EMAIndicator.prototype.accumulatePeriodPoints = function (period, index, yVal) {
- var sum = 0,
- i = 0,
- y = 0;
- while (i < period) {
- y = index < 0 ? yVal[i] : yVal[i][index];
- sum = sum + y;
- i++;
- }
- return sum;
- };
- EMAIndicator.prototype.calculateEma = function (xVal, yVal, i, EMApercent, calEMA, index, SMA) {
- var x = xVal[i - 1],
- yValue = index < 0 ?
- yVal[i - 1] :
- yVal[i - 1][index],
- y;
- y = typeof calEMA === 'undefined' ?
- SMA : correctFloat((yValue * EMApercent) +
- (calEMA * (1 - EMApercent)));
- return [x, y];
- };
- EMAIndicator.prototype.getValues = function (series, params) {
- var period = params.period,
- xVal = series.xData,
- yVal = series.yData,
- yValLen = yVal ? yVal.length : 0,
- EMApercent = 2 / (period + 1),
- sum = 0,
- EMA = [],
- xData = [],
- yData = [],
- index = -1,
- SMA = 0,
- calEMA,
- EMAPoint,
- i;
- // Check period, if bigger than points length, skip
- if (yValLen < period) {
- return;
- }
- // Switch index for OHLC / Candlestick / Arearange
- if (isArray(yVal[0])) {
- index = params.index ? params.index : 0;
- }
- // Accumulate first N-points
- sum = this.accumulatePeriodPoints(period, index, yVal);
- // first point
- SMA = sum / period;
- // Calculate value one-by-one for each period in visible data
- for (i = period; i < yValLen + 1; i++) {
- EMAPoint = this.calculateEma(xVal, yVal, i, EMApercent, calEMA, index, SMA);
- EMA.push(EMAPoint);
- xData.push(EMAPoint[0]);
- yData.push(EMAPoint[1]);
- calEMA = EMAPoint[1];
- }
- return {
- values: EMA,
- xData: xData,
- yData: yData
- };
- };
- /**
- * Exponential moving average indicator (EMA). This series requires the
- * `linkedTo` option to be set.
- *
- * @sample stock/indicators/ema
- * Exponential moving average indicator
- *
- * @extends plotOptions.sma
- * @since 6.0.0
- * @product highstock
- * @requires stock/indicators/indicators
- * @requires stock/indicators/ema
- * @optionparent plotOptions.ema
- */
- EMAIndicator.defaultOptions = merge(SMAIndicator.defaultOptions, {
- params: {
- /**
- * The point index which indicator calculations will base. For
- * example using OHLC data, index=2 means the indicator will be
- * calculated using Low values.
- *
- * By default index value used to be set to 0. Since
- * Highcharts Stock 7 by default index is set to 3
- * which means that the ema indicator will be
- * calculated using Close values.
- */
- index: 3,
- period: 9 // @merge 14 in v6.2
- }
- });
- return EMAIndicator;
- }(SMAIndicator));
- SeriesRegistry.registerSeriesType('ema', EMAIndicator);
- /* *
- *
- * Default Export
- *
- * */
- /**
- * A `EMA` series. If the [type](#series.ema.type) option is not
- * specified, it is inherited from [chart.type](#chart.type).
- *
- * @extends series,plotOptions.ema
- * @since 6.0.0
- * @product highstock
- * @excluding dataParser, dataURL
- * @requires stock/indicators/indicators
- * @requires stock/indicators/ema
- * @apioption series.ema
- */
- ''; // adds doclet above to the transpiled file
- return EMAIndicator;
- });
- _registerModule(_modules, 'masters/indicators/ema.src.js', [], function () {
- });
- }));
|