highcharts 10.2.0 → 10.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/css/highcharts.css +10 -20
- package/css/themes/dark-unica.css +10 -20
- package/css/themes/grid-light.css +10 -20
- package/css/themes/sand-signika.css +10 -20
- package/es-modules/Accessibility/Accessibility.js +6 -0
- package/es-modules/Accessibility/Components/LegendComponent.js +8 -8
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +3 -2
- package/es-modules/Accessibility/Options/A11yDefaults.js +1 -1
- package/es-modules/Core/Axis/Axis.js +3 -0
- package/es-modules/Core/Axis/Axis3D.js +1 -1
- package/es-modules/Core/Axis/AxisDefaults.js +1 -1
- package/es-modules/Core/Axis/BrokenAxis.js +1 -1
- package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +4 -0
- package/es-modules/Core/Axis/NavigatorAxis.js +2 -2
- package/es-modules/Core/Axis/OrdinalAxis.js +2 -2
- package/es-modules/Core/Axis/RadialAxis.js +1 -1
- package/es-modules/Core/Axis/Stacking/StackItem.js +262 -0
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +468 -0
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +732 -0
- package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +313 -0
- package/es-modules/Core/Axis/WaterfallAxis.js +1 -1
- package/es-modules/Core/Axis/ZAxis.js +73 -70
- package/es-modules/Core/Chart/Chart.js +16 -2
- package/es-modules/Core/Chart/Chart3D.js +2 -2
- package/es-modules/Core/Chart/ChartDefaults.js +151 -2
- package/es-modules/Core/Chart/StockChart.js +5 -3
- package/es-modules/Core/DefaultOptions.js +2 -1
- package/es-modules/Core/Geometry/CircleUtilities.js +4 -4
- package/es-modules/Core/Globals.js +2 -1
- package/es-modules/{Extensions → Core}/Math3D.js +48 -43
- package/es-modules/Core/Navigator.js +24 -7
- package/es-modules/Core/Pointer.js +7 -9
- package/es-modules/Core/Renderer/HTML/AST.js +4 -1
- package/es-modules/Core/Renderer/SVG/SVGElement.js +103 -163
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +29 -27
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +3 -3
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +1 -1
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +5 -3
- package/es-modules/Core/Scrollbar.js +3 -1
- package/es-modules/Core/Series/DataLabel.js +8 -6
- package/es-modules/Core/Series/Point.js +2 -2
- package/es-modules/Core/Series/Series.js +36 -31
- package/es-modules/Core/Series/Series3D.js +1 -1
- package/es-modules/Core/Series/SeriesDefaults.js +8 -3
- package/es-modules/Core/Series/SeriesRegistry.js +6 -29
- package/es-modules/Core/Tooltip.js +14 -3
- package/es-modules/Core/Utilities.js +1 -3
- package/es-modules/Data/DataConverter.js +5 -0
- package/es-modules/Data/DataPromise.js +1 -1
- package/es-modules/Data/DataSeriesComposition.js +288 -0
- package/es-modules/Data/DataSeriesConverter.js +1 -1
- package/es-modules/Data/DataTable.js +2 -2
- package/es-modules/Data/Modifiers/ChainModifier.js +1 -1
- package/es-modules/Data/Modifiers/DataModifier.js +1 -1
- package/es-modules/Data/Modifiers/GroupModifier.js +1 -1
- package/es-modules/Data/Modifiers/InvertModifier.js +1 -1
- package/es-modules/Data/Modifiers/RangeModifier.js +1 -1
- package/es-modules/Data/Modifiers/SeriesPointsModifier.js +1 -1
- package/es-modules/Data/Modifiers/SortModifier.js +1 -1
- package/es-modules/Data/Parsers/DataParser.js +1 -1
- package/es-modules/Data/Stores/DataStore.js +1 -1
- package/es-modules/Extensions/Annotations/Annotation.js +347 -1156
- package/es-modules/Extensions/Annotations/AnnotationChart.js +291 -0
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +624 -0
- package/es-modules/Extensions/Annotations/ControlPoint.js +89 -64
- package/es-modules/Extensions/Annotations/{Mixins/ControllableMixin.js → Controllables/Controllable.js} +300 -241
- package/es-modules/Extensions/Annotations/Controllables/ControllableCircle.js +63 -50
- package/es-modules/Extensions/Annotations/Controllables/ControllableDefaults.js +95 -0
- package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +90 -61
- package/es-modules/Extensions/Annotations/Controllables/ControllableImage.js +50 -44
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +95 -78
- package/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +167 -51
- package/es-modules/Extensions/Annotations/Controllables/ControllableRect.js +53 -52
- package/es-modules/Extensions/Annotations/{Mixins/EventEmitterMixin.js → EventEmitter.js} +136 -116
- package/es-modules/Extensions/Annotations/MockPoint.js +210 -145
- package/es-modules/Extensions/Annotations/NavigationBindings.js +272 -674
- package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +396 -0
- package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +98 -0
- package/es-modules/Extensions/Annotations/Popup/Popup.js +295 -0
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +177 -0
- package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +81 -0
- package/es-modules/Extensions/Annotations/Popup/PopupIndicators.js +609 -0
- package/es-modules/Extensions/Annotations/Popup/PopupTabs.js +134 -0
- package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +10 -14
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +11 -19
- package/es-modules/Extensions/Annotations/Types/ElliottWave.js +10 -10
- package/es-modules/Extensions/Annotations/Types/Fibonacci.js +28 -20
- package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +63 -63
- package/es-modules/Extensions/Annotations/Types/InfinityLine.js +10 -19
- package/es-modules/Extensions/Annotations/Types/Measure.js +255 -249
- package/es-modules/Extensions/Annotations/Types/Pitchfork.js +11 -17
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +20 -17
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +12 -13
- package/es-modules/Extensions/Annotations/Types/VerticalLine.js +11 -15
- package/es-modules/Extensions/Boost/Boost.js +320 -15
- package/es-modules/Extensions/Boost/BoostChart.js +245 -0
- package/es-modules/Extensions/Boost/BoostSeries.js +927 -0
- package/es-modules/Extensions/Boost/BoostableMap.js +21 -5
- package/es-modules/Extensions/Boost/Boostables.js +13 -2
- package/es-modules/Extensions/Boost/NamedColors.js +15 -6
- package/es-modules/Extensions/Boost/WGLDrawMode.js +36 -0
- package/es-modules/Extensions/Boost/WGLRenderer.js +288 -295
- package/es-modules/Extensions/Boost/WGLShader.js +370 -376
- package/es-modules/Extensions/Boost/WGLVertexBuffer.js +192 -0
- package/es-modules/Extensions/BoostCanvas.js +62 -46
- package/es-modules/Extensions/Breadcrumbs.js +4 -0
- package/es-modules/Extensions/DataGrouping.js +65 -27
- package/es-modules/Extensions/Debugger/Debugger.js +60 -22
- package/es-modules/Extensions/DraggablePoints.js +4 -3
- package/es-modules/Extensions/Drilldown.js +7 -8
- package/es-modules/Extensions/{ExportData.js → ExportData/ExportData.js} +341 -530
- package/es-modules/Extensions/ExportData/ExportDataDefaults.js +272 -0
- package/es-modules/Extensions/Exporting/Exporting.js +5 -1
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +3 -1
- package/es-modules/Extensions/{FullScreen.js → Exporting/Fullscreen.js} +72 -27
- package/es-modules/Extensions/MarkerClusters.js +2 -0
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
- package/es-modules/Extensions/Oldie/Oldie.js +1 -1
- package/es-modules/Extensions/ParallelCoordinates.js +11 -7
- package/es-modules/Extensions/ScrollablePlotArea.js +1 -1
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +2 -2
- package/es-modules/Extensions/Sonification/ChartSonify.js +1 -1
- package/es-modules/Maps/MapPointer.js +1 -1
- package/es-modules/Maps/MapView.js +2 -1
- package/es-modules/Series/{Area3DSeries.js → Area3D/Area3DSeries.js} +42 -20
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +8 -2
- package/es-modules/Series/Bubble/BubbleLegendComposition.js +223 -231
- package/es-modules/Series/Bubble/BubbleLegendItem.js +46 -45
- package/es-modules/Series/Bubble/BubbleSeries.js +85 -66
- package/es-modules/Series/Column/ColumnSeries.js +2 -0
- package/es-modules/Series/Column3D/Column3DComposition.js +2 -2
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +1 -1
- package/es-modules/Series/Cylinder/CylinderComposition.js +1 -1
- package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +24 -11
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +16 -2
- package/es-modules/Series/DragNodesComposition.js +166 -0
- package/es-modules/Series/Funnel3D/Funnel3DSeries.js +1 -1
- package/es-modules/Series/Gantt/GanttSeries.js +1 -1
- package/es-modules/Series/GraphLayoutComposition.js +130 -0
- package/es-modules/Series/Heatmap/HeatmapSeries.js +5 -1
- package/es-modules/Series/Lollipop/LollipopPoint.js +21 -11
- package/es-modules/Series/Lollipop/LollipopSeries.js +15 -10
- package/es-modules/Series/Map/MapSeries.js +6 -1
- package/es-modules/Series/MapBubble/MapBubblePoint.js +15 -17
- package/es-modules/Series/MapBubble/MapBubbleSeries.js +19 -19
- package/es-modules/Series/Networkgraph/EulerIntegration.js +199 -0
- package/es-modules/Series/Networkgraph/NetworkgraphPoint.js +290 -0
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +401 -0
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +545 -0
- package/es-modules/Series/Networkgraph/QuadTree.js +66 -272
- package/es-modules/Series/Networkgraph/QuadTreeNode.js +271 -0
- package/es-modules/Series/Networkgraph/{Layouts.js → ReingoldFruchtermanLayout.js} +240 -259
- package/es-modules/Series/Networkgraph/VerletIntegration.js +193 -0
- package/es-modules/Series/Organization/OrganizationSeries.js +9 -1
- package/es-modules/Series/PackedBubble/PackedBubbleIntegration.js +81 -0
- package/es-modules/Series/PackedBubble/{PackedBubbleComposition.js → PackedBubbleLayout.js} +114 -77
- package/es-modules/Series/PackedBubble/PackedBubblePoint.js +2 -2
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +197 -570
- package/es-modules/Series/PackedBubble/PackedBubbleSeriesDefaults.js +394 -0
- package/es-modules/Series/Pie/PieSeries.js +3 -1
- package/es-modules/Series/PolarComposition.js +12 -12
- package/es-modules/Series/Sankey/SankeySeries.js +13 -1
- package/es-modules/Series/Scatter/ScatterSeries.js +4 -1
- package/es-modules/Series/Scatter3D/Scatter3DSeries.js +1 -1
- package/es-modules/Series/SeriesOnPointComposition.js +5 -1
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +1 -1
- package/es-modules/Series/Sunburst/SunburstPoint.js +5 -6
- package/es-modules/Series/Sunburst/SunburstSeries.js +24 -2
- package/es-modules/Series/Timeline/TimelineSeries.js +2 -0
- package/es-modules/Series/Treemap/TreemapSeries.js +3 -3
- package/es-modules/Series/Vector/VectorSeries.js +2 -4
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +1 -1
- package/es-modules/Series/Wordcloud/WordcloudUtils.js +1 -1
- package/es-modules/Series/XRange/XRangePoint.js +54 -45
- package/es-modules/Series/XRange/XRangeSeries.js +121 -273
- package/es-modules/Series/XRange/XRangeSeriesDefaults.js +211 -0
- package/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +10 -2
- package/es-modules/Stock/Indicators/AD/ADIndicator.js +5 -0
- package/es-modules/Stock/Indicators/AO/AOIndicator.js +22 -11
- package/es-modules/Stock/Indicators/APO/APOIndicator.js +6 -1
- package/es-modules/Stock/Indicators/ATR/ATRIndicator.js +16 -3
- package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +15 -2
- package/es-modules/Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js +6 -2
- package/es-modules/Stock/Indicators/BB/BBIndicator.js +5 -1
- package/es-modules/Stock/Indicators/CCI/CCIIndicator.js +16 -3
- package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +20 -0
- package/es-modules/Stock/Indicators/CMO/CMOIndicator.js +15 -1
- package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +7 -2
- package/es-modules/Stock/Indicators/DEMA/DEMAIndicator.js +25 -0
- package/es-modules/Stock/Indicators/DMI/DMIIndicator.js +5 -0
- package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +19 -8
- package/es-modules/Stock/Indicators/EMA/EMAIndicator.js +10 -0
- package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +34 -15
- package/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +25 -0
- package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +12 -1
- package/es-modules/Stock/Indicators/LinearRegression/{LinearRegression.js → LinearRegressionIndicator.js} +11 -1
- package/es-modules/Stock/Indicators/LinearRegressionAngle/{LinearRegressionAngle.js → LinearRegressionAngleIndicator.js} +12 -7
- package/es-modules/Stock/Indicators/LinearRegressionIntercept/{LinearRegressionIntercept.js → LinearRegressionInterceptIndicator.js} +11 -1
- package/es-modules/Stock/Indicators/LinearRegressionSlopes/{LinearRegressionSlopes.js → LinearRegressionSlopesIndicator.js} +11 -1
- package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +21 -10
- package/es-modules/Stock/Indicators/MFI/MFIIndicator.js +23 -10
- package/es-modules/Stock/Indicators/Momentum/MomentumIndicator.js +30 -2
- package/es-modules/Stock/Indicators/NATR/NATRIndicator.js +16 -1
- package/es-modules/Stock/Indicators/OBV/OBVIndicator.js +10 -0
- package/es-modules/Stock/Indicators/PC/PCIndicator.js +13 -8
- package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +14 -4
- package/es-modules/Stock/Indicators/PSAR/PSARIndicator.js +16 -3
- package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +16 -6
- package/es-modules/Stock/Indicators/PivotPoints/PivotPointsPoint.js +16 -12
- package/es-modules/Stock/Indicators/PriceEnvelopes/PriceEnvelopesIndicator.js +25 -0
- package/es-modules/Stock/Indicators/ROC/ROCIndicator.js +15 -2
- package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +20 -2
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
- package/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +25 -0
- package/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +15 -0
- package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +17 -3
- package/es-modules/Stock/Indicators/TRIX/TRIXIndicator.js +25 -0
- package/es-modules/Stock/Indicators/TrendLine/TrendLineIndicator.js +14 -4
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +32 -3
- package/es-modules/Stock/Indicators/VBP/VBPPoint.js +6 -6
- package/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +11 -1
- package/es-modules/Stock/Indicators/WMA/WMAIndicator.js +30 -2
- package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +10 -0
- package/es-modules/Stock/Indicators/Zigzag/ZigzagIndicator.js +11 -1
- package/es-modules/Stock/StockToolbar.js +568 -0
- package/es-modules/Stock/StockTools.js +256 -0
- package/es-modules/Stock/StockToolsBindings.js +114 -629
- package/es-modules/Stock/StockToolsDefaults.js +1190 -0
- package/es-modules/Stock/StockToolsGui.js +150 -1771
- package/es-modules/Stock/StockToolsUtilities.js +423 -0
- package/es-modules/masters/highcharts-3d.src.js +5 -4
- package/es-modules/masters/highcharts-gantt.src.js +1 -1
- package/es-modules/masters/highcharts-more.src.js +4 -3
- package/es-modules/masters/highcharts.src.js +5 -2
- package/es-modules/masters/highmaps.src.js +1 -1
- package/es-modules/masters/highstock.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/masters/indicators/ao.src.js +1 -1
- package/es-modules/masters/indicators/apo.src.js +1 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/es-modules/masters/indicators/aroon.src.js +1 -1
- package/es-modules/masters/indicators/atr.src.js +1 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/es-modules/masters/indicators/cci.src.js +1 -1
- package/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/es-modules/masters/indicators/cmf.src.js +1 -1
- package/es-modules/masters/indicators/cmo.src.js +1 -1
- package/es-modules/masters/indicators/dema.src.js +1 -1
- package/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/es-modules/masters/indicators/dmi.src.js +1 -1
- package/es-modules/masters/indicators/dpo.src.js +1 -1
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/masters/indicators/indicators-all.src.js +5 -7
- package/es-modules/masters/indicators/indicators.src.js +1 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/es-modules/masters/indicators/klinger.src.js +1 -1
- package/es-modules/masters/indicators/macd.src.js +1 -1
- package/es-modules/masters/indicators/mfi.src.js +1 -1
- package/es-modules/masters/indicators/momentum.src.js +1 -1
- package/es-modules/masters/indicators/natr.src.js +1 -1
- package/es-modules/masters/indicators/obv.src.js +1 -1
- package/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/es-modules/masters/indicators/ppo.src.js +1 -1
- package/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/es-modules/masters/indicators/psar.src.js +1 -1
- package/es-modules/masters/indicators/regressions.src.js +5 -5
- package/es-modules/masters/indicators/roc.src.js +1 -1
- package/es-modules/masters/indicators/rsi.src.js +1 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/es-modules/masters/indicators/tema.src.js +1 -1
- package/es-modules/masters/indicators/trendline.src.js +1 -1
- package/es-modules/masters/indicators/trix.src.js +1 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/es-modules/masters/indicators/vwap.src.js +1 -1
- package/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/es-modules/masters/indicators/wma.src.js +1 -1
- package/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/es-modules/masters/modules/accessibility.src.js +1 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +6 -4
- package/es-modules/masters/modules/annotations.src.js +6 -4
- package/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/es-modules/masters/modules/boost.src.js +6 -2
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/bullet.src.js +1 -1
- package/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/es-modules/masters/modules/cylinder.src.js +1 -1
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/es-modules/masters/modules/debugger.src.js +5 -3
- package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/es-modules/masters/modules/dotplot.src.js +1 -1
- package/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/es-modules/masters/modules/drilldown.src.js +1 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +5 -2
- package/es-modules/masters/modules/exporting.src.js +1 -2
- package/es-modules/masters/modules/full-screen.src.js +6 -2
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +3 -2
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +2 -2
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/networkgraph.src.js +5 -2
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/offline-exporting.src.js +1 -1
- package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
- package/es-modules/masters/modules/oldie.src.js +1 -1
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
- package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/es-modules/masters/modules/pareto.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/es-modules/masters/modules/sankey.src.js +1 -1
- package/es-modules/masters/modules/series-label.src.js +1 -1
- package/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/es-modules/masters/modules/sonification.src.js +1 -1
- package/es-modules/masters/modules/static-scale.src.js +1 -1
- package/es-modules/masters/modules/stock-tools.src.js +10 -3
- package/es-modules/masters/modules/stock.src.js +1 -1
- package/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/es-modules/masters/modules/sunburst.src.js +1 -1
- package/es-modules/masters/modules/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +2 -2
- package/es-modules/masters/modules/treemap.src.js +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +5 -2
- package/es-modules/masters/themes/avocado.src.js +1 -1
- package/es-modules/masters/themes/brand-dark.src.js +1 -1
- package/es-modules/masters/themes/brand-light.src.js +1 -1
- package/es-modules/masters/themes/dark-blue.src.js +1 -1
- package/es-modules/masters/themes/dark-green.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/gray.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/grid.src.js +1 -1
- package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
- package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/skies.src.js +1 -1
- package/es-modules/masters/themes/sunset.src.js +1 -1
- package/highcharts-3d.js +98 -99
- package/highcharts-3d.js.map +1 -1
- package/highcharts-3d.src.js +232 -211
- package/highcharts-gantt.js +808 -809
- package/highcharts-gantt.js.map +1 -1
- package/highcharts-gantt.src.js +2308 -2136
- package/highcharts-more.d.ts +5 -8
- package/highcharts-more.js +201 -194
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.d.ts +5 -8
- package/highcharts-more.src.js +3671 -3275
- package/highcharts.d.ts +1400 -885
- package/highcharts.js +593 -595
- package/highcharts.js.map +1 -1
- package/highcharts.src.d.ts +1400 -885
- package/highcharts.src.js +847 -716
- package/highmaps.js +762 -763
- package/highmaps.js.map +1 -1
- package/highmaps.src.js +1288 -1129
- package/highstock.js +796 -798
- package/highstock.js.map +1 -1
- package/highstock.src.js +953 -762
- package/indicators/acceleration-bands.js +1 -1
- package/indicators/acceleration-bands.js.map +1 -1
- package/indicators/acceleration-bands.src.js +11 -3
- package/indicators/accumulation-distribution.js +1 -1
- package/indicators/accumulation-distribution.js.map +1 -1
- package/indicators/accumulation-distribution.src.js +6 -1
- package/indicators/ao.js +6 -6
- package/indicators/ao.js.map +1 -1
- package/indicators/ao.src.js +23 -14
- package/indicators/apo.js +1 -1
- package/indicators/apo.js.map +1 -1
- package/indicators/apo.src.js +6 -1
- package/indicators/aroon-oscillator.js +10 -10
- package/indicators/aroon-oscillator.js.map +1 -1
- package/indicators/aroon-oscillator.src.js +7 -3
- package/indicators/aroon.js +1 -1
- package/indicators/aroon.js.map +1 -1
- package/indicators/aroon.src.js +16 -3
- package/indicators/atr.js +1 -1
- package/indicators/atr.js.map +1 -1
- package/indicators/atr.src.js +17 -4
- package/indicators/bollinger-bands.js +1 -1
- package/indicators/bollinger-bands.js.map +1 -1
- package/indicators/bollinger-bands.src.js +6 -2
- package/indicators/cci.js +1 -1
- package/indicators/cci.js.map +1 -1
- package/indicators/cci.src.js +17 -4
- package/indicators/chaikin.js +8 -8
- package/indicators/chaikin.js.map +1 -1
- package/indicators/chaikin.src.js +13 -5
- package/indicators/cmf.js +1 -1
- package/indicators/cmf.js.map +1 -1
- package/indicators/cmf.src.js +21 -1
- package/indicators/cmo.js +1 -1
- package/indicators/cmo.js.map +1 -1
- package/indicators/cmo.src.js +16 -2
- package/indicators/dema.js +1 -1
- package/indicators/dema.js.map +1 -1
- package/indicators/dema.src.js +26 -1
- package/indicators/disparity-index.js +1 -1
- package/indicators/disparity-index.src.js +1 -1
- package/indicators/dmi.js +1 -1
- package/indicators/dmi.js.map +1 -1
- package/indicators/dmi.src.js +6 -1
- package/indicators/dpo.js +1 -1
- package/indicators/dpo.js.map +1 -1
- package/indicators/dpo.src.js +20 -9
- package/indicators/ichimoku-kinko-hyo.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js.map +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +35 -16
- package/indicators/indicators-all.js +199 -199
- package/indicators/indicators-all.js.map +1 -1
- package/indicators/indicators-all.src.js +754 -162
- package/indicators/indicators.js +1 -1
- package/indicators/indicators.js.map +1 -1
- package/indicators/indicators.src.js +12 -2
- package/indicators/keltner-channels.js +1 -1
- package/indicators/keltner-channels.js.map +1 -1
- package/indicators/keltner-channels.src.js +26 -1
- package/indicators/klinger.js +12 -12
- package/indicators/klinger.js.map +1 -1
- package/indicators/klinger.src.js +13 -4
- package/indicators/macd.js +1 -1
- package/indicators/macd.js.map +1 -1
- package/indicators/macd.src.js +22 -13
- package/indicators/mfi.js +1 -1
- package/indicators/mfi.js.map +1 -1
- package/indicators/mfi.src.js +24 -11
- package/indicators/momentum.js +1 -1
- package/indicators/momentum.js.map +1 -1
- package/indicators/momentum.src.js +31 -3
- package/indicators/natr.js +1 -1
- package/indicators/natr.js.map +1 -1
- package/indicators/natr.src.js +17 -3
- package/indicators/obv.js +1 -1
- package/indicators/obv.js.map +1 -1
- package/indicators/obv.src.js +11 -1
- package/indicators/pivot-points.js +1 -1
- package/indicators/pivot-points.js.map +1 -1
- package/indicators/pivot-points.src.js +32 -19
- package/indicators/ppo.js +1 -1
- package/indicators/ppo.js.map +1 -1
- package/indicators/ppo.src.js +15 -5
- package/indicators/price-channel.js +1 -1
- package/indicators/price-channel.js.map +1 -1
- package/indicators/price-channel.src.js +14 -9
- package/indicators/price-envelopes.js +1 -1
- package/indicators/price-envelopes.js.map +1 -1
- package/indicators/price-envelopes.src.js +26 -1
- package/indicators/psar.js +1 -1
- package/indicators/psar.js.map +1 -1
- package/indicators/psar.src.js +17 -4
- package/indicators/regressions.js +12 -11
- package/indicators/regressions.js.map +1 -1
- package/indicators/regressions.src.js +50 -15
- package/indicators/roc.js +1 -1
- package/indicators/roc.js.map +1 -1
- package/indicators/roc.src.js +16 -3
- package/indicators/rsi.js +1 -1
- package/indicators/rsi.js.map +1 -1
- package/indicators/rsi.src.js +21 -3
- package/indicators/slow-stochastic.js +1 -1
- package/indicators/slow-stochastic.js.map +1 -1
- package/indicators/slow-stochastic.src.js +26 -1
- package/indicators/stochastic.js +1 -1
- package/indicators/stochastic.js.map +1 -1
- package/indicators/stochastic.src.js +16 -1
- package/indicators/supertrend.js +7 -7
- package/indicators/supertrend.js.map +1 -1
- package/indicators/supertrend.src.js +18 -6
- package/indicators/tema.js +1 -1
- package/indicators/tema.src.js +1 -1
- package/indicators/trendline.js +1 -1
- package/indicators/trendline.js.map +1 -1
- package/indicators/trendline.src.js +15 -5
- package/indicators/trix.js +1 -1
- package/indicators/trix.js.map +1 -1
- package/indicators/trix.src.js +26 -1
- package/indicators/volume-by-price.js +17 -17
- package/indicators/volume-by-price.js.map +1 -1
- package/indicators/volume-by-price.src.js +38 -10
- package/indicators/vwap.js +1 -1
- package/indicators/vwap.js.map +1 -1
- package/indicators/vwap.src.js +12 -2
- package/indicators/williams-r.js +1 -1
- package/indicators/williams-r.js.map +1 -1
- package/indicators/williams-r.src.js +11 -1
- package/indicators/wma.js +1 -1
- package/indicators/wma.js.map +1 -1
- package/indicators/wma.src.js +31 -3
- package/indicators/zigzag.js +1 -1
- package/indicators/zigzag.js.map +1 -1
- package/indicators/zigzag.src.js +12 -2
- package/modules/accessibility.js +183 -182
- package/modules/accessibility.js.map +1 -1
- package/modules/accessibility.src.js +559 -554
- package/modules/annotations-advanced.d.ts +1 -1
- package/modules/annotations-advanced.js +193 -192
- package/modules/annotations-advanced.js.map +1 -1
- package/modules/annotations-advanced.src.d.ts +1 -1
- package/modules/annotations-advanced.src.js +9263 -8654
- package/modules/annotations.d.ts +1 -1
- package/modules/annotations.js +128 -126
- package/modules/annotations.js.map +1 -1
- package/modules/annotations.src.d.ts +1 -1
- package/modules/annotations.src.js +6699 -6063
- package/modules/arc-diagram.js +1 -1
- package/modules/arc-diagram.src.js +1 -1
- package/modules/arrow-symbols.js +1 -1
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.d.ts +19 -0
- package/modules/boost-canvas.js +81 -16
- package/modules/boost-canvas.js.map +1 -1
- package/modules/boost-canvas.src.d.ts +19 -0
- package/modules/boost-canvas.src.js +3334 -50
- package/modules/boost.d.ts +8 -26
- package/modules/boost.js +84 -77
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.d.ts +8 -26
- package/modules/boost.src.js +2423 -1888
- package/modules/broken-axis.js +2 -2
- package/modules/broken-axis.js.map +1 -1
- package/modules/broken-axis.src.js +2 -2
- package/modules/bullet.js +1 -1
- package/modules/bullet.src.js +1 -1
- package/modules/coloraxis.js +1 -1
- package/modules/coloraxis.js.map +1 -1
- package/modules/coloraxis.src.js +5 -1
- package/modules/current-date-indicator.js +1 -1
- package/modules/current-date-indicator.src.js +1 -1
- package/modules/cylinder.js +9 -9
- package/modules/cylinder.js.map +1 -1
- package/modules/cylinder.src.js +2 -2
- package/modules/data.js +1 -1
- package/modules/data.src.js +1 -1
- package/modules/datagrouping.d.ts +22 -0
- package/modules/datagrouping.js +4 -4
- package/modules/datagrouping.js.map +1 -1
- package/modules/datagrouping.src.d.ts +22 -0
- package/modules/datagrouping.src.js +66 -28
- package/modules/debugger.js +6 -5
- package/modules/debugger.js.map +1 -1
- package/modules/debugger.src.js +81 -40
- package/modules/dependency-wheel.js +12 -12
- package/modules/dependency-wheel.js.map +1 -1
- package/modules/dependency-wheel.src.js +41 -14
- package/modules/dotplot.js +1 -1
- package/modules/dotplot.src.js +1 -1
- package/modules/drag-panes.js +1 -1
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.js +5 -5
- package/modules/draggable-points.js.map +1 -1
- package/modules/draggable-points.src.js +5 -4
- package/modules/drilldown.d.ts +0 -10
- package/modules/drilldown.js +29 -29
- package/modules/drilldown.js.map +1 -1
- package/modules/drilldown.src.d.ts +0 -10
- package/modules/drilldown.src.js +12 -9
- package/modules/dumbbell.js +1 -1
- package/modules/dumbbell.src.js +1 -1
- package/modules/export-data.js +25 -24
- package/modules/export-data.js.map +1 -1
- package/modules/export-data.src.js +607 -499
- package/modules/exporting.js +38 -38
- package/modules/exporting.js.map +1 -1
- package/modules/exporting.src.js +559 -507
- package/modules/full-screen.js +8 -8
- package/modules/full-screen.js.map +1 -1
- package/modules/full-screen.src.js +76 -26
- package/modules/funnel.js +1 -1
- package/modules/funnel.src.js +1 -1
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.js.map +1 -1
- package/modules/funnel3d.src.js +2 -2
- package/modules/gantt.js +217 -216
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +1481 -1440
- package/modules/grid-axis.js +1 -1
- package/modules/grid-axis.src.js +1 -1
- package/modules/heatmap.js +1 -1
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +10 -2
- package/modules/heikinashi.js +1 -1
- package/modules/heikinashi.src.js +1 -1
- package/modules/histogram-bellcurve.js +1 -1
- package/modules/histogram-bellcurve.src.js +1 -1
- package/modules/hollowcandlestick.js +1 -1
- package/modules/hollowcandlestick.src.js +1 -1
- package/modules/item-series.js +1 -1
- package/modules/item-series.src.js +1 -1
- package/modules/lollipop.js +6 -6
- package/modules/lollipop.js.map +1 -1
- package/modules/lollipop.src.js +37 -22
- package/modules/map.d.ts +3 -3
- package/modules/map.js +171 -171
- package/modules/map.js.map +1 -1
- package/modules/map.src.d.ts +3 -3
- package/modules/map.src.js +442 -414
- package/modules/marker-clusters.js +1 -1
- package/modules/marker-clusters.js.map +1 -1
- package/modules/marker-clusters.src.js +3 -1
- package/modules/networkgraph.js +55 -50
- package/modules/networkgraph.js.map +1 -1
- package/modules/networkgraph.src.js +2259 -1938
- package/modules/no-data-to-display.js +1 -1
- package/modules/no-data-to-display.src.js +1 -1
- package/modules/offline-exporting.js +2 -2
- package/modules/offline-exporting.src.js +2 -2
- package/modules/oldie-polyfills.js +1 -1
- package/modules/oldie-polyfills.src.js +1 -1
- package/modules/oldie.js +2 -2
- package/modules/oldie.src.js +2 -2
- package/modules/organization.js +15 -15
- package/modules/organization.js.map +1 -1
- package/modules/organization.src.js +10 -2
- package/modules/overlapping-datalabels.js +1 -1
- package/modules/overlapping-datalabels.src.js +1 -1
- package/modules/parallel-coordinates.js +11 -11
- package/modules/parallel-coordinates.js.map +1 -1
- package/modules/parallel-coordinates.src.js +13 -8
- package/modules/pareto.js +1 -1
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.js +1 -1
- package/modules/pathfinder.src.js +1 -1
- package/modules/pattern-fill.js +1 -1
- package/modules/pattern-fill.src.js +1 -1
- package/modules/price-indicator.js +1 -1
- package/modules/price-indicator.src.js +1 -1
- package/modules/pyramid3d.js +1 -1
- package/modules/pyramid3d.src.js +1 -1
- package/modules/sankey.js +1 -1
- package/modules/sankey.js.map +1 -1
- package/modules/sankey.src.js +14 -2
- package/modules/series-label.js +5 -5
- package/modules/series-label.js.map +1 -1
- package/modules/series-label.src.js +3 -3
- package/modules/series-on-point.js +1 -1
- package/modules/series-on-point.js.map +1 -1
- package/modules/series-on-point.src.js +6 -2
- package/modules/solid-gauge.js +1 -1
- package/modules/solid-gauge.src.js +2 -2
- package/modules/sonification.d.ts +2 -2
- package/modules/sonification.js +1 -1
- package/modules/sonification.src.d.ts +2 -2
- package/modules/sonification.src.js +2 -2
- package/modules/static-scale.js +1 -1
- package/modules/static-scale.src.js +1 -1
- package/modules/stock-tools.d.ts +1 -23
- package/modules/stock-tools.js +109 -179
- package/modules/stock-tools.js.map +1 -1
- package/modules/stock-tools.src.d.ts +1 -23
- package/modules/stock-tools.src.js +2605 -6335
- package/modules/stock.d.ts +8 -0
- package/modules/stock.js +105 -105
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.d.ts +8 -0
- package/modules/stock.src.js +105 -45
- package/modules/streamgraph.js +1 -1
- package/modules/streamgraph.src.js +1 -1
- package/modules/sunburst.js +72 -72
- package/modules/sunburst.js.map +1 -1
- package/modules/sunburst.src.js +38 -12
- package/modules/tilemap.js +1 -1
- package/modules/tilemap.src.js +1 -1
- package/modules/timeline.js +1 -1
- package/modules/timeline.js.map +1 -1
- package/modules/timeline.src.js +3 -1
- package/modules/treegrid.js +57 -57
- package/modules/treegrid.js.map +1 -1
- package/modules/treegrid.src.js +1022 -1014
- package/modules/treemap.js +1 -1
- package/modules/treemap.js.map +1 -1
- package/modules/treemap.src.js +8 -4
- package/modules/variable-pie.js +1 -1
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.js +1 -1
- package/modules/variwide.src.js +1 -1
- package/modules/vector.js +2 -2
- package/modules/vector.js.map +1 -1
- package/modules/vector.src.js +3 -5
- package/modules/venn.js +1 -1
- package/modules/venn.src.js +5 -5
- package/modules/windbarb.js +1 -1
- package/modules/windbarb.src.js +1 -1
- package/modules/wordcloud.js +1 -1
- package/modules/wordcloud.src.js +3 -3
- package/modules/xrange.js +17 -17
- package/modules/xrange.js.map +1 -1
- package/modules/xrange.src.js +411 -397
- package/package.json +1 -1
- package/themes/avocado.js +1 -1
- package/themes/avocado.src.js +1 -1
- package/themes/brand-dark.js +1 -1
- package/themes/brand-dark.src.js +1 -1
- package/themes/brand-light.js +1 -1
- package/themes/brand-light.src.js +1 -1
- package/themes/dark-blue.js +1 -1
- package/themes/dark-blue.src.js +1 -1
- package/themes/dark-green.js +1 -1
- package/themes/dark-green.src.js +1 -1
- package/themes/dark-unica.js +1 -1
- package/themes/dark-unica.src.js +1 -1
- package/themes/gray.js +1 -1
- package/themes/gray.src.js +1 -1
- package/themes/grid-light.js +1 -1
- package/themes/grid-light.src.js +1 -1
- package/themes/grid.js +1 -1
- package/themes/grid.src.js +1 -1
- package/themes/high-contrast-dark.js +1 -1
- package/themes/high-contrast-dark.src.js +1 -1
- package/themes/high-contrast-light.js +1 -1
- package/themes/high-contrast-light.src.js +1 -1
- package/themes/sand-signika.js +1 -1
- package/themes/sand-signika.src.js +1 -1
- package/themes/skies.js +1 -1
- package/themes/skies.src.js +1 -1
- package/themes/sunset.js +1 -1
- package/themes/sunset.src.js +1 -1
- package/es-modules/Core/Axis/StackingAxis.js +0 -215
- package/es-modules/Core/Axis/TreeGridAxis.js +0 -720
- package/es-modules/Core/Axis/TreeGridTick.js +0 -317
- package/es-modules/Extensions/Annotations/AnnotationsDefaults.js +0 -0
- package/es-modules/Extensions/Annotations/Mixins/MarkerMixin.js +0 -179
- package/es-modules/Extensions/Annotations/Popup.js +0 -1123
- package/es-modules/Extensions/Boost/BoostAttach.js +0 -154
- package/es-modules/Extensions/Boost/BoostInit.js +0 -324
- package/es-modules/Extensions/Boost/BoostOptions.js +0 -245
- package/es-modules/Extensions/Boost/BoostOverrides.js +0 -386
- package/es-modules/Extensions/Boost/BoostUtils.js +0 -255
- package/es-modules/Extensions/Boost/WGLVBuffer.js +0 -153
- package/es-modules/Extensions/Stacking.js +0 -517
- package/es-modules/Series/Networkgraph/DraggableNodes.js +0 -132
- package/es-modules/Series/Networkgraph/Integrations.js +0 -348
- package/es-modules/Series/Networkgraph/Networkgraph.js +0 -1180
- package/es-modules/Series/XRange/XRangeComposition.js +0 -49
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highstock JS v10.2.
|
|
2
|
+
* @license Highstock JS v10.2.1 (2022-08-29)
|
|
3
3
|
*
|
|
4
4
|
* All technical indicators for Highcharts Stock
|
|
5
5
|
*
|
|
@@ -458,7 +458,7 @@
|
|
|
458
458
|
* @requires stock/indicators/indicators
|
|
459
459
|
* @apioption series.sma
|
|
460
460
|
*/
|
|
461
|
-
''; // adds doclet above to the transpiled file
|
|
461
|
+
(''); // adds doclet above to the transpiled file
|
|
462
462
|
|
|
463
463
|
return SMAIndicator;
|
|
464
464
|
});
|
|
@@ -507,6 +507,11 @@
|
|
|
507
507
|
var EMAIndicator = /** @class */ (function (_super) {
|
|
508
508
|
__extends(EMAIndicator, _super);
|
|
509
509
|
function EMAIndicator() {
|
|
510
|
+
/* *
|
|
511
|
+
*
|
|
512
|
+
* Static Properties
|
|
513
|
+
*
|
|
514
|
+
* */
|
|
510
515
|
var _this = _super !== null && _super.apply(this,
|
|
511
516
|
arguments) || this;
|
|
512
517
|
/* *
|
|
@@ -624,6 +629,11 @@
|
|
|
624
629
|
* Default Export
|
|
625
630
|
*
|
|
626
631
|
* */
|
|
632
|
+
/* *
|
|
633
|
+
*
|
|
634
|
+
* API Options
|
|
635
|
+
*
|
|
636
|
+
* */
|
|
627
637
|
/**
|
|
628
638
|
* A `EMA` series. If the [type](#series.ema.type) option is not
|
|
629
639
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -666,6 +676,11 @@
|
|
|
666
676
|
var error = U.error,
|
|
667
677
|
extend = U.extend,
|
|
668
678
|
merge = U.merge;
|
|
679
|
+
/* *
|
|
680
|
+
*
|
|
681
|
+
* Class
|
|
682
|
+
*
|
|
683
|
+
* */
|
|
669
684
|
/**
|
|
670
685
|
* The AD series type.
|
|
671
686
|
*
|
|
@@ -847,9 +862,8 @@
|
|
|
847
862
|
};
|
|
848
863
|
})();
|
|
849
864
|
var noop = H.noop;
|
|
850
|
-
var
|
|
851
|
-
|
|
852
|
-
ColumnSeries = _a.column;
|
|
865
|
+
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
866
|
+
var columnProto = SeriesRegistry.seriesTypes.column.prototype;
|
|
853
867
|
var extend = U.extend,
|
|
854
868
|
merge = U.merge,
|
|
855
869
|
correctFloat = U.correctFloat,
|
|
@@ -871,23 +885,28 @@
|
|
|
871
885
|
var AOIndicator = /** @class */ (function (_super) {
|
|
872
886
|
__extends(AOIndicator, _super);
|
|
873
887
|
function AOIndicator() {
|
|
888
|
+
/* *
|
|
889
|
+
*
|
|
890
|
+
* Static Properties
|
|
891
|
+
*
|
|
892
|
+
* */
|
|
874
893
|
var _this = _super !== null && _super.apply(this,
|
|
875
894
|
arguments) || this;
|
|
876
|
-
|
|
895
|
+
/* *
|
|
877
896
|
*
|
|
878
|
-
*
|
|
897
|
+
* Properties
|
|
879
898
|
*
|
|
880
|
-
*/
|
|
899
|
+
* */
|
|
881
900
|
_this.data = void 0;
|
|
882
901
|
_this.options = void 0;
|
|
883
902
|
_this.points = void 0;
|
|
884
903
|
return _this;
|
|
885
904
|
}
|
|
886
|
-
|
|
905
|
+
/* *
|
|
887
906
|
*
|
|
888
|
-
*
|
|
907
|
+
* Functions
|
|
889
908
|
*
|
|
890
|
-
*/
|
|
909
|
+
* */
|
|
891
910
|
AOIndicator.prototype.drawGraph = function () {
|
|
892
911
|
var indicator = this,
|
|
893
912
|
options = indicator.options,
|
|
@@ -1036,10 +1055,10 @@
|
|
|
1036
1055
|
nameComponents: false,
|
|
1037
1056
|
// Columns support:
|
|
1038
1057
|
markerAttribs: noop,
|
|
1039
|
-
getColumnMetrics:
|
|
1040
|
-
crispCol:
|
|
1041
|
-
translate:
|
|
1042
|
-
drawPoints:
|
|
1058
|
+
getColumnMetrics: columnProto.getColumnMetrics,
|
|
1059
|
+
crispCol: columnProto.crispCol,
|
|
1060
|
+
translate: columnProto.translate,
|
|
1061
|
+
drawPoints: columnProto.drawPoints
|
|
1043
1062
|
});
|
|
1044
1063
|
SeriesRegistry.registerSeriesType('ao', AOIndicator);
|
|
1045
1064
|
/* *
|
|
@@ -1047,6 +1066,11 @@
|
|
|
1047
1066
|
* Default Export
|
|
1048
1067
|
*
|
|
1049
1068
|
* */
|
|
1069
|
+
/* *
|
|
1070
|
+
*
|
|
1071
|
+
* API Options
|
|
1072
|
+
*
|
|
1073
|
+
* */
|
|
1050
1074
|
/**
|
|
1051
1075
|
* An `AO` series. If the [type](#series.ao.type)
|
|
1052
1076
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -1395,7 +1419,11 @@
|
|
|
1395
1419
|
var extend = U.extend,
|
|
1396
1420
|
merge = U.merge,
|
|
1397
1421
|
pick = U.pick;
|
|
1398
|
-
/*
|
|
1422
|
+
/* *
|
|
1423
|
+
*
|
|
1424
|
+
* Functions
|
|
1425
|
+
*
|
|
1426
|
+
* */
|
|
1399
1427
|
// Utils
|
|
1400
1428
|
// Index of element with extreme value from array (min or max)
|
|
1401
1429
|
/**
|
|
@@ -1414,7 +1442,6 @@
|
|
|
1414
1442
|
}
|
|
1415
1443
|
return valueIndex;
|
|
1416
1444
|
}
|
|
1417
|
-
/* eslint-enable valid-jsdoc */
|
|
1418
1445
|
/* *
|
|
1419
1446
|
*
|
|
1420
1447
|
* Class
|
|
@@ -1432,6 +1459,11 @@
|
|
|
1432
1459
|
var AroonIndicator = /** @class */ (function (_super) {
|
|
1433
1460
|
__extends(AroonIndicator, _super);
|
|
1434
1461
|
function AroonIndicator() {
|
|
1462
|
+
/* *
|
|
1463
|
+
*
|
|
1464
|
+
* Static Properties
|
|
1465
|
+
*
|
|
1466
|
+
* */
|
|
1435
1467
|
var _this = _super !== null && _super.apply(this,
|
|
1436
1468
|
arguments) || this;
|
|
1437
1469
|
/* *
|
|
@@ -1566,6 +1598,11 @@
|
|
|
1566
1598
|
* Default Export
|
|
1567
1599
|
*
|
|
1568
1600
|
* */
|
|
1601
|
+
/* *
|
|
1602
|
+
*
|
|
1603
|
+
* API Options
|
|
1604
|
+
*
|
|
1605
|
+
* */
|
|
1569
1606
|
/**
|
|
1570
1607
|
* A Aroon indicator. If the [type](#series.aroon.type) option is not
|
|
1571
1608
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -1611,7 +1648,6 @@
|
|
|
1611
1648
|
var AroonIndicator = SeriesRegistry.seriesTypes.aroon;
|
|
1612
1649
|
var extend = U.extend,
|
|
1613
1650
|
merge = U.merge;
|
|
1614
|
-
var AROON = SeriesRegistry.seriesTypes.aroon;
|
|
1615
1651
|
/* *
|
|
1616
1652
|
*
|
|
1617
1653
|
* Class
|
|
@@ -1661,7 +1697,7 @@
|
|
|
1661
1697
|
aroonDown,
|
|
1662
1698
|
oscillator,
|
|
1663
1699
|
i;
|
|
1664
|
-
aroon =
|
|
1700
|
+
aroon = _super.prototype.getValues.call(this, series, params);
|
|
1665
1701
|
for (i = 0; i < aroon.yData.length; i++) {
|
|
1666
1702
|
aroonUp = aroon.yData[i][0];
|
|
1667
1703
|
aroonDown = aroon.yData[i][1];
|
|
@@ -1716,6 +1752,11 @@
|
|
|
1716
1752
|
* Default Export
|
|
1717
1753
|
*
|
|
1718
1754
|
* */
|
|
1755
|
+
/* *
|
|
1756
|
+
*
|
|
1757
|
+
* API Options
|
|
1758
|
+
*
|
|
1759
|
+
* */
|
|
1719
1760
|
/**
|
|
1720
1761
|
* An `Aroon Oscillator` series. If the [type](#series.aroonoscillator.type)
|
|
1721
1762
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -1763,7 +1804,11 @@
|
|
|
1763
1804
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
1764
1805
|
var isArray = U.isArray,
|
|
1765
1806
|
merge = U.merge;
|
|
1766
|
-
/*
|
|
1807
|
+
/* *
|
|
1808
|
+
*
|
|
1809
|
+
* Functions
|
|
1810
|
+
*
|
|
1811
|
+
* */
|
|
1767
1812
|
// Utils:
|
|
1768
1813
|
/**
|
|
1769
1814
|
* @private
|
|
@@ -1791,10 +1836,9 @@
|
|
|
1791
1836
|
y = (((prevATR * (period - 1)) + TR) / period);
|
|
1792
1837
|
return [x, y];
|
|
1793
1838
|
}
|
|
1794
|
-
/* eslint-enable valid-jsdoc */
|
|
1795
1839
|
/* *
|
|
1796
1840
|
*
|
|
1797
|
-
*
|
|
1841
|
+
* Class
|
|
1798
1842
|
*
|
|
1799
1843
|
* */
|
|
1800
1844
|
/**
|
|
@@ -1809,6 +1853,11 @@
|
|
|
1809
1853
|
var ATRIndicator = /** @class */ (function (_super) {
|
|
1810
1854
|
__extends(ATRIndicator, _super);
|
|
1811
1855
|
function ATRIndicator() {
|
|
1856
|
+
/* *
|
|
1857
|
+
*
|
|
1858
|
+
* Static Properties
|
|
1859
|
+
*
|
|
1860
|
+
* */
|
|
1812
1861
|
var _this = _super !== null && _super.apply(this,
|
|
1813
1862
|
arguments) || this;
|
|
1814
1863
|
/* *
|
|
@@ -1905,6 +1954,11 @@
|
|
|
1905
1954
|
* Default Export
|
|
1906
1955
|
*
|
|
1907
1956
|
* */
|
|
1957
|
+
/* *
|
|
1958
|
+
*
|
|
1959
|
+
* API Options
|
|
1960
|
+
*
|
|
1961
|
+
* */
|
|
1908
1962
|
/**
|
|
1909
1963
|
* A `ATR` series. If the [type](#series.atr.type) option is not specified, it
|
|
1910
1964
|
* is inherited from [chart.type](#chart.type).
|
|
@@ -1954,7 +2008,6 @@
|
|
|
1954
2008
|
* Functions
|
|
1955
2009
|
*
|
|
1956
2010
|
* */
|
|
1957
|
-
/* eslint-disable valid-jsdoc */
|
|
1958
2011
|
// Utils:
|
|
1959
2012
|
/**
|
|
1960
2013
|
* @private
|
|
@@ -2170,6 +2223,11 @@
|
|
|
2170
2223
|
* Default Export
|
|
2171
2224
|
*
|
|
2172
2225
|
* */
|
|
2226
|
+
/* *
|
|
2227
|
+
*
|
|
2228
|
+
* API Options
|
|
2229
|
+
*
|
|
2230
|
+
* */
|
|
2173
2231
|
/**
|
|
2174
2232
|
* A bollinger bands indicator. If the [type](#series.bb.type) option is not
|
|
2175
2233
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -2212,7 +2270,11 @@
|
|
|
2212
2270
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
2213
2271
|
var isArray = U.isArray,
|
|
2214
2272
|
merge = U.merge;
|
|
2215
|
-
/*
|
|
2273
|
+
/* *
|
|
2274
|
+
*
|
|
2275
|
+
* Functions
|
|
2276
|
+
*
|
|
2277
|
+
* */
|
|
2216
2278
|
// Utils:
|
|
2217
2279
|
/**
|
|
2218
2280
|
* @private
|
|
@@ -2234,10 +2296,9 @@
|
|
|
2234
2296
|
}
|
|
2235
2297
|
return sum;
|
|
2236
2298
|
}
|
|
2237
|
-
/* eslint-enable valid-jsdoc */
|
|
2238
2299
|
/* *
|
|
2239
2300
|
*
|
|
2240
|
-
*
|
|
2301
|
+
* Class
|
|
2241
2302
|
*
|
|
2242
2303
|
* */
|
|
2243
2304
|
/**
|
|
@@ -2252,6 +2313,11 @@
|
|
|
2252
2313
|
var CCIIndicator = /** @class */ (function (_super) {
|
|
2253
2314
|
__extends(CCIIndicator, _super);
|
|
2254
2315
|
function CCIIndicator() {
|
|
2316
|
+
/* *
|
|
2317
|
+
*
|
|
2318
|
+
* Static Properties
|
|
2319
|
+
*
|
|
2320
|
+
* */
|
|
2255
2321
|
var _this = _super !== null && _super.apply(this,
|
|
2256
2322
|
arguments) || this;
|
|
2257
2323
|
/* *
|
|
@@ -2347,6 +2413,11 @@
|
|
|
2347
2413
|
* Default Export
|
|
2348
2414
|
*
|
|
2349
2415
|
* */
|
|
2416
|
+
/* *
|
|
2417
|
+
*
|
|
2418
|
+
* API Options
|
|
2419
|
+
*
|
|
2420
|
+
* */
|
|
2350
2421
|
/**
|
|
2351
2422
|
* A `CCI` series. If the [type](#series.cci.type) option is not
|
|
2352
2423
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -2395,6 +2466,11 @@
|
|
|
2395
2466
|
})();
|
|
2396
2467
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
2397
2468
|
var merge = U.merge;
|
|
2469
|
+
/* *
|
|
2470
|
+
*
|
|
2471
|
+
* Class
|
|
2472
|
+
*
|
|
2473
|
+
* */
|
|
2398
2474
|
/**
|
|
2399
2475
|
* The CMF series type.
|
|
2400
2476
|
*
|
|
@@ -2407,6 +2483,11 @@
|
|
|
2407
2483
|
var CMFIndicator = /** @class */ (function (_super) {
|
|
2408
2484
|
__extends(CMFIndicator, _super);
|
|
2409
2485
|
function CMFIndicator() {
|
|
2486
|
+
/* *
|
|
2487
|
+
*
|
|
2488
|
+
* Static Properties
|
|
2489
|
+
*
|
|
2490
|
+
* */
|
|
2410
2491
|
var _this = _super !== null && _super.apply(this,
|
|
2411
2492
|
arguments) || this;
|
|
2412
2493
|
/* *
|
|
@@ -2423,6 +2504,11 @@
|
|
|
2423
2504
|
_this.nameBase = 'Chaikin Money Flow';
|
|
2424
2505
|
return _this;
|
|
2425
2506
|
}
|
|
2507
|
+
/* *
|
|
2508
|
+
*
|
|
2509
|
+
* Functions
|
|
2510
|
+
*
|
|
2511
|
+
* */
|
|
2426
2512
|
/**
|
|
2427
2513
|
* Checks if the series and volumeSeries are accessible, number of
|
|
2428
2514
|
* points.x is longer than period, is series has OHLC data
|
|
@@ -2610,6 +2696,11 @@
|
|
|
2610
2696
|
* Default Export
|
|
2611
2697
|
*
|
|
2612
2698
|
* */
|
|
2699
|
+
/* *
|
|
2700
|
+
*
|
|
2701
|
+
* API Options
|
|
2702
|
+
*
|
|
2703
|
+
* */
|
|
2613
2704
|
/**
|
|
2614
2705
|
* A `CMF` series. If the [type](#series.cmf.type) option is not
|
|
2615
2706
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -2909,6 +3000,11 @@
|
|
|
2909
3000
|
* Default Export
|
|
2910
3001
|
*
|
|
2911
3002
|
* */
|
|
3003
|
+
/* *
|
|
3004
|
+
*
|
|
3005
|
+
* API Options
|
|
3006
|
+
*
|
|
3007
|
+
* */
|
|
2912
3008
|
/**
|
|
2913
3009
|
* The Directional Movement Index (DMI) indicator series.
|
|
2914
3010
|
* If the [type](#series.dmi.type) option is not
|
|
@@ -2957,7 +3053,11 @@
|
|
|
2957
3053
|
merge = U.merge,
|
|
2958
3054
|
correctFloat = U.correctFloat,
|
|
2959
3055
|
pick = U.pick;
|
|
2960
|
-
/*
|
|
3056
|
+
/* *
|
|
3057
|
+
*
|
|
3058
|
+
* Functions
|
|
3059
|
+
*
|
|
3060
|
+
* */
|
|
2961
3061
|
// Utils:
|
|
2962
3062
|
/**
|
|
2963
3063
|
* @private
|
|
@@ -2987,13 +3087,18 @@
|
|
|
2987
3087
|
var DPOIndicator = /** @class */ (function (_super) {
|
|
2988
3088
|
__extends(DPOIndicator, _super);
|
|
2989
3089
|
function DPOIndicator() {
|
|
3090
|
+
/* *
|
|
3091
|
+
*
|
|
3092
|
+
* Static Properties
|
|
3093
|
+
*
|
|
3094
|
+
* */
|
|
2990
3095
|
var _this = _super !== null && _super.apply(this,
|
|
2991
3096
|
arguments) || this;
|
|
2992
3097
|
/* *
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
3098
|
+
*
|
|
3099
|
+
* Properties
|
|
3100
|
+
*
|
|
3101
|
+
* */
|
|
2997
3102
|
_this.options = void 0;
|
|
2998
3103
|
_this.data = void 0;
|
|
2999
3104
|
_this.points = void 0;
|
|
@@ -3004,9 +3109,6 @@
|
|
|
3004
3109
|
* Functions
|
|
3005
3110
|
*
|
|
3006
3111
|
* */
|
|
3007
|
-
/**
|
|
3008
|
-
* @lends Highcharts.Series#
|
|
3009
|
-
*/
|
|
3010
3112
|
DPOIndicator.prototype.getValues = function (series, params) {
|
|
3011
3113
|
var period = params.period,
|
|
3012
3114
|
index = params.index,
|
|
@@ -3096,6 +3198,11 @@
|
|
|
3096
3198
|
* Default Export
|
|
3097
3199
|
*
|
|
3098
3200
|
* */
|
|
3201
|
+
/* *
|
|
3202
|
+
*
|
|
3203
|
+
* API Options
|
|
3204
|
+
*
|
|
3205
|
+
* */
|
|
3099
3206
|
/**
|
|
3100
3207
|
* A Detrended Price Oscillator. If the [type](#series.dpo.type) option is not
|
|
3101
3208
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -3114,7 +3221,7 @@
|
|
|
3114
3221
|
|
|
3115
3222
|
return DPOIndicator;
|
|
3116
3223
|
});
|
|
3117
|
-
_registerModule(_modules, 'Stock/Indicators/Chaikin/ChaikinIndicator.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
|
|
3224
|
+
_registerModule(_modules, 'Stock/Indicators/Chaikin/ChaikinIndicator.js', [_modules['Stock/Indicators/AD/ADIndicator.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (AD, SeriesRegistry, U) {
|
|
3118
3225
|
/* *
|
|
3119
3226
|
*
|
|
3120
3227
|
* License: www.highcharts.com/license
|
|
@@ -3138,9 +3245,7 @@
|
|
|
3138
3245
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
3139
3246
|
};
|
|
3140
3247
|
})();
|
|
3141
|
-
var
|
|
3142
|
-
AD = _a.ad,
|
|
3143
|
-
EMAIndicator = _a.ema;
|
|
3248
|
+
var EMAIndicator = SeriesRegistry.seriesTypes.ema;
|
|
3144
3249
|
var correctFloat = U.correctFloat,
|
|
3145
3250
|
extend = U.extend,
|
|
3146
3251
|
merge = U.merge,
|
|
@@ -3297,6 +3402,11 @@
|
|
|
3297
3402
|
* Default Export
|
|
3298
3403
|
*
|
|
3299
3404
|
* */
|
|
3405
|
+
/* *
|
|
3406
|
+
*
|
|
3407
|
+
* API Options
|
|
3408
|
+
*
|
|
3409
|
+
* */
|
|
3300
3410
|
/**
|
|
3301
3411
|
* A `Chaikin Oscillator` series. If the [type](#series.chaikin.type)
|
|
3302
3412
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -3342,7 +3452,11 @@
|
|
|
3342
3452
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
3343
3453
|
var isNumber = U.isNumber,
|
|
3344
3454
|
merge = U.merge;
|
|
3345
|
-
/*
|
|
3455
|
+
/* *
|
|
3456
|
+
*
|
|
3457
|
+
* Class
|
|
3458
|
+
*
|
|
3459
|
+
* */
|
|
3346
3460
|
/**
|
|
3347
3461
|
* The CMO series type.
|
|
3348
3462
|
*
|
|
@@ -3355,6 +3469,11 @@
|
|
|
3355
3469
|
var CMOIndicator = /** @class */ (function (_super) {
|
|
3356
3470
|
__extends(CMOIndicator, _super);
|
|
3357
3471
|
function CMOIndicator() {
|
|
3472
|
+
/* *
|
|
3473
|
+
*
|
|
3474
|
+
* Static Properties
|
|
3475
|
+
*
|
|
3476
|
+
* */
|
|
3358
3477
|
var _this = _super !== null && _super.apply(this,
|
|
3359
3478
|
arguments) || this;
|
|
3360
3479
|
/* *
|
|
@@ -3481,6 +3600,11 @@
|
|
|
3481
3600
|
* Default Export
|
|
3482
3601
|
*
|
|
3483
3602
|
* */
|
|
3603
|
+
/* *
|
|
3604
|
+
*
|
|
3605
|
+
* API Options
|
|
3606
|
+
*
|
|
3607
|
+
* */
|
|
3484
3608
|
/**
|
|
3485
3609
|
* A `CMO` series. If the [type](#series.cmo.type) option is not
|
|
3486
3610
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -3525,6 +3649,11 @@
|
|
|
3525
3649
|
var correctFloat = U.correctFloat,
|
|
3526
3650
|
isArray = U.isArray,
|
|
3527
3651
|
merge = U.merge;
|
|
3652
|
+
/* *
|
|
3653
|
+
*
|
|
3654
|
+
* Class
|
|
3655
|
+
*
|
|
3656
|
+
* */
|
|
3528
3657
|
/**
|
|
3529
3658
|
* The DEMA series Type
|
|
3530
3659
|
*
|
|
@@ -3537,14 +3666,29 @@
|
|
|
3537
3666
|
var DEMAIndicator = /** @class */ (function (_super) {
|
|
3538
3667
|
__extends(DEMAIndicator, _super);
|
|
3539
3668
|
function DEMAIndicator() {
|
|
3669
|
+
/* *
|
|
3670
|
+
*
|
|
3671
|
+
* Static Properties
|
|
3672
|
+
*
|
|
3673
|
+
* */
|
|
3540
3674
|
var _this = _super !== null && _super.apply(this,
|
|
3541
3675
|
arguments) || this;
|
|
3676
|
+
/* *
|
|
3677
|
+
*
|
|
3678
|
+
* Properties
|
|
3679
|
+
*
|
|
3680
|
+
* */
|
|
3542
3681
|
_this.EMApercent = void 0;
|
|
3543
3682
|
_this.data = void 0;
|
|
3544
3683
|
_this.options = void 0;
|
|
3545
3684
|
_this.points = void 0;
|
|
3546
3685
|
return _this;
|
|
3547
3686
|
}
|
|
3687
|
+
/* *
|
|
3688
|
+
*
|
|
3689
|
+
* Functions
|
|
3690
|
+
*
|
|
3691
|
+
* */
|
|
3548
3692
|
DEMAIndicator.prototype.getEMA = function (yVal, prevEMA, SMA, index, i, xVal) {
|
|
3549
3693
|
return EMAIndicator.prototype.calculateEma(xVal || [], yVal, typeof i === 'undefined' ? 1 : i, this.EMApercent, prevEMA, typeof index === 'undefined' ? -1 : index, SMA);
|
|
3550
3694
|
};
|
|
@@ -3648,6 +3792,11 @@
|
|
|
3648
3792
|
* Default Export
|
|
3649
3793
|
*
|
|
3650
3794
|
* */
|
|
3795
|
+
/* *
|
|
3796
|
+
*
|
|
3797
|
+
* API Options
|
|
3798
|
+
*
|
|
3799
|
+
* */
|
|
3651
3800
|
/**
|
|
3652
3801
|
* A `DEMA` series. If the [type](#series.dema.type) option is not
|
|
3653
3802
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -3922,6 +4071,11 @@
|
|
|
3922
4071
|
var TEMAIndicator = SeriesRegistry.seriesTypes.tema;
|
|
3923
4072
|
var correctFloat = U.correctFloat,
|
|
3924
4073
|
merge = U.merge;
|
|
4074
|
+
/* *
|
|
4075
|
+
*
|
|
4076
|
+
* Class
|
|
4077
|
+
*
|
|
4078
|
+
* */
|
|
3925
4079
|
/**
|
|
3926
4080
|
* The TRIX series type.
|
|
3927
4081
|
*
|
|
@@ -3934,13 +4088,28 @@
|
|
|
3934
4088
|
var TRIXIndicator = /** @class */ (function (_super) {
|
|
3935
4089
|
__extends(TRIXIndicator, _super);
|
|
3936
4090
|
function TRIXIndicator() {
|
|
4091
|
+
/* *
|
|
4092
|
+
*
|
|
4093
|
+
* Static Properties
|
|
4094
|
+
*
|
|
4095
|
+
* */
|
|
3937
4096
|
var _this = _super !== null && _super.apply(this,
|
|
3938
4097
|
arguments) || this;
|
|
4098
|
+
/* *
|
|
4099
|
+
*
|
|
4100
|
+
* Properties
|
|
4101
|
+
*
|
|
4102
|
+
* */
|
|
3939
4103
|
_this.data = void 0;
|
|
3940
4104
|
_this.options = void 0;
|
|
3941
4105
|
_this.points = void 0;
|
|
3942
4106
|
return _this;
|
|
3943
4107
|
}
|
|
4108
|
+
/* *
|
|
4109
|
+
*
|
|
4110
|
+
* Functions
|
|
4111
|
+
*
|
|
4112
|
+
* */
|
|
3944
4113
|
// TRIX is calculated using TEMA so we just extend getTemaPoint method.
|
|
3945
4114
|
TRIXIndicator.prototype.getTemaPoint = function (xVal, tripledPeriod, EMAlevels, i) {
|
|
3946
4115
|
if (i > tripledPeriod) {
|
|
@@ -3980,6 +4149,11 @@
|
|
|
3980
4149
|
* Default Export
|
|
3981
4150
|
*
|
|
3982
4151
|
* */
|
|
4152
|
+
/* *
|
|
4153
|
+
*
|
|
4154
|
+
* API Options
|
|
4155
|
+
*
|
|
4156
|
+
* */
|
|
3983
4157
|
/**
|
|
3984
4158
|
* A `TRIX` series. If the [type](#series.trix.type) option is not specified, it
|
|
3985
4159
|
* is inherited from [chart.type](#chart.type).
|
|
@@ -4159,6 +4333,11 @@
|
|
|
4159
4333
|
* Default Export
|
|
4160
4334
|
*
|
|
4161
4335
|
* */
|
|
4336
|
+
/* *
|
|
4337
|
+
*
|
|
4338
|
+
* API Options
|
|
4339
|
+
*
|
|
4340
|
+
* */
|
|
4162
4341
|
/**
|
|
4163
4342
|
* An `Absolute Price Oscillator` series. If the [type](#series.apo.type) option
|
|
4164
4343
|
* is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -4209,7 +4388,11 @@
|
|
|
4209
4388
|
isNumber = U.isNumber,
|
|
4210
4389
|
merge = U.merge,
|
|
4211
4390
|
objectEach = U.objectEach;
|
|
4212
|
-
/*
|
|
4391
|
+
/* *
|
|
4392
|
+
*
|
|
4393
|
+
* Functions
|
|
4394
|
+
*
|
|
4395
|
+
* */
|
|
4213
4396
|
// Utils:
|
|
4214
4397
|
function maxHigh(arr) {
|
|
4215
4398
|
return arr.reduce(function (max, res) {
|
|
@@ -4287,6 +4470,7 @@
|
|
|
4287
4470
|
// Data integrity in Ichimoku is different than default 'averages':
|
|
4288
4471
|
// Point: [undefined, value, value, ...] is correct
|
|
4289
4472
|
// Point: [undefined, undefined, undefined, ...] is incorrect
|
|
4473
|
+
// @todo compose
|
|
4290
4474
|
H.approximations['ichimoku-averages'] = function () {
|
|
4291
4475
|
var ret = [],
|
|
4292
4476
|
isEmptyRange;
|
|
@@ -4298,7 +4482,11 @@
|
|
|
4298
4482
|
// sum method handle null (#7377)
|
|
4299
4483
|
return isEmptyRange ? void 0 : ret;
|
|
4300
4484
|
};
|
|
4301
|
-
/*
|
|
4485
|
+
/* *
|
|
4486
|
+
*
|
|
4487
|
+
* Class
|
|
4488
|
+
*
|
|
4489
|
+
* */
|
|
4302
4490
|
/**
|
|
4303
4491
|
* The IKH series type.
|
|
4304
4492
|
*
|
|
@@ -4308,21 +4496,21 @@
|
|
|
4308
4496
|
*
|
|
4309
4497
|
* @augments Highcharts.Series
|
|
4310
4498
|
*/
|
|
4311
|
-
/* *
|
|
4312
|
-
*
|
|
4313
|
-
* Class
|
|
4314
|
-
*
|
|
4315
|
-
* */
|
|
4316
4499
|
var IKHIndicator = /** @class */ (function (_super) {
|
|
4317
4500
|
__extends(IKHIndicator, _super);
|
|
4318
4501
|
function IKHIndicator() {
|
|
4502
|
+
/* *
|
|
4503
|
+
*
|
|
4504
|
+
* Static Properties
|
|
4505
|
+
*
|
|
4506
|
+
* */
|
|
4319
4507
|
var _this = _super !== null && _super.apply(this,
|
|
4320
4508
|
arguments) || this;
|
|
4321
4509
|
/* *
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4510
|
+
*
|
|
4511
|
+
* Properties
|
|
4512
|
+
*
|
|
4513
|
+
* */
|
|
4326
4514
|
_this.data = void 0;
|
|
4327
4515
|
_this.options = void 0;
|
|
4328
4516
|
_this.points = void 0;
|
|
@@ -4333,10 +4521,10 @@
|
|
|
4333
4521
|
return _this;
|
|
4334
4522
|
}
|
|
4335
4523
|
/* *
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4524
|
+
*
|
|
4525
|
+
* Functions
|
|
4526
|
+
*
|
|
4527
|
+
* */
|
|
4340
4528
|
IKHIndicator.prototype.init = function () {
|
|
4341
4529
|
SeriesRegistry.seriesTypes.sma.prototype.init.apply(this, arguments);
|
|
4342
4530
|
// Set default color for lines:
|
|
@@ -4914,6 +5102,16 @@
|
|
|
4914
5102
|
nameComponents: ['periodSenkouSpanB', 'period', 'periodTenkan']
|
|
4915
5103
|
});
|
|
4916
5104
|
SeriesRegistry.registerSeriesType('ikh', IKHIndicator);
|
|
5105
|
+
/* *
|
|
5106
|
+
*
|
|
5107
|
+
* Default Export
|
|
5108
|
+
*
|
|
5109
|
+
* */
|
|
5110
|
+
/* *
|
|
5111
|
+
*
|
|
5112
|
+
* API Options
|
|
5113
|
+
*
|
|
5114
|
+
* */
|
|
4917
5115
|
/**
|
|
4918
5116
|
* A `IKH` series. If the [type](#series.ikh.type) option is not
|
|
4919
5117
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -4958,8 +5156,13 @@
|
|
|
4958
5156
|
var correctFloat = U.correctFloat,
|
|
4959
5157
|
extend = U.extend,
|
|
4960
5158
|
merge = U.merge;
|
|
4961
|
-
|
|
4962
|
-
*
|
|
5159
|
+
/* *
|
|
5160
|
+
*
|
|
5161
|
+
* Class
|
|
5162
|
+
*
|
|
5163
|
+
* */
|
|
5164
|
+
/**
|
|
5165
|
+
* The Keltner Channels series type.
|
|
4963
5166
|
*
|
|
4964
5167
|
* @private
|
|
4965
5168
|
* @class
|
|
@@ -4970,13 +5173,28 @@
|
|
|
4970
5173
|
var KeltnerChannelsIndicator = /** @class */ (function (_super) {
|
|
4971
5174
|
__extends(KeltnerChannelsIndicator, _super);
|
|
4972
5175
|
function KeltnerChannelsIndicator() {
|
|
5176
|
+
/* *
|
|
5177
|
+
*
|
|
5178
|
+
* Static Properties
|
|
5179
|
+
*
|
|
5180
|
+
* */
|
|
4973
5181
|
var _this = _super !== null && _super.apply(this,
|
|
4974
5182
|
arguments) || this;
|
|
5183
|
+
/* *
|
|
5184
|
+
*
|
|
5185
|
+
* Properties
|
|
5186
|
+
*
|
|
5187
|
+
* */
|
|
4975
5188
|
_this.data = void 0;
|
|
4976
5189
|
_this.options = void 0;
|
|
4977
5190
|
_this.points = void 0;
|
|
4978
5191
|
return _this;
|
|
4979
5192
|
}
|
|
5193
|
+
/* *
|
|
5194
|
+
*
|
|
5195
|
+
* Functions
|
|
5196
|
+
*
|
|
5197
|
+
* */
|
|
4980
5198
|
KeltnerChannelsIndicator.prototype.init = function () {
|
|
4981
5199
|
SeriesRegistry.seriesTypes.sma.prototype.init.apply(this, arguments);
|
|
4982
5200
|
// Set default color for lines:
|
|
@@ -5148,6 +5366,11 @@
|
|
|
5148
5366
|
* Default Export
|
|
5149
5367
|
*
|
|
5150
5368
|
* */
|
|
5369
|
+
/* *
|
|
5370
|
+
*
|
|
5371
|
+
* API Options
|
|
5372
|
+
*
|
|
5373
|
+
* */
|
|
5151
5374
|
/**
|
|
5152
5375
|
* A Keltner Channels indicator. If the [type](#series.keltnerchannels.type)
|
|
5153
5376
|
* option is not specified, it is inherited from[chart.type](#chart.type).
|
|
@@ -5191,14 +5414,18 @@
|
|
|
5191
5414
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5192
5415
|
};
|
|
5193
5416
|
})();
|
|
5194
|
-
var
|
|
5195
|
-
|
|
5196
|
-
EMAIndicator = _a.ema;
|
|
5417
|
+
var EMAIndicator = SeriesRegistry.seriesTypes.ema;
|
|
5418
|
+
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
5197
5419
|
var correctFloat = U.correctFloat,
|
|
5198
5420
|
error = U.error,
|
|
5199
5421
|
extend = U.extend,
|
|
5200
5422
|
isArray = U.isArray,
|
|
5201
5423
|
merge = U.merge;
|
|
5424
|
+
/* *
|
|
5425
|
+
*
|
|
5426
|
+
* Class
|
|
5427
|
+
*
|
|
5428
|
+
* */
|
|
5202
5429
|
/**
|
|
5203
5430
|
* The Klinger oscillator series type.
|
|
5204
5431
|
*
|
|
@@ -5453,6 +5680,11 @@
|
|
|
5453
5680
|
* Default Export
|
|
5454
5681
|
*
|
|
5455
5682
|
* */
|
|
5683
|
+
/* *
|
|
5684
|
+
*
|
|
5685
|
+
* API Options
|
|
5686
|
+
*
|
|
5687
|
+
* */
|
|
5456
5688
|
/**
|
|
5457
5689
|
* A Klinger oscillator. If the [type](#series.klinger.type)
|
|
5458
5690
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -5493,18 +5725,17 @@
|
|
|
5493
5725
|
};
|
|
5494
5726
|
})();
|
|
5495
5727
|
var noop = H.noop;
|
|
5496
|
-
var
|
|
5497
|
-
|
|
5498
|
-
ColumnSeries = _a.column;
|
|
5728
|
+
var ColumnSeries = SeriesRegistry.seriesTypes.column;
|
|
5729
|
+
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
5499
5730
|
var extend = U.extend,
|
|
5500
5731
|
correctFloat = U.correctFloat,
|
|
5501
5732
|
defined = U.defined,
|
|
5502
5733
|
merge = U.merge;
|
|
5503
|
-
|
|
5734
|
+
/* *
|
|
5504
5735
|
*
|
|
5505
|
-
*
|
|
5736
|
+
* Class
|
|
5506
5737
|
*
|
|
5507
|
-
*/
|
|
5738
|
+
* */
|
|
5508
5739
|
/**
|
|
5509
5740
|
* The MACD series type.
|
|
5510
5741
|
*
|
|
@@ -5517,13 +5748,18 @@
|
|
|
5517
5748
|
var MACDIndicator = /** @class */ (function (_super) {
|
|
5518
5749
|
__extends(MACDIndicator, _super);
|
|
5519
5750
|
function MACDIndicator() {
|
|
5751
|
+
/* *
|
|
5752
|
+
*
|
|
5753
|
+
* Static Properties
|
|
5754
|
+
*
|
|
5755
|
+
* */
|
|
5520
5756
|
var _this = _super !== null && _super.apply(this,
|
|
5521
5757
|
arguments) || this;
|
|
5522
|
-
|
|
5758
|
+
/* *
|
|
5523
5759
|
*
|
|
5524
|
-
*
|
|
5760
|
+
* Properties
|
|
5525
5761
|
*
|
|
5526
|
-
*/
|
|
5762
|
+
* */
|
|
5527
5763
|
_this.data = void 0;
|
|
5528
5764
|
_this.options = void 0;
|
|
5529
5765
|
_this.points = void 0;
|
|
@@ -5534,11 +5770,11 @@
|
|
|
5534
5770
|
_this.signalZones = void 0;
|
|
5535
5771
|
return _this;
|
|
5536
5772
|
}
|
|
5537
|
-
|
|
5773
|
+
/* *
|
|
5538
5774
|
*
|
|
5539
|
-
*
|
|
5775
|
+
* Functions
|
|
5540
5776
|
*
|
|
5541
|
-
*/
|
|
5777
|
+
* */
|
|
5542
5778
|
MACDIndicator.prototype.init = function () {
|
|
5543
5779
|
SeriesRegistry.seriesTypes.sma.prototype.init.apply(this, arguments);
|
|
5544
5780
|
var originalColor = this.color,
|
|
@@ -5891,6 +6127,11 @@
|
|
|
5891
6127
|
* Default Export
|
|
5892
6128
|
*
|
|
5893
6129
|
* */
|
|
6130
|
+
/* *
|
|
6131
|
+
*
|
|
6132
|
+
* API Options
|
|
6133
|
+
*
|
|
6134
|
+
* */
|
|
5894
6135
|
/**
|
|
5895
6136
|
* A `MACD` series. If the [type](#series.macd.type) option is not
|
|
5896
6137
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -5940,7 +6181,11 @@
|
|
|
5940
6181
|
merge = U.merge,
|
|
5941
6182
|
error = U.error,
|
|
5942
6183
|
isArray = U.isArray;
|
|
5943
|
-
/*
|
|
6184
|
+
/* *
|
|
6185
|
+
*
|
|
6186
|
+
* Functions
|
|
6187
|
+
*
|
|
6188
|
+
* */
|
|
5944
6189
|
// Utils:
|
|
5945
6190
|
function sumArray(array) {
|
|
5946
6191
|
return array.reduce(function (prev, cur) {
|
|
@@ -5956,7 +6201,6 @@
|
|
|
5956
6201
|
function calculateRawMoneyFlow(typicalPrice, volume) {
|
|
5957
6202
|
return typicalPrice * volume;
|
|
5958
6203
|
}
|
|
5959
|
-
/* eslint-enable require-jsdoc */
|
|
5960
6204
|
/* *
|
|
5961
6205
|
*
|
|
5962
6206
|
* Class
|
|
@@ -5974,23 +6218,28 @@
|
|
|
5974
6218
|
var MFIIndicator = /** @class */ (function (_super) {
|
|
5975
6219
|
__extends(MFIIndicator, _super);
|
|
5976
6220
|
function MFIIndicator() {
|
|
6221
|
+
/* *
|
|
6222
|
+
*
|
|
6223
|
+
* Static Properties
|
|
6224
|
+
*
|
|
6225
|
+
* */
|
|
5977
6226
|
var _this = _super !== null && _super.apply(this,
|
|
5978
6227
|
arguments) || this;
|
|
5979
6228
|
/* *
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
6229
|
+
*
|
|
6230
|
+
* Properties
|
|
6231
|
+
*
|
|
6232
|
+
* */
|
|
5984
6233
|
_this.data = void 0;
|
|
5985
6234
|
_this.options = void 0;
|
|
5986
6235
|
_this.points = void 0;
|
|
5987
6236
|
return _this;
|
|
5988
6237
|
}
|
|
5989
6238
|
/* *
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
6239
|
+
*
|
|
6240
|
+
* Functions
|
|
6241
|
+
*
|
|
6242
|
+
* */
|
|
5994
6243
|
MFIIndicator.prototype.getValues = function (series, params) {
|
|
5995
6244
|
var period = params.period,
|
|
5996
6245
|
xVal = series.xData,
|
|
@@ -6116,6 +6365,11 @@
|
|
|
6116
6365
|
* Default Export
|
|
6117
6366
|
*
|
|
6118
6367
|
* */
|
|
6368
|
+
/* *
|
|
6369
|
+
*
|
|
6370
|
+
* API Options
|
|
6371
|
+
*
|
|
6372
|
+
* */
|
|
6119
6373
|
/**
|
|
6120
6374
|
* A `MFI` series. If the [type](#series.mfi.type) option is not specified, it
|
|
6121
6375
|
* is inherited from [chart.type](#chart.type).
|
|
@@ -6160,13 +6414,21 @@
|
|
|
6160
6414
|
var extend = U.extend,
|
|
6161
6415
|
isArray = U.isArray,
|
|
6162
6416
|
merge = U.merge;
|
|
6163
|
-
/*
|
|
6417
|
+
/* *
|
|
6418
|
+
*
|
|
6419
|
+
* Functions
|
|
6420
|
+
*
|
|
6421
|
+
* */
|
|
6164
6422
|
function populateAverage(xVal, yVal, i, period, index) {
|
|
6165
6423
|
var mmY = yVal[i - 1][index] - yVal[i - period - 1][index],
|
|
6166
6424
|
mmX = xVal[i - 1];
|
|
6167
6425
|
return [mmX, mmY];
|
|
6168
6426
|
}
|
|
6169
|
-
/*
|
|
6427
|
+
/* *
|
|
6428
|
+
*
|
|
6429
|
+
* Class
|
|
6430
|
+
*
|
|
6431
|
+
* */
|
|
6170
6432
|
/**
|
|
6171
6433
|
* The Momentum series type.
|
|
6172
6434
|
*
|
|
@@ -6179,13 +6441,28 @@
|
|
|
6179
6441
|
var MomentumIndicator = /** @class */ (function (_super) {
|
|
6180
6442
|
__extends(MomentumIndicator, _super);
|
|
6181
6443
|
function MomentumIndicator() {
|
|
6444
|
+
/* *
|
|
6445
|
+
*
|
|
6446
|
+
* Static Properties
|
|
6447
|
+
*
|
|
6448
|
+
* */
|
|
6182
6449
|
var _this = _super !== null && _super.apply(this,
|
|
6183
6450
|
arguments) || this;
|
|
6451
|
+
/* *
|
|
6452
|
+
*
|
|
6453
|
+
* Properties
|
|
6454
|
+
*
|
|
6455
|
+
* */
|
|
6184
6456
|
_this.data = void 0;
|
|
6185
6457
|
_this.options = void 0;
|
|
6186
6458
|
_this.points = void 0;
|
|
6187
6459
|
return _this;
|
|
6188
6460
|
}
|
|
6461
|
+
/* *
|
|
6462
|
+
*
|
|
6463
|
+
* Functions
|
|
6464
|
+
*
|
|
6465
|
+
* */
|
|
6189
6466
|
MomentumIndicator.prototype.getValues = function (series, params) {
|
|
6190
6467
|
var period = params.period,
|
|
6191
6468
|
index = params.index,
|
|
@@ -6254,6 +6531,11 @@
|
|
|
6254
6531
|
* Default Export
|
|
6255
6532
|
*
|
|
6256
6533
|
* */
|
|
6534
|
+
/* *
|
|
6535
|
+
*
|
|
6536
|
+
* API Options
|
|
6537
|
+
*
|
|
6538
|
+
* */
|
|
6257
6539
|
/**
|
|
6258
6540
|
* A `Momentum` series. If the [type](#series.momentum.type) option is not
|
|
6259
6541
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -6295,8 +6577,12 @@
|
|
|
6295
6577
|
};
|
|
6296
6578
|
})();
|
|
6297
6579
|
var ATRIndicator = SeriesRegistry.seriesTypes.atr;
|
|
6298
|
-
var merge = U.merge
|
|
6299
|
-
|
|
6580
|
+
var merge = U.merge;
|
|
6581
|
+
/* *
|
|
6582
|
+
*
|
|
6583
|
+
* Class
|
|
6584
|
+
*
|
|
6585
|
+
* */
|
|
6300
6586
|
/**
|
|
6301
6587
|
* The NATR series type.
|
|
6302
6588
|
*
|
|
@@ -6309,6 +6595,11 @@
|
|
|
6309
6595
|
var NATRIndicator = /** @class */ (function (_super) {
|
|
6310
6596
|
__extends(NATRIndicator, _super);
|
|
6311
6597
|
function NATRIndicator() {
|
|
6598
|
+
/* *
|
|
6599
|
+
*
|
|
6600
|
+
* Static Properties
|
|
6601
|
+
*
|
|
6602
|
+
* */
|
|
6312
6603
|
var _this = _super !== null && _super.apply(this,
|
|
6313
6604
|
arguments) || this;
|
|
6314
6605
|
/**
|
|
@@ -6374,6 +6665,11 @@
|
|
|
6374
6665
|
* Default Export
|
|
6375
6666
|
*
|
|
6376
6667
|
* */
|
|
6668
|
+
/* *
|
|
6669
|
+
*
|
|
6670
|
+
* API Options
|
|
6671
|
+
*
|
|
6672
|
+
* */
|
|
6377
6673
|
/**
|
|
6378
6674
|
* A `NATR` series. If the [type](#series.natr.type) option is not specified, it
|
|
6379
6675
|
* is inherited from [chart.type](#chart.type).
|
|
@@ -6437,6 +6733,11 @@
|
|
|
6437
6733
|
var OBVIndicator = /** @class */ (function (_super) {
|
|
6438
6734
|
__extends(OBVIndicator, _super);
|
|
6439
6735
|
function OBVIndicator() {
|
|
6736
|
+
/* *
|
|
6737
|
+
*
|
|
6738
|
+
* Static Properties
|
|
6739
|
+
*
|
|
6740
|
+
* */
|
|
6440
6741
|
var _this = _super !== null && _super.apply(this,
|
|
6441
6742
|
arguments) || this;
|
|
6442
6743
|
/* *
|
|
@@ -6564,6 +6865,11 @@
|
|
|
6564
6865
|
* Default Export
|
|
6565
6866
|
*
|
|
6566
6867
|
* */
|
|
6868
|
+
/* *
|
|
6869
|
+
*
|
|
6870
|
+
* API Options
|
|
6871
|
+
*
|
|
6872
|
+
* */
|
|
6567
6873
|
/**
|
|
6568
6874
|
* A `OBV` series. If the [type](#series.obv.type) option is not
|
|
6569
6875
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -6604,8 +6910,12 @@
|
|
|
6604
6910
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
6605
6911
|
};
|
|
6606
6912
|
})();
|
|
6607
|
-
var
|
|
6608
|
-
/*
|
|
6913
|
+
var SMAPoint = SeriesRegistry.seriesTypes.sma.prototype.pointClass;
|
|
6914
|
+
/* *
|
|
6915
|
+
*
|
|
6916
|
+
* Functions
|
|
6917
|
+
*
|
|
6918
|
+
* */
|
|
6609
6919
|
/**
|
|
6610
6920
|
* @private
|
|
6611
6921
|
*/
|
|
@@ -6623,7 +6933,6 @@
|
|
|
6623
6933
|
point[prop] = null;
|
|
6624
6934
|
}
|
|
6625
6935
|
}
|
|
6626
|
-
/* eslint-enable valid-jsdoc */
|
|
6627
6936
|
/* *
|
|
6628
6937
|
*
|
|
6629
6938
|
* Class
|
|
@@ -6632,11 +6941,11 @@
|
|
|
6632
6941
|
var PivotPointsPoint = /** @class */ (function (_super) {
|
|
6633
6942
|
__extends(PivotPointsPoint, _super);
|
|
6634
6943
|
function PivotPointsPoint() {
|
|
6635
|
-
|
|
6944
|
+
/* *
|
|
6636
6945
|
*
|
|
6637
|
-
*
|
|
6946
|
+
* Properties
|
|
6638
6947
|
*
|
|
6639
|
-
*/
|
|
6948
|
+
* */
|
|
6640
6949
|
var _this = _super !== null && _super.apply(this,
|
|
6641
6950
|
arguments) || this;
|
|
6642
6951
|
_this.P = void 0;
|
|
@@ -6644,11 +6953,11 @@
|
|
|
6644
6953
|
_this.series = void 0;
|
|
6645
6954
|
return _this;
|
|
6646
6955
|
}
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6956
|
+
/* *
|
|
6957
|
+
*
|
|
6958
|
+
* Functions
|
|
6959
|
+
*
|
|
6960
|
+
* */
|
|
6652
6961
|
PivotPointsPoint.prototype.destroyElements = function () {
|
|
6653
6962
|
destroyExtraLabels(this, 'destroyElements');
|
|
6654
6963
|
};
|
|
@@ -6657,7 +6966,7 @@
|
|
|
6657
6966
|
destroyExtraLabels(this, 'destroyElements');
|
|
6658
6967
|
};
|
|
6659
6968
|
return PivotPointsPoint;
|
|
6660
|
-
}(
|
|
6969
|
+
}(SMAPoint));
|
|
6661
6970
|
/* *
|
|
6662
6971
|
*
|
|
6663
6972
|
* Default Export
|
|
@@ -6712,13 +7021,18 @@
|
|
|
6712
7021
|
var PivotPointsIndicator = /** @class */ (function (_super) {
|
|
6713
7022
|
__extends(PivotPointsIndicator, _super);
|
|
6714
7023
|
function PivotPointsIndicator() {
|
|
7024
|
+
/* *
|
|
7025
|
+
*
|
|
7026
|
+
* Static Properties
|
|
7027
|
+
*
|
|
7028
|
+
* */
|
|
6715
7029
|
var _this = _super !== null && _super.apply(this,
|
|
6716
7030
|
arguments) || this;
|
|
6717
|
-
|
|
7031
|
+
/* *
|
|
6718
7032
|
*
|
|
6719
|
-
*
|
|
7033
|
+
* Properties
|
|
6720
7034
|
*
|
|
6721
|
-
*/
|
|
7035
|
+
* */
|
|
6722
7036
|
_this.data = void 0;
|
|
6723
7037
|
_this.options = void 0;
|
|
6724
7038
|
_this.points = void 0;
|
|
@@ -6726,11 +7040,11 @@
|
|
|
6726
7040
|
_this.plotEndPoint = void 0;
|
|
6727
7041
|
return _this;
|
|
6728
7042
|
}
|
|
6729
|
-
|
|
7043
|
+
/* *
|
|
6730
7044
|
*
|
|
6731
|
-
*
|
|
7045
|
+
* Functions
|
|
6732
7046
|
*
|
|
6733
|
-
*/
|
|
7047
|
+
* */
|
|
6734
7048
|
PivotPointsIndicator.prototype.toYData = function (point) {
|
|
6735
7049
|
return [point.P]; // The rest should not affect extremes
|
|
6736
7050
|
};
|
|
@@ -7007,6 +7321,11 @@
|
|
|
7007
7321
|
* Default Export
|
|
7008
7322
|
*
|
|
7009
7323
|
* */
|
|
7324
|
+
/* *
|
|
7325
|
+
*
|
|
7326
|
+
* API Options
|
|
7327
|
+
*
|
|
7328
|
+
* */
|
|
7010
7329
|
/**
|
|
7011
7330
|
* A pivot points indicator. If the [type](#series.pivotpoints.type) option is
|
|
7012
7331
|
* not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -7069,13 +7388,18 @@
|
|
|
7069
7388
|
var PPOIndicator = /** @class */ (function (_super) {
|
|
7070
7389
|
__extends(PPOIndicator, _super);
|
|
7071
7390
|
function PPOIndicator() {
|
|
7391
|
+
/* *
|
|
7392
|
+
*
|
|
7393
|
+
* Static Properties
|
|
7394
|
+
*
|
|
7395
|
+
* */
|
|
7072
7396
|
var _this = _super !== null && _super.apply(this,
|
|
7073
7397
|
arguments) || this;
|
|
7074
7398
|
/* *
|
|
7075
|
-
|
|
7076
|
-
|
|
7077
|
-
|
|
7078
|
-
|
|
7399
|
+
*
|
|
7400
|
+
* Properties
|
|
7401
|
+
*
|
|
7402
|
+
* */
|
|
7079
7403
|
_this.data = void 0;
|
|
7080
7404
|
_this.options = void 0;
|
|
7081
7405
|
_this.points = void 0;
|
|
@@ -7182,6 +7506,11 @@
|
|
|
7182
7506
|
* Default Export
|
|
7183
7507
|
*
|
|
7184
7508
|
* */
|
|
7509
|
+
/* *
|
|
7510
|
+
*
|
|
7511
|
+
* API Options
|
|
7512
|
+
*
|
|
7513
|
+
* */
|
|
7185
7514
|
/**
|
|
7186
7515
|
* A `Percentage Price Oscillator` series. If the [type](#series.ppo.type)
|
|
7187
7516
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -7301,20 +7630,20 @@
|
|
|
7301
7630
|
var _this = _super !== null && _super.apply(this,
|
|
7302
7631
|
arguments) || this;
|
|
7303
7632
|
/* *
|
|
7304
|
-
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7633
|
+
*
|
|
7634
|
+
* Properties
|
|
7635
|
+
*
|
|
7636
|
+
* */
|
|
7308
7637
|
_this.data = void 0;
|
|
7309
7638
|
_this.options = void 0;
|
|
7310
7639
|
_this.points = void 0;
|
|
7311
7640
|
return _this;
|
|
7312
7641
|
}
|
|
7313
7642
|
/* *
|
|
7314
|
-
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7643
|
+
*
|
|
7644
|
+
* Functions
|
|
7645
|
+
*
|
|
7646
|
+
* */
|
|
7318
7647
|
PCIndicator.prototype.getValues = function (series, params) {
|
|
7319
7648
|
var period = params.period,
|
|
7320
7649
|
xVal = series.xData,
|
|
@@ -7442,6 +7771,11 @@
|
|
|
7442
7771
|
* Default Export
|
|
7443
7772
|
*
|
|
7444
7773
|
* */
|
|
7774
|
+
/* *
|
|
7775
|
+
*
|
|
7776
|
+
* API Options
|
|
7777
|
+
*
|
|
7778
|
+
* */
|
|
7445
7779
|
/**
|
|
7446
7780
|
* A Price channel indicator. If the [type](#series.pc.type) option is not
|
|
7447
7781
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -7489,6 +7823,11 @@
|
|
|
7489
7823
|
var extend = U.extend,
|
|
7490
7824
|
isArray = U.isArray,
|
|
7491
7825
|
merge = U.merge;
|
|
7826
|
+
/* *
|
|
7827
|
+
*
|
|
7828
|
+
* Class
|
|
7829
|
+
*
|
|
7830
|
+
* */
|
|
7492
7831
|
/**
|
|
7493
7832
|
* The Price Envelopes series type.
|
|
7494
7833
|
*
|
|
@@ -7501,13 +7840,28 @@
|
|
|
7501
7840
|
var PriceEnvelopesIndicator = /** @class */ (function (_super) {
|
|
7502
7841
|
__extends(PriceEnvelopesIndicator, _super);
|
|
7503
7842
|
function PriceEnvelopesIndicator() {
|
|
7843
|
+
/* *
|
|
7844
|
+
*
|
|
7845
|
+
* Static Properties
|
|
7846
|
+
*
|
|
7847
|
+
* */
|
|
7504
7848
|
var _this = _super !== null && _super.apply(this,
|
|
7505
7849
|
arguments) || this;
|
|
7850
|
+
/* *
|
|
7851
|
+
*
|
|
7852
|
+
* Properties
|
|
7853
|
+
*
|
|
7854
|
+
* */
|
|
7506
7855
|
_this.data = void 0;
|
|
7507
7856
|
_this.options = void 0;
|
|
7508
7857
|
_this.points = void 0;
|
|
7509
7858
|
return _this;
|
|
7510
7859
|
}
|
|
7860
|
+
/* *
|
|
7861
|
+
*
|
|
7862
|
+
* Functions
|
|
7863
|
+
*
|
|
7864
|
+
* */
|
|
7511
7865
|
PriceEnvelopesIndicator.prototype.init = function () {
|
|
7512
7866
|
SeriesRegistry.seriesTypes.sma.prototype.init.apply(this, arguments);
|
|
7513
7867
|
// Set default color for lines:
|
|
@@ -7712,6 +8066,11 @@
|
|
|
7712
8066
|
* Default Export
|
|
7713
8067
|
*
|
|
7714
8068
|
* */
|
|
8069
|
+
/* *
|
|
8070
|
+
*
|
|
8071
|
+
* API Options
|
|
8072
|
+
*
|
|
8073
|
+
* */
|
|
7715
8074
|
/**
|
|
7716
8075
|
* A price envelopes indicator. If the [type](#series.priceenvelopes.type)
|
|
7717
8076
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -7759,7 +8118,11 @@
|
|
|
7759
8118
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
7760
8119
|
var merge = U.merge,
|
|
7761
8120
|
extend = U.extend;
|
|
7762
|
-
/*
|
|
8121
|
+
/* *
|
|
8122
|
+
*
|
|
8123
|
+
* Functions
|
|
8124
|
+
*
|
|
8125
|
+
* */
|
|
7763
8126
|
// Utils:
|
|
7764
8127
|
function toFixed(a, n) {
|
|
7765
8128
|
return parseFloat(a.toFixed(n));
|
|
@@ -7830,10 +8193,9 @@
|
|
|
7830
8193
|
}
|
|
7831
8194
|
return pEP;
|
|
7832
8195
|
}
|
|
7833
|
-
/* eslint-enable require-jsdoc */
|
|
7834
8196
|
/* *
|
|
7835
8197
|
*
|
|
7836
|
-
*
|
|
8198
|
+
* Class
|
|
7837
8199
|
*
|
|
7838
8200
|
* */
|
|
7839
8201
|
/**
|
|
@@ -7848,6 +8210,11 @@
|
|
|
7848
8210
|
var PSARIndicator = /** @class */ (function (_super) {
|
|
7849
8211
|
__extends(PSARIndicator, _super);
|
|
7850
8212
|
function PSARIndicator() {
|
|
8213
|
+
/* *
|
|
8214
|
+
*
|
|
8215
|
+
* Static Properties
|
|
8216
|
+
*
|
|
8217
|
+
* */
|
|
7851
8218
|
var _this = _super !== null && _super.apply(this,
|
|
7852
8219
|
arguments) || this;
|
|
7853
8220
|
/* *
|
|
@@ -8020,6 +8387,11 @@
|
|
|
8020
8387
|
* Default Export
|
|
8021
8388
|
*
|
|
8022
8389
|
* */
|
|
8390
|
+
/* *
|
|
8391
|
+
*
|
|
8392
|
+
* API Options
|
|
8393
|
+
*
|
|
8394
|
+
* */
|
|
8023
8395
|
/**
|
|
8024
8396
|
* A `PSAR` series. If the [type](#series.psar.type) option is not specified, it
|
|
8025
8397
|
* is inherited from [chart.type](#chart.type).
|
|
@@ -8066,7 +8438,11 @@
|
|
|
8066
8438
|
var isArray = U.isArray,
|
|
8067
8439
|
merge = U.merge,
|
|
8068
8440
|
extend = U.extend;
|
|
8069
|
-
/*
|
|
8441
|
+
/* *
|
|
8442
|
+
*
|
|
8443
|
+
* Functions
|
|
8444
|
+
*
|
|
8445
|
+
* */
|
|
8070
8446
|
// Utils:
|
|
8071
8447
|
function populateAverage(xVal, yVal, i, period, index) {
|
|
8072
8448
|
/* Calculated as:
|
|
@@ -8093,7 +8469,6 @@
|
|
|
8093
8469
|
}
|
|
8094
8470
|
return [xVal[i], rocY];
|
|
8095
8471
|
}
|
|
8096
|
-
/* eslint-enable require-jsdoc */
|
|
8097
8472
|
/* *
|
|
8098
8473
|
*
|
|
8099
8474
|
* Class
|
|
@@ -8111,6 +8486,11 @@
|
|
|
8111
8486
|
var ROCIndicator = /** @class */ (function (_super) {
|
|
8112
8487
|
__extends(ROCIndicator, _super);
|
|
8113
8488
|
function ROCIndicator() {
|
|
8489
|
+
/* *
|
|
8490
|
+
*
|
|
8491
|
+
* Static Properties
|
|
8492
|
+
*
|
|
8493
|
+
* */
|
|
8114
8494
|
var _this = _super !== null && _super.apply(this,
|
|
8115
8495
|
arguments) || this;
|
|
8116
8496
|
/* *
|
|
@@ -8201,6 +8581,11 @@
|
|
|
8201
8581
|
* Default Export
|
|
8202
8582
|
*
|
|
8203
8583
|
* */
|
|
8584
|
+
/* *
|
|
8585
|
+
*
|
|
8586
|
+
* API Options
|
|
8587
|
+
*
|
|
8588
|
+
* */
|
|
8204
8589
|
/**
|
|
8205
8590
|
* A `ROC` series. If the [type](#series.wma.type) option is not
|
|
8206
8591
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -8255,12 +8640,20 @@
|
|
|
8255
8640
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
8256
8641
|
var isNumber = U.isNumber,
|
|
8257
8642
|
merge = U.merge;
|
|
8258
|
-
/*
|
|
8643
|
+
/* *
|
|
8644
|
+
*
|
|
8645
|
+
* Functions
|
|
8646
|
+
*
|
|
8647
|
+
* */
|
|
8259
8648
|
// Utils:
|
|
8260
8649
|
function toFixed(a, n) {
|
|
8261
8650
|
return parseFloat(a.toFixed(n));
|
|
8262
8651
|
}
|
|
8263
|
-
/*
|
|
8652
|
+
/* *
|
|
8653
|
+
*
|
|
8654
|
+
* Class
|
|
8655
|
+
*
|
|
8656
|
+
* */
|
|
8264
8657
|
/**
|
|
8265
8658
|
* The RSI series type.
|
|
8266
8659
|
*
|
|
@@ -8273,6 +8666,11 @@
|
|
|
8273
8666
|
var RSIIndicator = /** @class */ (function (_super) {
|
|
8274
8667
|
__extends(RSIIndicator, _super);
|
|
8275
8668
|
function RSIIndicator() {
|
|
8669
|
+
/* *
|
|
8670
|
+
*
|
|
8671
|
+
* Static Properties
|
|
8672
|
+
*
|
|
8673
|
+
* */
|
|
8276
8674
|
var _this = _super !== null && _super.apply(this,
|
|
8277
8675
|
arguments) || this;
|
|
8278
8676
|
/* *
|
|
@@ -8404,6 +8802,11 @@
|
|
|
8404
8802
|
* Default Export
|
|
8405
8803
|
*
|
|
8406
8804
|
* */
|
|
8805
|
+
/* *
|
|
8806
|
+
*
|
|
8807
|
+
* API Options
|
|
8808
|
+
*
|
|
8809
|
+
* */
|
|
8407
8810
|
/**
|
|
8408
8811
|
* A `RSI` series. If the [type](#series.rsi.type) option is not
|
|
8409
8812
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -8472,11 +8875,21 @@
|
|
|
8472
8875
|
* */
|
|
8473
8876
|
var _this = _super !== null && _super.apply(this,
|
|
8474
8877
|
arguments) || this;
|
|
8878
|
+
/* *
|
|
8879
|
+
*
|
|
8880
|
+
* Properties
|
|
8881
|
+
*
|
|
8882
|
+
* */
|
|
8475
8883
|
_this.data = void 0;
|
|
8476
8884
|
_this.options = void 0;
|
|
8477
8885
|
_this.points = void 0;
|
|
8478
8886
|
return _this;
|
|
8479
8887
|
}
|
|
8888
|
+
/* *
|
|
8889
|
+
*
|
|
8890
|
+
* Functions
|
|
8891
|
+
*
|
|
8892
|
+
* */
|
|
8480
8893
|
StochasticIndicator.prototype.init = function () {
|
|
8481
8894
|
SeriesRegistry.seriesTypes.sma.prototype.init.apply(this, arguments);
|
|
8482
8895
|
// Set default color for lines:
|
|
@@ -8632,6 +9045,11 @@
|
|
|
8632
9045
|
* Default Export
|
|
8633
9046
|
*
|
|
8634
9047
|
* */
|
|
9048
|
+
/* *
|
|
9049
|
+
*
|
|
9050
|
+
* API Options
|
|
9051
|
+
*
|
|
9052
|
+
* */
|
|
8635
9053
|
/**
|
|
8636
9054
|
* A Stochastic indicator. If the [type](#series.stochastic.type) option is not
|
|
8637
9055
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -8678,6 +9096,11 @@
|
|
|
8678
9096
|
var seriesTypes = SeriesRegistry.seriesTypes;
|
|
8679
9097
|
var extend = U.extend,
|
|
8680
9098
|
merge = U.merge;
|
|
9099
|
+
/* *
|
|
9100
|
+
*
|
|
9101
|
+
* Class
|
|
9102
|
+
*
|
|
9103
|
+
* */
|
|
8681
9104
|
/**
|
|
8682
9105
|
* The Slow Stochastic series type.
|
|
8683
9106
|
*
|
|
@@ -8690,13 +9113,28 @@
|
|
|
8690
9113
|
var SlowStochasticIndicator = /** @class */ (function (_super) {
|
|
8691
9114
|
__extends(SlowStochasticIndicator, _super);
|
|
8692
9115
|
function SlowStochasticIndicator() {
|
|
9116
|
+
/* *
|
|
9117
|
+
*
|
|
9118
|
+
* Static Properties
|
|
9119
|
+
*
|
|
9120
|
+
* */
|
|
8693
9121
|
var _this = _super !== null && _super.apply(this,
|
|
8694
9122
|
arguments) || this;
|
|
9123
|
+
/* *
|
|
9124
|
+
*
|
|
9125
|
+
* Properties
|
|
9126
|
+
*
|
|
9127
|
+
* */
|
|
8695
9128
|
_this.data = void 0;
|
|
8696
9129
|
_this.options = void 0;
|
|
8697
9130
|
_this.points = void 0;
|
|
8698
9131
|
return _this;
|
|
8699
9132
|
}
|
|
9133
|
+
/* *
|
|
9134
|
+
*
|
|
9135
|
+
* Functions
|
|
9136
|
+
*
|
|
9137
|
+
* */
|
|
8700
9138
|
SlowStochasticIndicator.prototype.getValues = function (series, params) {
|
|
8701
9139
|
var periods = params.periods,
|
|
8702
9140
|
fastValues = seriesTypes.stochastic.prototype.getValues.call(this,
|
|
@@ -8777,6 +9215,11 @@
|
|
|
8777
9215
|
* Default Export
|
|
8778
9216
|
*
|
|
8779
9217
|
* */
|
|
9218
|
+
/* *
|
|
9219
|
+
*
|
|
9220
|
+
* API Options
|
|
9221
|
+
*
|
|
9222
|
+
* */
|
|
8780
9223
|
/**
|
|
8781
9224
|
* A Slow Stochastic indicator. If the [type](#series.slowstochastic.type)
|
|
8782
9225
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -8817,16 +9260,19 @@
|
|
|
8817
9260
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
8818
9261
|
};
|
|
8819
9262
|
})();
|
|
8820
|
-
var
|
|
8821
|
-
|
|
8822
|
-
SMAIndicator = _a.sma;
|
|
9263
|
+
var ATRIndicator = SeriesRegistry.seriesTypes.atr;
|
|
9264
|
+
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
8823
9265
|
var addEvent = U.addEvent,
|
|
8824
9266
|
correctFloat = U.correctFloat,
|
|
8825
9267
|
isArray = U.isArray,
|
|
8826
9268
|
extend = U.extend,
|
|
8827
9269
|
merge = U.merge,
|
|
8828
9270
|
objectEach = U.objectEach;
|
|
8829
|
-
/*
|
|
9271
|
+
/* *
|
|
9272
|
+
*
|
|
9273
|
+
* Functions
|
|
9274
|
+
*
|
|
9275
|
+
* */
|
|
8830
9276
|
// Utils:
|
|
8831
9277
|
function createPointObj(mainSeries, index, close) {
|
|
8832
9278
|
return {
|
|
@@ -8835,7 +9281,6 @@
|
|
|
8835
9281
|
x: mainSeries.xData[index]
|
|
8836
9282
|
};
|
|
8837
9283
|
}
|
|
8838
|
-
/* eslint-enable require-jsdoc */
|
|
8839
9284
|
/* *
|
|
8840
9285
|
*
|
|
8841
9286
|
* Class
|
|
@@ -8853,6 +9298,11 @@
|
|
|
8853
9298
|
var SupertrendIndicator = /** @class */ (function (_super) {
|
|
8854
9299
|
__extends(SupertrendIndicator, _super);
|
|
8855
9300
|
function SupertrendIndicator() {
|
|
9301
|
+
/* *
|
|
9302
|
+
*
|
|
9303
|
+
* Static Properties
|
|
9304
|
+
*
|
|
9305
|
+
* */
|
|
8856
9306
|
var _this = _super !== null && _super.apply(this,
|
|
8857
9307
|
arguments) || this;
|
|
8858
9308
|
/* *
|
|
@@ -9301,6 +9751,11 @@
|
|
|
9301
9751
|
* Default Export
|
|
9302
9752
|
*
|
|
9303
9753
|
* */
|
|
9754
|
+
/* *
|
|
9755
|
+
*
|
|
9756
|
+
* API Options
|
|
9757
|
+
*
|
|
9758
|
+
* */
|
|
9304
9759
|
/**
|
|
9305
9760
|
* A `Supertrend indicator` series. If the [type](#series.supertrend.type)
|
|
9306
9761
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -9320,7 +9775,7 @@
|
|
|
9320
9775
|
|
|
9321
9776
|
return SupertrendIndicator;
|
|
9322
9777
|
});
|
|
9323
|
-
_registerModule(_modules, 'Stock/Indicators/VBP/VBPPoint.js', [_modules['Core/Series/
|
|
9778
|
+
_registerModule(_modules, 'Stock/Indicators/VBP/VBPPoint.js', [_modules['Core/Series/SeriesRegistry.js']], function (SeriesRegistry) {
|
|
9324
9779
|
/* *
|
|
9325
9780
|
*
|
|
9326
9781
|
* License: www.highcharts.com/license
|
|
@@ -9344,12 +9799,12 @@
|
|
|
9344
9799
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
9345
9800
|
};
|
|
9346
9801
|
})();
|
|
9802
|
+
var SMAPoint = SeriesRegistry.seriesTypes.sma.prototype.pointClass;
|
|
9347
9803
|
/* *
|
|
9348
9804
|
*
|
|
9349
|
-
*
|
|
9805
|
+
* Class
|
|
9350
9806
|
*
|
|
9351
9807
|
* */
|
|
9352
|
-
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
9353
9808
|
var VBPPoint = /** @class */ (function (_super) {
|
|
9354
9809
|
__extends(VBPPoint, _super);
|
|
9355
9810
|
function VBPPoint() {
|
|
@@ -9361,10 +9816,10 @@
|
|
|
9361
9816
|
if (this.negativeGraphic) {
|
|
9362
9817
|
this.negativeGraphic = this.negativeGraphic.destroy();
|
|
9363
9818
|
}
|
|
9364
|
-
return
|
|
9819
|
+
return _super.prototype.destroy.apply(this, arguments);
|
|
9365
9820
|
};
|
|
9366
9821
|
return VBPPoint;
|
|
9367
|
-
}(
|
|
9822
|
+
}(SMAPoint));
|
|
9368
9823
|
/* *
|
|
9369
9824
|
*
|
|
9370
9825
|
* Default Export
|
|
@@ -9404,6 +9859,7 @@
|
|
|
9404
9859
|
var animObject = A.animObject;
|
|
9405
9860
|
var noop = H.noop;
|
|
9406
9861
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
9862
|
+
var columnPrototype = SeriesRegistry.seriesTypes.column.prototype;
|
|
9407
9863
|
var addEvent = U.addEvent,
|
|
9408
9864
|
arrayMax = U.arrayMax,
|
|
9409
9865
|
arrayMin = U.arrayMin,
|
|
@@ -9413,7 +9869,11 @@
|
|
|
9413
9869
|
extend = U.extend,
|
|
9414
9870
|
isArray = U.isArray,
|
|
9415
9871
|
merge = U.merge;
|
|
9416
|
-
/*
|
|
9872
|
+
/* *
|
|
9873
|
+
*
|
|
9874
|
+
* Functions
|
|
9875
|
+
*
|
|
9876
|
+
* */
|
|
9417
9877
|
// Utils
|
|
9418
9878
|
function arrayExtremesOHLC(data) {
|
|
9419
9879
|
var dataLength = data.length,
|
|
@@ -9435,9 +9895,12 @@
|
|
|
9435
9895
|
max: max
|
|
9436
9896
|
};
|
|
9437
9897
|
}
|
|
9438
|
-
|
|
9439
|
-
|
|
9440
|
-
|
|
9898
|
+
var abs = Math.abs;
|
|
9899
|
+
/* *
|
|
9900
|
+
*
|
|
9901
|
+
* Class
|
|
9902
|
+
*
|
|
9903
|
+
* */
|
|
9441
9904
|
/**
|
|
9442
9905
|
* The Volume By Price (VBP) series type.
|
|
9443
9906
|
*
|
|
@@ -9450,8 +9913,18 @@
|
|
|
9450
9913
|
var VBPIndicator = /** @class */ (function (_super) {
|
|
9451
9914
|
__extends(VBPIndicator, _super);
|
|
9452
9915
|
function VBPIndicator() {
|
|
9916
|
+
/* *
|
|
9917
|
+
*
|
|
9918
|
+
* Static Properties
|
|
9919
|
+
*
|
|
9920
|
+
* */
|
|
9453
9921
|
var _this = _super !== null && _super.apply(this,
|
|
9454
9922
|
arguments) || this;
|
|
9923
|
+
/* *
|
|
9924
|
+
*
|
|
9925
|
+
* Properties
|
|
9926
|
+
*
|
|
9927
|
+
* */
|
|
9455
9928
|
_this.data = void 0;
|
|
9456
9929
|
_this.negWidths = void 0;
|
|
9457
9930
|
_this.options = void 0;
|
|
@@ -9464,6 +9937,11 @@
|
|
|
9464
9937
|
_this.zoneLinesSVG = void 0;
|
|
9465
9938
|
return _this;
|
|
9466
9939
|
}
|
|
9940
|
+
/* *
|
|
9941
|
+
*
|
|
9942
|
+
* Functions
|
|
9943
|
+
*
|
|
9944
|
+
* */
|
|
9467
9945
|
VBPIndicator.prototype.init = function (chart) {
|
|
9468
9946
|
var indicator = this,
|
|
9469
9947
|
params,
|
|
@@ -9989,6 +10467,11 @@
|
|
|
9989
10467
|
* Default Export
|
|
9990
10468
|
*
|
|
9991
10469
|
* */
|
|
10470
|
+
/* *
|
|
10471
|
+
*
|
|
10472
|
+
* API Options
|
|
10473
|
+
*
|
|
10474
|
+
* */
|
|
9992
10475
|
/**
|
|
9993
10476
|
* A `Volume By Price (VBP)` series. If the [type](#series.vbp.type) option is
|
|
9994
10477
|
* not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -10039,7 +10522,7 @@
|
|
|
10039
10522
|
merge = U.merge;
|
|
10040
10523
|
/* *
|
|
10041
10524
|
*
|
|
10042
|
-
*
|
|
10525
|
+
* Class
|
|
10043
10526
|
*
|
|
10044
10527
|
* */
|
|
10045
10528
|
/**
|
|
@@ -10054,6 +10537,11 @@
|
|
|
10054
10537
|
var VWAPIndicator = /** @class */ (function (_super) {
|
|
10055
10538
|
__extends(VWAPIndicator, _super);
|
|
10056
10539
|
function VWAPIndicator() {
|
|
10540
|
+
/* *
|
|
10541
|
+
*
|
|
10542
|
+
* Static Properties
|
|
10543
|
+
*
|
|
10544
|
+
* */
|
|
10057
10545
|
var _this = _super !== null && _super.apply(this,
|
|
10058
10546
|
arguments) || this;
|
|
10059
10547
|
/* *
|
|
@@ -10206,6 +10694,11 @@
|
|
|
10206
10694
|
* Default Export
|
|
10207
10695
|
*
|
|
10208
10696
|
* */
|
|
10697
|
+
/* *
|
|
10698
|
+
*
|
|
10699
|
+
* API Options
|
|
10700
|
+
*
|
|
10701
|
+
* */
|
|
10209
10702
|
/**
|
|
10210
10703
|
* A `Volume Weighted Average Price (VWAP)` series. If the
|
|
10211
10704
|
* [type](#series.vwap.type) option is not specified, it is inherited from
|
|
@@ -10251,6 +10744,11 @@
|
|
|
10251
10744
|
var extend = U.extend,
|
|
10252
10745
|
isArray = U.isArray,
|
|
10253
10746
|
merge = U.merge;
|
|
10747
|
+
/* *
|
|
10748
|
+
*
|
|
10749
|
+
* Class
|
|
10750
|
+
*
|
|
10751
|
+
* */
|
|
10254
10752
|
/**
|
|
10255
10753
|
* The Williams %R series type.
|
|
10256
10754
|
*
|
|
@@ -10357,6 +10855,11 @@
|
|
|
10357
10855
|
* Default Export
|
|
10358
10856
|
*
|
|
10359
10857
|
* */
|
|
10858
|
+
/* *
|
|
10859
|
+
*
|
|
10860
|
+
* API Options
|
|
10861
|
+
*
|
|
10862
|
+
* */
|
|
10360
10863
|
/**
|
|
10361
10864
|
* A `Williams %R Oscillator` series. If the [type](#series.williamsr.type)
|
|
10362
10865
|
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -10404,7 +10907,11 @@
|
|
|
10404
10907
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
10405
10908
|
var isArray = U.isArray,
|
|
10406
10909
|
merge = U.merge;
|
|
10407
|
-
/*
|
|
10910
|
+
/* *
|
|
10911
|
+
*
|
|
10912
|
+
* Functions
|
|
10913
|
+
*
|
|
10914
|
+
* */
|
|
10408
10915
|
// Utils:
|
|
10409
10916
|
/**
|
|
10410
10917
|
* @private
|
|
@@ -10438,7 +10945,11 @@
|
|
|
10438
10945
|
points.shift(); // remove point until range < period
|
|
10439
10946
|
return [wmaX, wmaY];
|
|
10440
10947
|
}
|
|
10441
|
-
/*
|
|
10948
|
+
/* *
|
|
10949
|
+
*
|
|
10950
|
+
* Class
|
|
10951
|
+
*
|
|
10952
|
+
* */
|
|
10442
10953
|
/**
|
|
10443
10954
|
* The SMA series type.
|
|
10444
10955
|
*
|
|
@@ -10451,13 +10962,28 @@
|
|
|
10451
10962
|
var WMAIndicator = /** @class */ (function (_super) {
|
|
10452
10963
|
__extends(WMAIndicator, _super);
|
|
10453
10964
|
function WMAIndicator() {
|
|
10965
|
+
/* *
|
|
10966
|
+
*
|
|
10967
|
+
* Static Properties
|
|
10968
|
+
*
|
|
10969
|
+
* */
|
|
10454
10970
|
var _this = _super !== null && _super.apply(this,
|
|
10455
10971
|
arguments) || this;
|
|
10972
|
+
/* *
|
|
10973
|
+
*
|
|
10974
|
+
* Properties
|
|
10975
|
+
*
|
|
10976
|
+
* */
|
|
10456
10977
|
_this.data = void 0;
|
|
10457
10978
|
_this.options = void 0;
|
|
10458
10979
|
_this.points = void 0;
|
|
10459
10980
|
return _this;
|
|
10460
10981
|
}
|
|
10982
|
+
/* *
|
|
10983
|
+
*
|
|
10984
|
+
* Functions
|
|
10985
|
+
*
|
|
10986
|
+
* */
|
|
10461
10987
|
WMAIndicator.prototype.getValues = function (series, params) {
|
|
10462
10988
|
var period = params.period,
|
|
10463
10989
|
xVal = series.xData,
|
|
@@ -10534,6 +11060,11 @@
|
|
|
10534
11060
|
* Default Export
|
|
10535
11061
|
*
|
|
10536
11062
|
* */
|
|
11063
|
+
/* *
|
|
11064
|
+
*
|
|
11065
|
+
* API Options
|
|
11066
|
+
*
|
|
11067
|
+
* */
|
|
10537
11068
|
/**
|
|
10538
11069
|
* A `WMA` series. If the [type](#series.wma.type) option is not specified, it
|
|
10539
11070
|
* is inherited from [chart.type](#chart.type).
|
|
@@ -10581,7 +11112,7 @@
|
|
|
10581
11112
|
extend = U.extend;
|
|
10582
11113
|
/* *
|
|
10583
11114
|
*
|
|
10584
|
-
*
|
|
11115
|
+
* Class
|
|
10585
11116
|
*
|
|
10586
11117
|
* */
|
|
10587
11118
|
/**
|
|
@@ -10596,6 +11127,11 @@
|
|
|
10596
11127
|
var ZigzagIndicator = /** @class */ (function (_super) {
|
|
10597
11128
|
__extends(ZigzagIndicator, _super);
|
|
10598
11129
|
function ZigzagIndicator() {
|
|
11130
|
+
/* *
|
|
11131
|
+
*
|
|
11132
|
+
* Static Properties
|
|
11133
|
+
*
|
|
11134
|
+
* */
|
|
10599
11135
|
var _this = _super !== null && _super.apply(this,
|
|
10600
11136
|
arguments) || this;
|
|
10601
11137
|
/* *
|
|
@@ -10785,6 +11321,11 @@
|
|
|
10785
11321
|
* Default Export
|
|
10786
11322
|
*
|
|
10787
11323
|
* */
|
|
11324
|
+
/* *
|
|
11325
|
+
*
|
|
11326
|
+
* API Options
|
|
11327
|
+
*
|
|
11328
|
+
* */
|
|
10788
11329
|
/**
|
|
10789
11330
|
* A `Zig Zag` series. If the [type](#series.zigzag.type) option is not
|
|
10790
11331
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -10801,7 +11342,7 @@
|
|
|
10801
11342
|
|
|
10802
11343
|
return ZigzagIndicator;
|
|
10803
11344
|
});
|
|
10804
|
-
_registerModule(_modules, 'Stock/Indicators/LinearRegression/
|
|
11345
|
+
_registerModule(_modules, 'Stock/Indicators/LinearRegression/LinearRegressionIndicator.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
|
|
10805
11346
|
/**
|
|
10806
11347
|
*
|
|
10807
11348
|
* (c) 2010-2021 Kamil Kulig
|
|
@@ -10833,7 +11374,7 @@
|
|
|
10833
11374
|
merge = U.merge;
|
|
10834
11375
|
/* *
|
|
10835
11376
|
*
|
|
10836
|
-
*
|
|
11377
|
+
* Class
|
|
10837
11378
|
*
|
|
10838
11379
|
* */
|
|
10839
11380
|
/**
|
|
@@ -10848,6 +11389,11 @@
|
|
|
10848
11389
|
var LinearRegressionIndicator = /** @class */ (function (_super) {
|
|
10849
11390
|
__extends(LinearRegressionIndicator, _super);
|
|
10850
11391
|
function LinearRegressionIndicator() {
|
|
11392
|
+
/* *
|
|
11393
|
+
*
|
|
11394
|
+
* Static Properties
|
|
11395
|
+
*
|
|
11396
|
+
* */
|
|
10851
11397
|
var _this = _super !== null && _super.apply(this,
|
|
10852
11398
|
arguments) || this;
|
|
10853
11399
|
/* *
|
|
@@ -11088,6 +11634,11 @@
|
|
|
11088
11634
|
* Default Export
|
|
11089
11635
|
*
|
|
11090
11636
|
* */
|
|
11637
|
+
/* *
|
|
11638
|
+
*
|
|
11639
|
+
* API Options
|
|
11640
|
+
*
|
|
11641
|
+
* */
|
|
11091
11642
|
/**
|
|
11092
11643
|
* A linear regression series. If the
|
|
11093
11644
|
* [type](#series.linearregression.type) option is not specified, it is
|
|
@@ -11105,7 +11656,7 @@
|
|
|
11105
11656
|
|
|
11106
11657
|
return LinearRegressionIndicator;
|
|
11107
11658
|
});
|
|
11108
|
-
_registerModule(_modules, 'Stock/Indicators/LinearRegressionSlopes/
|
|
11659
|
+
_registerModule(_modules, 'Stock/Indicators/LinearRegressionSlopes/LinearRegressionSlopesIndicator.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
|
|
11109
11660
|
/**
|
|
11110
11661
|
*
|
|
11111
11662
|
* (c) 2010-2021 Kamil Kulig
|
|
@@ -11136,7 +11687,7 @@
|
|
|
11136
11687
|
merge = U.merge;
|
|
11137
11688
|
/* *
|
|
11138
11689
|
*
|
|
11139
|
-
*
|
|
11690
|
+
* Class
|
|
11140
11691
|
*
|
|
11141
11692
|
* */
|
|
11142
11693
|
/**
|
|
@@ -11151,6 +11702,11 @@
|
|
|
11151
11702
|
var LinearRegressionSlopesIndicator = /** @class */ (function (_super) {
|
|
11152
11703
|
__extends(LinearRegressionSlopesIndicator, _super);
|
|
11153
11704
|
function LinearRegressionSlopesIndicator() {
|
|
11705
|
+
/* *
|
|
11706
|
+
*
|
|
11707
|
+
* Static Properties
|
|
11708
|
+
*
|
|
11709
|
+
* */
|
|
11154
11710
|
var _this = _super !== null && _super.apply(this,
|
|
11155
11711
|
arguments) || this;
|
|
11156
11712
|
/* *
|
|
@@ -11197,6 +11753,11 @@
|
|
|
11197
11753
|
* Default Export
|
|
11198
11754
|
*
|
|
11199
11755
|
* */
|
|
11756
|
+
/* *
|
|
11757
|
+
*
|
|
11758
|
+
* API Options
|
|
11759
|
+
*
|
|
11760
|
+
* */
|
|
11200
11761
|
/**
|
|
11201
11762
|
* A linear regression intercept series. If the
|
|
11202
11763
|
* [type](#series.linearregressionslope.type) option is not specified, it is
|
|
@@ -11214,7 +11775,7 @@
|
|
|
11214
11775
|
|
|
11215
11776
|
return LinearRegressionSlopesIndicator;
|
|
11216
11777
|
});
|
|
11217
|
-
_registerModule(_modules, 'Stock/Indicators/LinearRegressionIntercept/
|
|
11778
|
+
_registerModule(_modules, 'Stock/Indicators/LinearRegressionIntercept/LinearRegressionInterceptIndicator.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
|
|
11218
11779
|
/**
|
|
11219
11780
|
*
|
|
11220
11781
|
* (c) 2010-2021 Kamil Kulig
|
|
@@ -11245,7 +11806,7 @@
|
|
|
11245
11806
|
merge = U.merge;
|
|
11246
11807
|
/* *
|
|
11247
11808
|
*
|
|
11248
|
-
*
|
|
11809
|
+
* Class
|
|
11249
11810
|
*
|
|
11250
11811
|
* */
|
|
11251
11812
|
/**
|
|
@@ -11260,6 +11821,11 @@
|
|
|
11260
11821
|
var LinearRegressionInterceptIndicator = /** @class */ (function (_super) {
|
|
11261
11822
|
__extends(LinearRegressionInterceptIndicator, _super);
|
|
11262
11823
|
function LinearRegressionInterceptIndicator() {
|
|
11824
|
+
/* *
|
|
11825
|
+
*
|
|
11826
|
+
* Static Properties
|
|
11827
|
+
*
|
|
11828
|
+
* */
|
|
11263
11829
|
var _this = _super !== null && _super.apply(this,
|
|
11264
11830
|
arguments) || this;
|
|
11265
11831
|
/* *
|
|
@@ -11306,6 +11872,11 @@
|
|
|
11306
11872
|
* Default Export
|
|
11307
11873
|
*
|
|
11308
11874
|
* */
|
|
11875
|
+
/* *
|
|
11876
|
+
*
|
|
11877
|
+
* API Options
|
|
11878
|
+
*
|
|
11879
|
+
* */
|
|
11309
11880
|
/**
|
|
11310
11881
|
* A linear regression intercept series. If the
|
|
11311
11882
|
* [type](#series.linearregressionintercept.type) option is not specified, it is
|
|
@@ -11323,7 +11894,7 @@
|
|
|
11323
11894
|
|
|
11324
11895
|
return LinearRegressionInterceptIndicator;
|
|
11325
11896
|
});
|
|
11326
|
-
_registerModule(_modules, 'Stock/Indicators/LinearRegressionAngle/
|
|
11897
|
+
_registerModule(_modules, 'Stock/Indicators/LinearRegressionAngle/LinearRegressionAngleIndicator.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
|
|
11327
11898
|
/**
|
|
11328
11899
|
*
|
|
11329
11900
|
* (c) 2010-2021 Kamil Kulig
|
|
@@ -11354,7 +11925,7 @@
|
|
|
11354
11925
|
merge = U.merge;
|
|
11355
11926
|
/* *
|
|
11356
11927
|
*
|
|
11357
|
-
*
|
|
11928
|
+
* Class
|
|
11358
11929
|
*
|
|
11359
11930
|
* */
|
|
11360
11931
|
/**
|
|
@@ -11369,6 +11940,11 @@
|
|
|
11369
11940
|
var LinearRegressionAngleIndicator = /** @class */ (function (_super) {
|
|
11370
11941
|
__extends(LinearRegressionAngleIndicator, _super);
|
|
11371
11942
|
function LinearRegressionAngleIndicator() {
|
|
11943
|
+
/* *
|
|
11944
|
+
*
|
|
11945
|
+
* Static Properties
|
|
11946
|
+
*
|
|
11947
|
+
* */
|
|
11372
11948
|
var _this = _super !== null && _super.apply(this,
|
|
11373
11949
|
arguments) || this;
|
|
11374
11950
|
/* *
|
|
@@ -11387,12 +11963,12 @@
|
|
|
11387
11963
|
*
|
|
11388
11964
|
* */
|
|
11389
11965
|
/**
|
|
11390
|
-
|
|
11391
|
-
|
|
11392
|
-
|
|
11393
|
-
|
|
11394
|
-
|
|
11395
|
-
|
|
11966
|
+
* Convert a slope of a line to angle (in degrees) between
|
|
11967
|
+
* the line and x axis
|
|
11968
|
+
* @private
|
|
11969
|
+
* @param {number} slope of the straight line function
|
|
11970
|
+
* @return {number} angle in degrees
|
|
11971
|
+
*/
|
|
11396
11972
|
LinearRegressionAngleIndicator.prototype.slopeToAngle = function (slope) {
|
|
11397
11973
|
return Math.atan(slope) * (180 / Math.PI); // rad to deg
|
|
11398
11974
|
};
|
|
@@ -11475,7 +12051,11 @@
|
|
|
11475
12051
|
var correctFloat = U.correctFloat,
|
|
11476
12052
|
extend = U.extend,
|
|
11477
12053
|
merge = U.merge;
|
|
11478
|
-
/*
|
|
12054
|
+
/* *
|
|
12055
|
+
*
|
|
12056
|
+
* Functions
|
|
12057
|
+
*
|
|
12058
|
+
* */
|
|
11479
12059
|
/**
|
|
11480
12060
|
* @private
|
|
11481
12061
|
*/
|
|
@@ -11495,7 +12075,11 @@
|
|
|
11495
12075
|
function getPointLB(low, base) {
|
|
11496
12076
|
return low * (correctFloat(1 - 2 * base));
|
|
11497
12077
|
}
|
|
11498
|
-
/*
|
|
12078
|
+
/* *
|
|
12079
|
+
*
|
|
12080
|
+
* Class
|
|
12081
|
+
*
|
|
12082
|
+
* */
|
|
11499
12083
|
/**
|
|
11500
12084
|
* The ABands series type
|
|
11501
12085
|
*
|
|
@@ -11759,13 +12343,18 @@
|
|
|
11759
12343
|
var TrendLineIndicator = /** @class */ (function (_super) {
|
|
11760
12344
|
__extends(TrendLineIndicator, _super);
|
|
11761
12345
|
function TrendLineIndicator() {
|
|
12346
|
+
/* *
|
|
12347
|
+
*
|
|
12348
|
+
* Static Properties
|
|
12349
|
+
*
|
|
12350
|
+
* */
|
|
11762
12351
|
var _this = _super !== null && _super.apply(this,
|
|
11763
12352
|
arguments) || this;
|
|
11764
12353
|
/* *
|
|
11765
|
-
|
|
11766
|
-
|
|
11767
|
-
|
|
11768
|
-
|
|
12354
|
+
*
|
|
12355
|
+
* Properties
|
|
12356
|
+
*
|
|
12357
|
+
* */
|
|
11769
12358
|
_this.data = void 0;
|
|
11770
12359
|
_this.options = void 0;
|
|
11771
12360
|
_this.points = void 0;
|
|
@@ -11867,6 +12456,11 @@
|
|
|
11867
12456
|
* Default Export
|
|
11868
12457
|
*
|
|
11869
12458
|
* */
|
|
12459
|
+
/* *
|
|
12460
|
+
*
|
|
12461
|
+
* API Options
|
|
12462
|
+
*
|
|
12463
|
+
* */
|
|
11870
12464
|
/**
|
|
11871
12465
|
* A `TrendLine` series. If the [type](#series.trendline.type) option is not
|
|
11872
12466
|
* specified, it is inherited from [chart.type](#chart.type).
|
|
@@ -12084,8 +12678,6 @@
|
|
|
12084
12678
|
});
|
|
12085
12679
|
_registerModule(_modules, 'masters/indicators/indicators-all.src.js', [], function () {
|
|
12086
12680
|
|
|
12087
|
-
// eslint-disable-next-line max-len
|
|
12088
|
-
// eslint-disable-next-line max-len
|
|
12089
12681
|
|
|
12090
12682
|
});
|
|
12091
12683
|
}));
|