All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.indicators.ema.src.js Maven / Gradle / Ivy

The newest version!

(function (factory) {
    if (typeof module === 'object' && module.exports) {
        factory['default'] = factory;
        module.exports = factory;
    } else if (typeof define === 'function' && define.amd) {
        define(['highcharts'], function (Highcharts) {
            factory(Highcharts);
            factory.Highcharts = Highcharts;
            return factory;
        });
    } else {
        factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
    }
}(function (Highcharts) {
    'use strict';
    var _modules = Highcharts ? Highcharts._modules : {};
    function _registerModule(obj, path, args, fn) {
        if (!obj.hasOwnProperty(path)) {
            obj[path] = fn.apply(null, args);

            if (typeof CustomEvent === 'function') {
                Highcharts.win.dispatchEvent(new CustomEvent(
                    'HighchartsModuleLoaded',
                    { detail: { path: path, module: obj[path] } }
                ));
            }
        }
    }
    _registerModule(_modules, 'masters/indicators/ema.src.js', [_modules['Core/Globals.js']], function (Highcharts) {
        /**
         * @requires highcharts
         */
        /*
         * Since v9.3.0, EMA technical indicator is part of indicators.js.
         * It's no longer necessary to load this file.
         */

        return Highcharts;
    });
}));




© 2015 - 2024 Weber Informatics LLC | Privacy Policy