Hacked By AnonymousFox

Current Path : C:/AppServ/www/financial/stacked/code/es5/indicators/
Upload File :
Current File : C:/AppServ/www/financial/stacked/code/es5/indicators/williams-r.js.map

{"version":3,"sources":["<anon>"],"sourcesContent":["/**\n * @license Highstock JS v12.1.2 (2025-01-09)\n * @module highcharts/indicators/williams-r\n * @requires highcharts\n * @requires highcharts/modules/stock\n *\n * Indicator series type for Highcharts Stock\n *\n * (c) 2010-2024 Wojciech Chmiel\n *\n * License: www.highcharts.com/license\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"highcharts\"), require(\"highcharts\")[\"SeriesRegistry\"]);\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine(\"highcharts/indicators/williams-r\", [[\"highcharts/highcharts\"], [\"highcharts/highcharts\",\"SeriesRegistry\"]], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"highcharts/indicators/williams-r\"] = factory(require(\"highcharts\"), require(\"highcharts\")[\"SeriesRegistry\"]);\n\telse\n\t\troot[\"Highcharts\"] = factory(root[\"Highcharts\"], root[\"Highcharts\"][\"SeriesRegistry\"]);\n})(this, function(__WEBPACK_EXTERNAL_MODULE__944__, __WEBPACK_EXTERNAL_MODULE__512__) {\nreturn /******/ (function() { // webpackBootstrap\n/******/ \t\"use strict\";\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ 512:\n/***/ (function(module) {\n\nmodule.exports = __WEBPACK_EXTERNAL_MODULE__512__;\n\n/***/ }),\n\n/***/ 944:\n/***/ (function(module) {\n\nmodule.exports = __WEBPACK_EXTERNAL_MODULE__944__;\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tvar cachedModule = __webpack_module_cache__[moduleId];\n/******/ \t\tif (cachedModule !== undefined) {\n/******/ \t\t\treturn cachedModule.exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t!function() {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = function(module) {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\tfunction() { return module['default']; } :\n/******/ \t\t\t\tfunction() { return module; };\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t!function() {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = function(exports, definition) {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t!function() {\n/******/ \t\t__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }\n/******/ \t}();\n/******/ \t\n/************************************************************************/\nvar __webpack_exports__ = {};\n\n// EXPORTS\n__webpack_require__.d(__webpack_exports__, {\n  \"default\": function() { return /* binding */ williams_r_src; }\n});\n\n// EXTERNAL MODULE: external {\"amd\":[\"highcharts/highcharts\"],\"commonjs\":[\"highcharts\"],\"commonjs2\":[\"highcharts\"],\"root\":[\"Highcharts\"]}\nvar highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_ = __webpack_require__(944);\nvar highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default = /*#__PURE__*/__webpack_require__.n(highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_);\n;// ./code/es5/es-modules/Stock/Indicators/ArrayUtilities.js\n/**\n *\n *  (c) 2010-2024 Pawel Fus & Daniel Studencki\n *\n *  License: www.highcharts.com/license\n *\n *  !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!\n *\n * */\n\n/* *\n *\n *  Functions\n *\n * */\n/**\n * Get extremes of array filled by OHLC data.\n *\n * @private\n *\n * @param {Array<Array<number>>} arr\n * Array of OHLC points (arrays).\n *\n * @param {number} minIndex\n * Index of \"low\" value in point array.\n *\n * @param {number} maxIndex\n * Index of \"high\" value in point array.\n *\n * @return {Array<number,number>}\n * Returns array with min and max value.\n */\nfunction getArrayExtremes(arr, minIndex, maxIndex) {\n    return arr.reduce(function (prev, target) { return [\n        Math.min(prev[0], target[minIndex]),\n        Math.max(prev[1], target[maxIndex])\n    ]; }, [Number.MAX_VALUE, -Number.MAX_VALUE]);\n}\n/* *\n *\n *  Default Export\n *\n * */\nvar ArrayUtilities = {\n    getArrayExtremes: getArrayExtremes\n};\n/* harmony default export */ var Indicators_ArrayUtilities = (ArrayUtilities);\n\n// EXTERNAL MODULE: external {\"amd\":[\"highcharts/highcharts\",\"SeriesRegistry\"],\"commonjs\":[\"highcharts\",\"SeriesRegistry\"],\"commonjs2\":[\"highcharts\",\"SeriesRegistry\"],\"root\":[\"Highcharts\",\"SeriesRegistry\"]}\nvar highcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_ = __webpack_require__(512);\nvar highcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_default = /*#__PURE__*/__webpack_require__.n(highcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_);\n;// ./code/es5/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js\n/* *\n *\n *  License: www.highcharts.com/license\n *\n *  !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!\n *\n * */\n\nvar __extends = (undefined && undefined.__extends) || (function () {\n    var extendStatics = function (d,\n        b) {\n            extendStatics = Object.setPrototypeOf ||\n                ({ __proto__: [] } instanceof Array && function (d,\n        b) { d.__proto__ = b; }) ||\n                function (d,\n        b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n        return extendStatics(d, b);\n    };\n    return function (d, b) {\n        extendStatics(d, b);\n        function __() { this.constructor = d; }\n        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n    };\n})();\n\n\nvar SMAIndicator = (highcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_default()).seriesTypes.sma;\n\nvar extend = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default()).extend, isArray = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default()).isArray, merge = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default()).merge;\n/* *\n *\n *  Class\n *\n * */\n/**\n * The Williams %R series type.\n *\n * @private\n * @class\n * @name Highcharts.seriesTypes.williamsr\n *\n * @augments Highcharts.Series\n */\nvar WilliamsRIndicator = /** @class */ (function (_super) {\n    __extends(WilliamsRIndicator, _super);\n    function WilliamsRIndicator() {\n        return _super !== null && _super.apply(this, arguments) || this;\n    }\n    /* *\n     *\n     *  Functions\n     *\n     * */\n    WilliamsRIndicator.prototype.getValues = function (series, params) {\n        var period = params.period,\n            xVal = series.xData,\n            yVal = series.yData,\n            yValLen = yVal ? yVal.length : 0,\n            WR = [], // 0- date, 1- Williams %R\n            xData = [],\n            yData = [],\n            close = 3,\n            low = 2,\n            high = 1;\n        var slicedY,\n            extremes,\n            R,\n            HH, // Highest high value in period\n            LL, // Lowest low value in period\n            CC, // Current close value\n            i;\n        // Williams %R requires close value\n        if (xVal.length < period ||\n            !isArray(yVal[0]) ||\n            yVal[0].length !== 4) {\n            return;\n        }\n        // For a N-period, we start from N-1 point, to calculate Nth point\n        // That is why we later need to comprehend slice() elements list\n        // with (+1)\n        for (i = period - 1; i < yValLen; i++) {\n            slicedY = yVal.slice(i - period + 1, i + 1);\n            extremes = Indicators_ArrayUtilities.getArrayExtremes(slicedY, low, high);\n            LL = extremes[0];\n            HH = extremes[1];\n            CC = yVal[i][close];\n            R = ((HH - CC) / (HH - LL)) * -100;\n            if (xVal[i]) {\n                WR.push([xVal[i], R]);\n                xData.push(xVal[i]);\n                yData.push(R);\n            }\n        }\n        return {\n            values: WR,\n            xData: xData,\n            yData: yData\n        };\n    };\n    /* *\n     *\n     *  Static Properties\n     *\n     * */\n    /**\n     * Williams %R. This series requires the `linkedTo` option to be\n     * set and should be loaded after the `stock/indicators/indicators.js`.\n     *\n     * @sample {highstock} stock/indicators/williams-r\n     *         Williams %R\n     *\n     * @extends      plotOptions.sma\n     * @since        7.0.0\n     * @product      highstock\n     * @excluding    allAreas, colorAxis, joinBy, keys, navigatorOptions,\n     *               pointInterval, pointIntervalUnit, pointPlacement,\n     *               pointRange, pointStart, showInNavigator, stacking\n     * @requires     stock/indicators/indicators\n     * @requires     stock/indicators/williams-r\n     * @optionparent plotOptions.williamsr\n     */\n    WilliamsRIndicator.defaultOptions = merge(SMAIndicator.defaultOptions, {\n        /**\n         * Parameters used in calculation of Williams %R series points.\n         * @excluding index\n         */\n        params: {\n            index: void 0, // Unchangeable index, do not inherit (#15362)\n            /**\n             * Period for Williams %R oscillator\n             */\n            period: 14\n        }\n    });\n    return WilliamsRIndicator;\n}(SMAIndicator));\nextend(WilliamsRIndicator.prototype, {\n    nameBase: 'Williams %R'\n});\nhighcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_default().registerSeriesType('williamsr', WilliamsRIndicator);\n/* *\n *\n *  Default Export\n *\n * */\n/* harmony default export */ var WilliamsR_WilliamsRIndicator = ((/* unused pure expression or super */ null && (WilliamsRIndicator)));\n/* *\n *\n *  API Options\n *\n * */\n/**\n * A `Williams %R Oscillator` series. If the [type](#series.williamsr.type)\n * option is not specified, it is inherited from [chart.type](#chart.type).\n *\n * @extends   series,plotOptions.williamsr\n * @since     7.0.0\n * @product   highstock\n * @excluding allAreas, colorAxis, dataParser, dataURL, joinBy, keys,\n *            navigatorOptions, pointInterval, pointIntervalUnit,\n *            pointPlacement, pointRange, pointStart, showInNavigator, stacking\n * @requires  stock/indicators/indicators\n * @requires  stock/indicators/williams-r\n * @apioption series.williamsr\n */\n''; // Adds doclets above to the transpiled file\n\n;// ./code/es5/es-modules/masters/indicators/williams-r.src.js\n\n\n\n\n/* harmony default export */ var williams_r_src = ((highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default()));\n\n__webpack_exports__ = __webpack_exports__[\"default\"];\n/******/ \treturn __webpack_exports__;\n/******/ })()\n;\n});"],"names":["root","factory","exports","module","require","define","amd","__WEBPACK_EXTERNAL_MODULE__944__","__WEBPACK_EXTERNAL_MODULE__512__","extendStatics","__webpack_modules__","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","n","getter","__esModule","d","a","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","__webpack_exports__","williams_r_src","highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_","highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default","Indicators_ArrayUtilities","getArrayExtremes","arr","minIndex","maxIndex","reduce","prev","target","Math","min","max","Number","MAX_VALUE","highcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_","highcharts_SeriesRegistry_commonjs_highcharts_SeriesRegistry_commonjs2_highcharts_SeriesRegistry_root_Highcharts_SeriesRegistry_default","__extends","b","setPrototypeOf","__proto__","Array","p","__","constructor","create","SMAIndicator","seriesTypes","sma","extend","isArray","merge","WilliamsRIndicator","_super","apply","arguments","getValues","series","params","slicedY","extremes","R","HH","LL","i","period","xVal","xData","yVal","yData","yValLen","length","WR","slice","push","values","defaultOptions","index","nameBase","registerSeriesType"],"mappings":"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"}

Hacked By AnonymousFox1.0, Coded By AnonymousFox