%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/root/var/www/html/ppaobm/backend/web/assets/16c36a2e/es-modules/indicators/ |
Upload File : |
/* * * * License: www.highcharts.com/license * * */ 'use strict'; import H from '../parts/Globals.js'; import '../parts/Utilities.js'; import requiredIndicator from '../mixins/indicator-required.js'; var correctFloat = H.correctFloat, TEMA = H.seriesTypes.tema; /** * The TRIX series type. * * @private * @class * @name Highcharts.seriesTypes.trix * * @augments Highcharts.Series */ H.seriesType( 'trix', 'tema', /** * Normalized average true range indicator (NATR). This series requires * `linkedTo` option to be set. * * Requires https://code.highcharts.com/stock/indicators/ema.js * and https://code.highcharts.com/stock/indicators/tema.js. * * @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 * @optionparent plotOptions.trix */ {}, /** * @lends Highcharts.Series# */ { init: function () { var args = arguments, ctx = this; requiredIndicator.isParentLoaded( TEMA, 'tema', ctx.type, function (indicator) { indicator.prototype.init.apply(ctx, args); } ); }, getPoint: function ( xVal, tripledPeriod, EMAlevels, i ) { if (i > tripledPeriod) { var TRIXPoint = [ xVal[i - 3], EMAlevels.prevLevel3 !== 0 ? correctFloat(EMAlevels.level3 - EMAlevels.prevLevel3) / EMAlevels.prevLevel3 * 100 : null ]; } return TRIXPoint; } } ); /** * A `TRIX` series. If the [type](#series.tema.type) option is not specified, it * is inherited from [chart.type](#chart.type). * * @extends series,plotOptions.tema * @since 7.0.0 * @product highstock * @excluding allAreas, colorAxis, compare, compareBase, dataParser, dataURL, * joinBy, keys, navigatorOptions, pointInterval, pointIntervalUnit, * pointPlacement, pointRange, pointStart, showInNavigator, stacking * @apioption series.trix */