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.
Files changed (763) hide show
  1. package/bower.json +1 -1
  2. package/css/highcharts.css +10 -20
  3. package/css/themes/dark-unica.css +10 -20
  4. package/css/themes/grid-light.css +10 -20
  5. package/css/themes/sand-signika.css +10 -20
  6. package/es-modules/Accessibility/Accessibility.js +6 -0
  7. package/es-modules/Accessibility/Components/LegendComponent.js +8 -8
  8. package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +3 -2
  9. package/es-modules/Accessibility/Options/A11yDefaults.js +1 -1
  10. package/es-modules/Core/Axis/Axis.js +3 -0
  11. package/es-modules/Core/Axis/Axis3D.js +1 -1
  12. package/es-modules/Core/Axis/AxisDefaults.js +1 -1
  13. package/es-modules/Core/Axis/BrokenAxis.js +1 -1
  14. package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +4 -0
  15. package/es-modules/Core/Axis/NavigatorAxis.js +2 -2
  16. package/es-modules/Core/Axis/OrdinalAxis.js +2 -2
  17. package/es-modules/Core/Axis/RadialAxis.js +1 -1
  18. package/es-modules/Core/Axis/Stacking/StackItem.js +262 -0
  19. package/es-modules/Core/Axis/Stacking/StackingAxis.js +468 -0
  20. package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +732 -0
  21. package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +313 -0
  22. package/es-modules/Core/Axis/WaterfallAxis.js +1 -1
  23. package/es-modules/Core/Axis/ZAxis.js +73 -70
  24. package/es-modules/Core/Chart/Chart.js +16 -2
  25. package/es-modules/Core/Chart/Chart3D.js +2 -2
  26. package/es-modules/Core/Chart/ChartDefaults.js +151 -2
  27. package/es-modules/Core/Chart/StockChart.js +5 -3
  28. package/es-modules/Core/DefaultOptions.js +2 -1
  29. package/es-modules/Core/Geometry/CircleUtilities.js +4 -4
  30. package/es-modules/Core/Globals.js +2 -1
  31. package/es-modules/{Extensions → Core}/Math3D.js +48 -43
  32. package/es-modules/Core/Navigator.js +24 -7
  33. package/es-modules/Core/Pointer.js +7 -9
  34. package/es-modules/Core/Renderer/HTML/AST.js +4 -1
  35. package/es-modules/Core/Renderer/SVG/SVGElement.js +103 -163
  36. package/es-modules/Core/Renderer/SVG/SVGLabel.js +29 -27
  37. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +3 -3
  38. package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +1 -1
  39. package/es-modules/Core/Renderer/SVG/TextBuilder.js +5 -3
  40. package/es-modules/Core/Scrollbar.js +3 -1
  41. package/es-modules/Core/Series/DataLabel.js +8 -6
  42. package/es-modules/Core/Series/Point.js +2 -2
  43. package/es-modules/Core/Series/Series.js +36 -31
  44. package/es-modules/Core/Series/Series3D.js +1 -1
  45. package/es-modules/Core/Series/SeriesDefaults.js +8 -3
  46. package/es-modules/Core/Series/SeriesRegistry.js +6 -29
  47. package/es-modules/Core/Tooltip.js +14 -3
  48. package/es-modules/Core/Utilities.js +1 -3
  49. package/es-modules/Data/DataConverter.js +5 -0
  50. package/es-modules/Data/DataPromise.js +1 -1
  51. package/es-modules/Data/DataSeriesComposition.js +288 -0
  52. package/es-modules/Data/DataSeriesConverter.js +1 -1
  53. package/es-modules/Data/DataTable.js +2 -2
  54. package/es-modules/Data/Modifiers/ChainModifier.js +1 -1
  55. package/es-modules/Data/Modifiers/DataModifier.js +1 -1
  56. package/es-modules/Data/Modifiers/GroupModifier.js +1 -1
  57. package/es-modules/Data/Modifiers/InvertModifier.js +1 -1
  58. package/es-modules/Data/Modifiers/RangeModifier.js +1 -1
  59. package/es-modules/Data/Modifiers/SeriesPointsModifier.js +1 -1
  60. package/es-modules/Data/Modifiers/SortModifier.js +1 -1
  61. package/es-modules/Data/Parsers/DataParser.js +1 -1
  62. package/es-modules/Data/Stores/DataStore.js +1 -1
  63. package/es-modules/Extensions/Annotations/Annotation.js +347 -1156
  64. package/es-modules/Extensions/Annotations/AnnotationChart.js +291 -0
  65. package/es-modules/Extensions/Annotations/AnnotationDefaults.js +624 -0
  66. package/es-modules/Extensions/Annotations/ControlPoint.js +89 -64
  67. package/es-modules/Extensions/Annotations/{Mixins/ControllableMixin.js → Controllables/Controllable.js} +300 -241
  68. package/es-modules/Extensions/Annotations/Controllables/ControllableCircle.js +63 -50
  69. package/es-modules/Extensions/Annotations/Controllables/ControllableDefaults.js +95 -0
  70. package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +90 -61
  71. package/es-modules/Extensions/Annotations/Controllables/ControllableImage.js +50 -44
  72. package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +95 -78
  73. package/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +167 -51
  74. package/es-modules/Extensions/Annotations/Controllables/ControllableRect.js +53 -52
  75. package/es-modules/Extensions/Annotations/{Mixins/EventEmitterMixin.js → EventEmitter.js} +136 -116
  76. package/es-modules/Extensions/Annotations/MockPoint.js +210 -145
  77. package/es-modules/Extensions/Annotations/NavigationBindings.js +272 -674
  78. package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +396 -0
  79. package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +98 -0
  80. package/es-modules/Extensions/Annotations/Popup/Popup.js +295 -0
  81. package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +177 -0
  82. package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +81 -0
  83. package/es-modules/Extensions/Annotations/Popup/PopupIndicators.js +609 -0
  84. package/es-modules/Extensions/Annotations/Popup/PopupTabs.js +134 -0
  85. package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +10 -14
  86. package/es-modules/Extensions/Annotations/Types/CrookedLine.js +11 -19
  87. package/es-modules/Extensions/Annotations/Types/ElliottWave.js +10 -10
  88. package/es-modules/Extensions/Annotations/Types/Fibonacci.js +28 -20
  89. package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +63 -63
  90. package/es-modules/Extensions/Annotations/Types/InfinityLine.js +10 -19
  91. package/es-modules/Extensions/Annotations/Types/Measure.js +255 -249
  92. package/es-modules/Extensions/Annotations/Types/Pitchfork.js +11 -17
  93. package/es-modules/Extensions/Annotations/Types/TimeCycles.js +20 -17
  94. package/es-modules/Extensions/Annotations/Types/Tunnel.js +12 -13
  95. package/es-modules/Extensions/Annotations/Types/VerticalLine.js +11 -15
  96. package/es-modules/Extensions/Boost/Boost.js +320 -15
  97. package/es-modules/Extensions/Boost/BoostChart.js +245 -0
  98. package/es-modules/Extensions/Boost/BoostSeries.js +927 -0
  99. package/es-modules/Extensions/Boost/BoostableMap.js +21 -5
  100. package/es-modules/Extensions/Boost/Boostables.js +13 -2
  101. package/es-modules/Extensions/Boost/NamedColors.js +15 -6
  102. package/es-modules/Extensions/Boost/WGLDrawMode.js +36 -0
  103. package/es-modules/Extensions/Boost/WGLRenderer.js +288 -295
  104. package/es-modules/Extensions/Boost/WGLShader.js +370 -376
  105. package/es-modules/Extensions/Boost/WGLVertexBuffer.js +192 -0
  106. package/es-modules/Extensions/BoostCanvas.js +62 -46
  107. package/es-modules/Extensions/Breadcrumbs.js +4 -0
  108. package/es-modules/Extensions/DataGrouping.js +65 -27
  109. package/es-modules/Extensions/Debugger/Debugger.js +60 -22
  110. package/es-modules/Extensions/DraggablePoints.js +4 -3
  111. package/es-modules/Extensions/Drilldown.js +7 -8
  112. package/es-modules/Extensions/{ExportData.js → ExportData/ExportData.js} +341 -530
  113. package/es-modules/Extensions/ExportData/ExportDataDefaults.js +272 -0
  114. package/es-modules/Extensions/Exporting/Exporting.js +5 -1
  115. package/es-modules/Extensions/Exporting/ExportingDefaults.js +3 -1
  116. package/es-modules/Extensions/{FullScreen.js → Exporting/Fullscreen.js} +72 -27
  117. package/es-modules/Extensions/MarkerClusters.js +2 -0
  118. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
  119. package/es-modules/Extensions/Oldie/Oldie.js +1 -1
  120. package/es-modules/Extensions/ParallelCoordinates.js +11 -7
  121. package/es-modules/Extensions/ScrollablePlotArea.js +1 -1
  122. package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +2 -2
  123. package/es-modules/Extensions/Sonification/ChartSonify.js +1 -1
  124. package/es-modules/Maps/MapPointer.js +1 -1
  125. package/es-modules/Maps/MapView.js +2 -1
  126. package/es-modules/Series/{Area3DSeries.js → Area3D/Area3DSeries.js} +42 -20
  127. package/es-modules/Series/AreaRange/AreaRangeSeries.js +8 -2
  128. package/es-modules/Series/Bubble/BubbleLegendComposition.js +223 -231
  129. package/es-modules/Series/Bubble/BubbleLegendItem.js +46 -45
  130. package/es-modules/Series/Bubble/BubbleSeries.js +85 -66
  131. package/es-modules/Series/Column/ColumnSeries.js +2 -0
  132. package/es-modules/Series/Column3D/Column3DComposition.js +2 -2
  133. package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +1 -1
  134. package/es-modules/Series/Cylinder/CylinderComposition.js +1 -1
  135. package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +24 -11
  136. package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +16 -2
  137. package/es-modules/Series/DragNodesComposition.js +166 -0
  138. package/es-modules/Series/Funnel3D/Funnel3DSeries.js +1 -1
  139. package/es-modules/Series/Gantt/GanttSeries.js +1 -1
  140. package/es-modules/Series/GraphLayoutComposition.js +130 -0
  141. package/es-modules/Series/Heatmap/HeatmapSeries.js +5 -1
  142. package/es-modules/Series/Lollipop/LollipopPoint.js +21 -11
  143. package/es-modules/Series/Lollipop/LollipopSeries.js +15 -10
  144. package/es-modules/Series/Map/MapSeries.js +6 -1
  145. package/es-modules/Series/MapBubble/MapBubblePoint.js +15 -17
  146. package/es-modules/Series/MapBubble/MapBubbleSeries.js +19 -19
  147. package/es-modules/Series/Networkgraph/EulerIntegration.js +199 -0
  148. package/es-modules/Series/Networkgraph/NetworkgraphPoint.js +290 -0
  149. package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +401 -0
  150. package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +545 -0
  151. package/es-modules/Series/Networkgraph/QuadTree.js +66 -272
  152. package/es-modules/Series/Networkgraph/QuadTreeNode.js +271 -0
  153. package/es-modules/Series/Networkgraph/{Layouts.js → ReingoldFruchtermanLayout.js} +240 -259
  154. package/es-modules/Series/Networkgraph/VerletIntegration.js +193 -0
  155. package/es-modules/Series/Organization/OrganizationSeries.js +9 -1
  156. package/es-modules/Series/PackedBubble/PackedBubbleIntegration.js +81 -0
  157. package/es-modules/Series/PackedBubble/{PackedBubbleComposition.js → PackedBubbleLayout.js} +114 -77
  158. package/es-modules/Series/PackedBubble/PackedBubblePoint.js +2 -2
  159. package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +197 -570
  160. package/es-modules/Series/PackedBubble/PackedBubbleSeriesDefaults.js +394 -0
  161. package/es-modules/Series/Pie/PieSeries.js +3 -1
  162. package/es-modules/Series/PolarComposition.js +12 -12
  163. package/es-modules/Series/Sankey/SankeySeries.js +13 -1
  164. package/es-modules/Series/Scatter/ScatterSeries.js +4 -1
  165. package/es-modules/Series/Scatter3D/Scatter3DSeries.js +1 -1
  166. package/es-modules/Series/SeriesOnPointComposition.js +5 -1
  167. package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +1 -1
  168. package/es-modules/Series/Sunburst/SunburstPoint.js +5 -6
  169. package/es-modules/Series/Sunburst/SunburstSeries.js +24 -2
  170. package/es-modules/Series/Timeline/TimelineSeries.js +2 -0
  171. package/es-modules/Series/Treemap/TreemapSeries.js +3 -3
  172. package/es-modules/Series/Vector/VectorSeries.js +2 -4
  173. package/es-modules/Series/Wordcloud/WordcloudSeries.js +1 -1
  174. package/es-modules/Series/Wordcloud/WordcloudUtils.js +1 -1
  175. package/es-modules/Series/XRange/XRangePoint.js +54 -45
  176. package/es-modules/Series/XRange/XRangeSeries.js +121 -273
  177. package/es-modules/Series/XRange/XRangeSeriesDefaults.js +211 -0
  178. package/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +10 -2
  179. package/es-modules/Stock/Indicators/AD/ADIndicator.js +5 -0
  180. package/es-modules/Stock/Indicators/AO/AOIndicator.js +22 -11
  181. package/es-modules/Stock/Indicators/APO/APOIndicator.js +6 -1
  182. package/es-modules/Stock/Indicators/ATR/ATRIndicator.js +16 -3
  183. package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +15 -2
  184. package/es-modules/Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js +6 -2
  185. package/es-modules/Stock/Indicators/BB/BBIndicator.js +5 -1
  186. package/es-modules/Stock/Indicators/CCI/CCIIndicator.js +16 -3
  187. package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +20 -0
  188. package/es-modules/Stock/Indicators/CMO/CMOIndicator.js +15 -1
  189. package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +7 -2
  190. package/es-modules/Stock/Indicators/DEMA/DEMAIndicator.js +25 -0
  191. package/es-modules/Stock/Indicators/DMI/DMIIndicator.js +5 -0
  192. package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +19 -8
  193. package/es-modules/Stock/Indicators/EMA/EMAIndicator.js +10 -0
  194. package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +34 -15
  195. package/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +25 -0
  196. package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +12 -1
  197. package/es-modules/Stock/Indicators/LinearRegression/{LinearRegression.js → LinearRegressionIndicator.js} +11 -1
  198. package/es-modules/Stock/Indicators/LinearRegressionAngle/{LinearRegressionAngle.js → LinearRegressionAngleIndicator.js} +12 -7
  199. package/es-modules/Stock/Indicators/LinearRegressionIntercept/{LinearRegressionIntercept.js → LinearRegressionInterceptIndicator.js} +11 -1
  200. package/es-modules/Stock/Indicators/LinearRegressionSlopes/{LinearRegressionSlopes.js → LinearRegressionSlopesIndicator.js} +11 -1
  201. package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +21 -10
  202. package/es-modules/Stock/Indicators/MFI/MFIIndicator.js +23 -10
  203. package/es-modules/Stock/Indicators/Momentum/MomentumIndicator.js +30 -2
  204. package/es-modules/Stock/Indicators/NATR/NATRIndicator.js +16 -1
  205. package/es-modules/Stock/Indicators/OBV/OBVIndicator.js +10 -0
  206. package/es-modules/Stock/Indicators/PC/PCIndicator.js +13 -8
  207. package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +14 -4
  208. package/es-modules/Stock/Indicators/PSAR/PSARIndicator.js +16 -3
  209. package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +16 -6
  210. package/es-modules/Stock/Indicators/PivotPoints/PivotPointsPoint.js +16 -12
  211. package/es-modules/Stock/Indicators/PriceEnvelopes/PriceEnvelopesIndicator.js +25 -0
  212. package/es-modules/Stock/Indicators/ROC/ROCIndicator.js +15 -2
  213. package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +20 -2
  214. package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
  215. package/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +25 -0
  216. package/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +15 -0
  217. package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +17 -3
  218. package/es-modules/Stock/Indicators/TRIX/TRIXIndicator.js +25 -0
  219. package/es-modules/Stock/Indicators/TrendLine/TrendLineIndicator.js +14 -4
  220. package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +32 -3
  221. package/es-modules/Stock/Indicators/VBP/VBPPoint.js +6 -6
  222. package/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +11 -1
  223. package/es-modules/Stock/Indicators/WMA/WMAIndicator.js +30 -2
  224. package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +10 -0
  225. package/es-modules/Stock/Indicators/Zigzag/ZigzagIndicator.js +11 -1
  226. package/es-modules/Stock/StockToolbar.js +568 -0
  227. package/es-modules/Stock/StockTools.js +256 -0
  228. package/es-modules/Stock/StockToolsBindings.js +114 -629
  229. package/es-modules/Stock/StockToolsDefaults.js +1190 -0
  230. package/es-modules/Stock/StockToolsGui.js +150 -1771
  231. package/es-modules/Stock/StockToolsUtilities.js +423 -0
  232. package/es-modules/masters/highcharts-3d.src.js +5 -4
  233. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  234. package/es-modules/masters/highcharts-more.src.js +4 -3
  235. package/es-modules/masters/highcharts.src.js +5 -2
  236. package/es-modules/masters/highmaps.src.js +1 -1
  237. package/es-modules/masters/highstock.src.js +1 -1
  238. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  239. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  240. package/es-modules/masters/indicators/ao.src.js +1 -1
  241. package/es-modules/masters/indicators/apo.src.js +1 -1
  242. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  243. package/es-modules/masters/indicators/aroon.src.js +1 -1
  244. package/es-modules/masters/indicators/atr.src.js +1 -1
  245. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  246. package/es-modules/masters/indicators/cci.src.js +1 -1
  247. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  248. package/es-modules/masters/indicators/cmf.src.js +1 -1
  249. package/es-modules/masters/indicators/cmo.src.js +1 -1
  250. package/es-modules/masters/indicators/dema.src.js +1 -1
  251. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  252. package/es-modules/masters/indicators/dmi.src.js +1 -1
  253. package/es-modules/masters/indicators/dpo.src.js +1 -1
  254. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  255. package/es-modules/masters/indicators/indicators-all.src.js +5 -7
  256. package/es-modules/masters/indicators/indicators.src.js +1 -1
  257. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  258. package/es-modules/masters/indicators/klinger.src.js +1 -1
  259. package/es-modules/masters/indicators/macd.src.js +1 -1
  260. package/es-modules/masters/indicators/mfi.src.js +1 -1
  261. package/es-modules/masters/indicators/momentum.src.js +1 -1
  262. package/es-modules/masters/indicators/natr.src.js +1 -1
  263. package/es-modules/masters/indicators/obv.src.js +1 -1
  264. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  265. package/es-modules/masters/indicators/ppo.src.js +1 -1
  266. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  267. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  268. package/es-modules/masters/indicators/psar.src.js +1 -1
  269. package/es-modules/masters/indicators/regressions.src.js +5 -5
  270. package/es-modules/masters/indicators/roc.src.js +1 -1
  271. package/es-modules/masters/indicators/rsi.src.js +1 -1
  272. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  273. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  274. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  275. package/es-modules/masters/indicators/tema.src.js +1 -1
  276. package/es-modules/masters/indicators/trendline.src.js +1 -1
  277. package/es-modules/masters/indicators/trix.src.js +1 -1
  278. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  279. package/es-modules/masters/indicators/vwap.src.js +1 -1
  280. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  281. package/es-modules/masters/indicators/wma.src.js +1 -1
  282. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  283. package/es-modules/masters/modules/accessibility.src.js +1 -1
  284. package/es-modules/masters/modules/annotations-advanced.src.js +6 -4
  285. package/es-modules/masters/modules/annotations.src.js +6 -4
  286. package/es-modules/masters/modules/arc-diagram.src.js +1 -1
  287. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  288. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  289. package/es-modules/masters/modules/boost.src.js +6 -2
  290. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  291. package/es-modules/masters/modules/bullet.src.js +1 -1
  292. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  293. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  294. package/es-modules/masters/modules/cylinder.src.js +1 -1
  295. package/es-modules/masters/modules/data.src.js +1 -1
  296. package/es-modules/masters/modules/datagrouping.src.js +1 -1
  297. package/es-modules/masters/modules/debugger.src.js +5 -3
  298. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  299. package/es-modules/masters/modules/dotplot.src.js +1 -1
  300. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  301. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  302. package/es-modules/masters/modules/drilldown.src.js +1 -1
  303. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  304. package/es-modules/masters/modules/export-data.src.js +5 -2
  305. package/es-modules/masters/modules/exporting.src.js +1 -2
  306. package/es-modules/masters/modules/full-screen.src.js +6 -2
  307. package/es-modules/masters/modules/funnel.src.js +1 -1
  308. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  309. package/es-modules/masters/modules/gantt.src.js +3 -2
  310. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  311. package/es-modules/masters/modules/heatmap.src.js +1 -1
  312. package/es-modules/masters/modules/heikinashi.src.js +1 -1
  313. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  314. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  315. package/es-modules/masters/modules/item-series.src.js +1 -1
  316. package/es-modules/masters/modules/lollipop.src.js +1 -1
  317. package/es-modules/masters/modules/map.src.js +2 -2
  318. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  319. package/es-modules/masters/modules/networkgraph.src.js +5 -2
  320. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  321. package/es-modules/masters/modules/offline-exporting.src.js +1 -1
  322. package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
  323. package/es-modules/masters/modules/oldie.src.js +1 -1
  324. package/es-modules/masters/modules/organization.src.js +1 -1
  325. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  326. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  327. package/es-modules/masters/modules/pareto.src.js +1 -1
  328. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  329. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  330. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  331. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  332. package/es-modules/masters/modules/sankey.src.js +1 -1
  333. package/es-modules/masters/modules/series-label.src.js +1 -1
  334. package/es-modules/masters/modules/series-on-point.src.js +1 -1
  335. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  336. package/es-modules/masters/modules/sonification.src.js +1 -1
  337. package/es-modules/masters/modules/static-scale.src.js +1 -1
  338. package/es-modules/masters/modules/stock-tools.src.js +10 -3
  339. package/es-modules/masters/modules/stock.src.js +1 -1
  340. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  341. package/es-modules/masters/modules/sunburst.src.js +1 -1
  342. package/es-modules/masters/modules/tilemap.src.js +1 -1
  343. package/es-modules/masters/modules/timeline.src.js +1 -1
  344. package/es-modules/masters/modules/treegrid.src.js +2 -2
  345. package/es-modules/masters/modules/treemap.src.js +1 -1
  346. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  347. package/es-modules/masters/modules/variwide.src.js +1 -1
  348. package/es-modules/masters/modules/vector.src.js +1 -1
  349. package/es-modules/masters/modules/venn.src.js +1 -1
  350. package/es-modules/masters/modules/windbarb.src.js +1 -1
  351. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  352. package/es-modules/masters/modules/xrange.src.js +5 -2
  353. package/es-modules/masters/themes/avocado.src.js +1 -1
  354. package/es-modules/masters/themes/brand-dark.src.js +1 -1
  355. package/es-modules/masters/themes/brand-light.src.js +1 -1
  356. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  357. package/es-modules/masters/themes/dark-green.src.js +1 -1
  358. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  359. package/es-modules/masters/themes/gray.src.js +1 -1
  360. package/es-modules/masters/themes/grid-light.src.js +1 -1
  361. package/es-modules/masters/themes/grid.src.js +1 -1
  362. package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
  363. package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
  364. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  365. package/es-modules/masters/themes/skies.src.js +1 -1
  366. package/es-modules/masters/themes/sunset.src.js +1 -1
  367. package/highcharts-3d.js +98 -99
  368. package/highcharts-3d.js.map +1 -1
  369. package/highcharts-3d.src.js +232 -211
  370. package/highcharts-gantt.js +808 -809
  371. package/highcharts-gantt.js.map +1 -1
  372. package/highcharts-gantt.src.js +2308 -2136
  373. package/highcharts-more.d.ts +5 -8
  374. package/highcharts-more.js +201 -194
  375. package/highcharts-more.js.map +1 -1
  376. package/highcharts-more.src.d.ts +5 -8
  377. package/highcharts-more.src.js +3671 -3275
  378. package/highcharts.d.ts +1400 -885
  379. package/highcharts.js +593 -595
  380. package/highcharts.js.map +1 -1
  381. package/highcharts.src.d.ts +1400 -885
  382. package/highcharts.src.js +847 -716
  383. package/highmaps.js +762 -763
  384. package/highmaps.js.map +1 -1
  385. package/highmaps.src.js +1288 -1129
  386. package/highstock.js +796 -798
  387. package/highstock.js.map +1 -1
  388. package/highstock.src.js +953 -762
  389. package/indicators/acceleration-bands.js +1 -1
  390. package/indicators/acceleration-bands.js.map +1 -1
  391. package/indicators/acceleration-bands.src.js +11 -3
  392. package/indicators/accumulation-distribution.js +1 -1
  393. package/indicators/accumulation-distribution.js.map +1 -1
  394. package/indicators/accumulation-distribution.src.js +6 -1
  395. package/indicators/ao.js +6 -6
  396. package/indicators/ao.js.map +1 -1
  397. package/indicators/ao.src.js +23 -14
  398. package/indicators/apo.js +1 -1
  399. package/indicators/apo.js.map +1 -1
  400. package/indicators/apo.src.js +6 -1
  401. package/indicators/aroon-oscillator.js +10 -10
  402. package/indicators/aroon-oscillator.js.map +1 -1
  403. package/indicators/aroon-oscillator.src.js +7 -3
  404. package/indicators/aroon.js +1 -1
  405. package/indicators/aroon.js.map +1 -1
  406. package/indicators/aroon.src.js +16 -3
  407. package/indicators/atr.js +1 -1
  408. package/indicators/atr.js.map +1 -1
  409. package/indicators/atr.src.js +17 -4
  410. package/indicators/bollinger-bands.js +1 -1
  411. package/indicators/bollinger-bands.js.map +1 -1
  412. package/indicators/bollinger-bands.src.js +6 -2
  413. package/indicators/cci.js +1 -1
  414. package/indicators/cci.js.map +1 -1
  415. package/indicators/cci.src.js +17 -4
  416. package/indicators/chaikin.js +8 -8
  417. package/indicators/chaikin.js.map +1 -1
  418. package/indicators/chaikin.src.js +13 -5
  419. package/indicators/cmf.js +1 -1
  420. package/indicators/cmf.js.map +1 -1
  421. package/indicators/cmf.src.js +21 -1
  422. package/indicators/cmo.js +1 -1
  423. package/indicators/cmo.js.map +1 -1
  424. package/indicators/cmo.src.js +16 -2
  425. package/indicators/dema.js +1 -1
  426. package/indicators/dema.js.map +1 -1
  427. package/indicators/dema.src.js +26 -1
  428. package/indicators/disparity-index.js +1 -1
  429. package/indicators/disparity-index.src.js +1 -1
  430. package/indicators/dmi.js +1 -1
  431. package/indicators/dmi.js.map +1 -1
  432. package/indicators/dmi.src.js +6 -1
  433. package/indicators/dpo.js +1 -1
  434. package/indicators/dpo.js.map +1 -1
  435. package/indicators/dpo.src.js +20 -9
  436. package/indicators/ichimoku-kinko-hyo.js +1 -1
  437. package/indicators/ichimoku-kinko-hyo.js.map +1 -1
  438. package/indicators/ichimoku-kinko-hyo.src.js +35 -16
  439. package/indicators/indicators-all.js +199 -199
  440. package/indicators/indicators-all.js.map +1 -1
  441. package/indicators/indicators-all.src.js +754 -162
  442. package/indicators/indicators.js +1 -1
  443. package/indicators/indicators.js.map +1 -1
  444. package/indicators/indicators.src.js +12 -2
  445. package/indicators/keltner-channels.js +1 -1
  446. package/indicators/keltner-channels.js.map +1 -1
  447. package/indicators/keltner-channels.src.js +26 -1
  448. package/indicators/klinger.js +12 -12
  449. package/indicators/klinger.js.map +1 -1
  450. package/indicators/klinger.src.js +13 -4
  451. package/indicators/macd.js +1 -1
  452. package/indicators/macd.js.map +1 -1
  453. package/indicators/macd.src.js +22 -13
  454. package/indicators/mfi.js +1 -1
  455. package/indicators/mfi.js.map +1 -1
  456. package/indicators/mfi.src.js +24 -11
  457. package/indicators/momentum.js +1 -1
  458. package/indicators/momentum.js.map +1 -1
  459. package/indicators/momentum.src.js +31 -3
  460. package/indicators/natr.js +1 -1
  461. package/indicators/natr.js.map +1 -1
  462. package/indicators/natr.src.js +17 -3
  463. package/indicators/obv.js +1 -1
  464. package/indicators/obv.js.map +1 -1
  465. package/indicators/obv.src.js +11 -1
  466. package/indicators/pivot-points.js +1 -1
  467. package/indicators/pivot-points.js.map +1 -1
  468. package/indicators/pivot-points.src.js +32 -19
  469. package/indicators/ppo.js +1 -1
  470. package/indicators/ppo.js.map +1 -1
  471. package/indicators/ppo.src.js +15 -5
  472. package/indicators/price-channel.js +1 -1
  473. package/indicators/price-channel.js.map +1 -1
  474. package/indicators/price-channel.src.js +14 -9
  475. package/indicators/price-envelopes.js +1 -1
  476. package/indicators/price-envelopes.js.map +1 -1
  477. package/indicators/price-envelopes.src.js +26 -1
  478. package/indicators/psar.js +1 -1
  479. package/indicators/psar.js.map +1 -1
  480. package/indicators/psar.src.js +17 -4
  481. package/indicators/regressions.js +12 -11
  482. package/indicators/regressions.js.map +1 -1
  483. package/indicators/regressions.src.js +50 -15
  484. package/indicators/roc.js +1 -1
  485. package/indicators/roc.js.map +1 -1
  486. package/indicators/roc.src.js +16 -3
  487. package/indicators/rsi.js +1 -1
  488. package/indicators/rsi.js.map +1 -1
  489. package/indicators/rsi.src.js +21 -3
  490. package/indicators/slow-stochastic.js +1 -1
  491. package/indicators/slow-stochastic.js.map +1 -1
  492. package/indicators/slow-stochastic.src.js +26 -1
  493. package/indicators/stochastic.js +1 -1
  494. package/indicators/stochastic.js.map +1 -1
  495. package/indicators/stochastic.src.js +16 -1
  496. package/indicators/supertrend.js +7 -7
  497. package/indicators/supertrend.js.map +1 -1
  498. package/indicators/supertrend.src.js +18 -6
  499. package/indicators/tema.js +1 -1
  500. package/indicators/tema.src.js +1 -1
  501. package/indicators/trendline.js +1 -1
  502. package/indicators/trendline.js.map +1 -1
  503. package/indicators/trendline.src.js +15 -5
  504. package/indicators/trix.js +1 -1
  505. package/indicators/trix.js.map +1 -1
  506. package/indicators/trix.src.js +26 -1
  507. package/indicators/volume-by-price.js +17 -17
  508. package/indicators/volume-by-price.js.map +1 -1
  509. package/indicators/volume-by-price.src.js +38 -10
  510. package/indicators/vwap.js +1 -1
  511. package/indicators/vwap.js.map +1 -1
  512. package/indicators/vwap.src.js +12 -2
  513. package/indicators/williams-r.js +1 -1
  514. package/indicators/williams-r.js.map +1 -1
  515. package/indicators/williams-r.src.js +11 -1
  516. package/indicators/wma.js +1 -1
  517. package/indicators/wma.js.map +1 -1
  518. package/indicators/wma.src.js +31 -3
  519. package/indicators/zigzag.js +1 -1
  520. package/indicators/zigzag.js.map +1 -1
  521. package/indicators/zigzag.src.js +12 -2
  522. package/modules/accessibility.js +183 -182
  523. package/modules/accessibility.js.map +1 -1
  524. package/modules/accessibility.src.js +559 -554
  525. package/modules/annotations-advanced.d.ts +1 -1
  526. package/modules/annotations-advanced.js +193 -192
  527. package/modules/annotations-advanced.js.map +1 -1
  528. package/modules/annotations-advanced.src.d.ts +1 -1
  529. package/modules/annotations-advanced.src.js +9263 -8654
  530. package/modules/annotations.d.ts +1 -1
  531. package/modules/annotations.js +128 -126
  532. package/modules/annotations.js.map +1 -1
  533. package/modules/annotations.src.d.ts +1 -1
  534. package/modules/annotations.src.js +6699 -6063
  535. package/modules/arc-diagram.js +1 -1
  536. package/modules/arc-diagram.src.js +1 -1
  537. package/modules/arrow-symbols.js +1 -1
  538. package/modules/arrow-symbols.src.js +1 -1
  539. package/modules/boost-canvas.d.ts +19 -0
  540. package/modules/boost-canvas.js +81 -16
  541. package/modules/boost-canvas.js.map +1 -1
  542. package/modules/boost-canvas.src.d.ts +19 -0
  543. package/modules/boost-canvas.src.js +3334 -50
  544. package/modules/boost.d.ts +8 -26
  545. package/modules/boost.js +84 -77
  546. package/modules/boost.js.map +1 -1
  547. package/modules/boost.src.d.ts +8 -26
  548. package/modules/boost.src.js +2423 -1888
  549. package/modules/broken-axis.js +2 -2
  550. package/modules/broken-axis.js.map +1 -1
  551. package/modules/broken-axis.src.js +2 -2
  552. package/modules/bullet.js +1 -1
  553. package/modules/bullet.src.js +1 -1
  554. package/modules/coloraxis.js +1 -1
  555. package/modules/coloraxis.js.map +1 -1
  556. package/modules/coloraxis.src.js +5 -1
  557. package/modules/current-date-indicator.js +1 -1
  558. package/modules/current-date-indicator.src.js +1 -1
  559. package/modules/cylinder.js +9 -9
  560. package/modules/cylinder.js.map +1 -1
  561. package/modules/cylinder.src.js +2 -2
  562. package/modules/data.js +1 -1
  563. package/modules/data.src.js +1 -1
  564. package/modules/datagrouping.d.ts +22 -0
  565. package/modules/datagrouping.js +4 -4
  566. package/modules/datagrouping.js.map +1 -1
  567. package/modules/datagrouping.src.d.ts +22 -0
  568. package/modules/datagrouping.src.js +66 -28
  569. package/modules/debugger.js +6 -5
  570. package/modules/debugger.js.map +1 -1
  571. package/modules/debugger.src.js +81 -40
  572. package/modules/dependency-wheel.js +12 -12
  573. package/modules/dependency-wheel.js.map +1 -1
  574. package/modules/dependency-wheel.src.js +41 -14
  575. package/modules/dotplot.js +1 -1
  576. package/modules/dotplot.src.js +1 -1
  577. package/modules/drag-panes.js +1 -1
  578. package/modules/drag-panes.src.js +1 -1
  579. package/modules/draggable-points.js +5 -5
  580. package/modules/draggable-points.js.map +1 -1
  581. package/modules/draggable-points.src.js +5 -4
  582. package/modules/drilldown.d.ts +0 -10
  583. package/modules/drilldown.js +29 -29
  584. package/modules/drilldown.js.map +1 -1
  585. package/modules/drilldown.src.d.ts +0 -10
  586. package/modules/drilldown.src.js +12 -9
  587. package/modules/dumbbell.js +1 -1
  588. package/modules/dumbbell.src.js +1 -1
  589. package/modules/export-data.js +25 -24
  590. package/modules/export-data.js.map +1 -1
  591. package/modules/export-data.src.js +607 -499
  592. package/modules/exporting.js +38 -38
  593. package/modules/exporting.js.map +1 -1
  594. package/modules/exporting.src.js +559 -507
  595. package/modules/full-screen.js +8 -8
  596. package/modules/full-screen.js.map +1 -1
  597. package/modules/full-screen.src.js +76 -26
  598. package/modules/funnel.js +1 -1
  599. package/modules/funnel.src.js +1 -1
  600. package/modules/funnel3d.js +2 -2
  601. package/modules/funnel3d.js.map +1 -1
  602. package/modules/funnel3d.src.js +2 -2
  603. package/modules/gantt.js +217 -216
  604. package/modules/gantt.js.map +1 -1
  605. package/modules/gantt.src.js +1481 -1440
  606. package/modules/grid-axis.js +1 -1
  607. package/modules/grid-axis.src.js +1 -1
  608. package/modules/heatmap.js +1 -1
  609. package/modules/heatmap.js.map +1 -1
  610. package/modules/heatmap.src.js +10 -2
  611. package/modules/heikinashi.js +1 -1
  612. package/modules/heikinashi.src.js +1 -1
  613. package/modules/histogram-bellcurve.js +1 -1
  614. package/modules/histogram-bellcurve.src.js +1 -1
  615. package/modules/hollowcandlestick.js +1 -1
  616. package/modules/hollowcandlestick.src.js +1 -1
  617. package/modules/item-series.js +1 -1
  618. package/modules/item-series.src.js +1 -1
  619. package/modules/lollipop.js +6 -6
  620. package/modules/lollipop.js.map +1 -1
  621. package/modules/lollipop.src.js +37 -22
  622. package/modules/map.d.ts +3 -3
  623. package/modules/map.js +171 -171
  624. package/modules/map.js.map +1 -1
  625. package/modules/map.src.d.ts +3 -3
  626. package/modules/map.src.js +442 -414
  627. package/modules/marker-clusters.js +1 -1
  628. package/modules/marker-clusters.js.map +1 -1
  629. package/modules/marker-clusters.src.js +3 -1
  630. package/modules/networkgraph.js +55 -50
  631. package/modules/networkgraph.js.map +1 -1
  632. package/modules/networkgraph.src.js +2259 -1938
  633. package/modules/no-data-to-display.js +1 -1
  634. package/modules/no-data-to-display.src.js +1 -1
  635. package/modules/offline-exporting.js +2 -2
  636. package/modules/offline-exporting.src.js +2 -2
  637. package/modules/oldie-polyfills.js +1 -1
  638. package/modules/oldie-polyfills.src.js +1 -1
  639. package/modules/oldie.js +2 -2
  640. package/modules/oldie.src.js +2 -2
  641. package/modules/organization.js +15 -15
  642. package/modules/organization.js.map +1 -1
  643. package/modules/organization.src.js +10 -2
  644. package/modules/overlapping-datalabels.js +1 -1
  645. package/modules/overlapping-datalabels.src.js +1 -1
  646. package/modules/parallel-coordinates.js +11 -11
  647. package/modules/parallel-coordinates.js.map +1 -1
  648. package/modules/parallel-coordinates.src.js +13 -8
  649. package/modules/pareto.js +1 -1
  650. package/modules/pareto.src.js +1 -1
  651. package/modules/pathfinder.js +1 -1
  652. package/modules/pathfinder.src.js +1 -1
  653. package/modules/pattern-fill.js +1 -1
  654. package/modules/pattern-fill.src.js +1 -1
  655. package/modules/price-indicator.js +1 -1
  656. package/modules/price-indicator.src.js +1 -1
  657. package/modules/pyramid3d.js +1 -1
  658. package/modules/pyramid3d.src.js +1 -1
  659. package/modules/sankey.js +1 -1
  660. package/modules/sankey.js.map +1 -1
  661. package/modules/sankey.src.js +14 -2
  662. package/modules/series-label.js +5 -5
  663. package/modules/series-label.js.map +1 -1
  664. package/modules/series-label.src.js +3 -3
  665. package/modules/series-on-point.js +1 -1
  666. package/modules/series-on-point.js.map +1 -1
  667. package/modules/series-on-point.src.js +6 -2
  668. package/modules/solid-gauge.js +1 -1
  669. package/modules/solid-gauge.src.js +2 -2
  670. package/modules/sonification.d.ts +2 -2
  671. package/modules/sonification.js +1 -1
  672. package/modules/sonification.src.d.ts +2 -2
  673. package/modules/sonification.src.js +2 -2
  674. package/modules/static-scale.js +1 -1
  675. package/modules/static-scale.src.js +1 -1
  676. package/modules/stock-tools.d.ts +1 -23
  677. package/modules/stock-tools.js +109 -179
  678. package/modules/stock-tools.js.map +1 -1
  679. package/modules/stock-tools.src.d.ts +1 -23
  680. package/modules/stock-tools.src.js +2605 -6335
  681. package/modules/stock.d.ts +8 -0
  682. package/modules/stock.js +105 -105
  683. package/modules/stock.js.map +1 -1
  684. package/modules/stock.src.d.ts +8 -0
  685. package/modules/stock.src.js +105 -45
  686. package/modules/streamgraph.js +1 -1
  687. package/modules/streamgraph.src.js +1 -1
  688. package/modules/sunburst.js +72 -72
  689. package/modules/sunburst.js.map +1 -1
  690. package/modules/sunburst.src.js +38 -12
  691. package/modules/tilemap.js +1 -1
  692. package/modules/tilemap.src.js +1 -1
  693. package/modules/timeline.js +1 -1
  694. package/modules/timeline.js.map +1 -1
  695. package/modules/timeline.src.js +3 -1
  696. package/modules/treegrid.js +57 -57
  697. package/modules/treegrid.js.map +1 -1
  698. package/modules/treegrid.src.js +1022 -1014
  699. package/modules/treemap.js +1 -1
  700. package/modules/treemap.js.map +1 -1
  701. package/modules/treemap.src.js +8 -4
  702. package/modules/variable-pie.js +1 -1
  703. package/modules/variable-pie.src.js +1 -1
  704. package/modules/variwide.js +1 -1
  705. package/modules/variwide.src.js +1 -1
  706. package/modules/vector.js +2 -2
  707. package/modules/vector.js.map +1 -1
  708. package/modules/vector.src.js +3 -5
  709. package/modules/venn.js +1 -1
  710. package/modules/venn.src.js +5 -5
  711. package/modules/windbarb.js +1 -1
  712. package/modules/windbarb.src.js +1 -1
  713. package/modules/wordcloud.js +1 -1
  714. package/modules/wordcloud.src.js +3 -3
  715. package/modules/xrange.js +17 -17
  716. package/modules/xrange.js.map +1 -1
  717. package/modules/xrange.src.js +411 -397
  718. package/package.json +1 -1
  719. package/themes/avocado.js +1 -1
  720. package/themes/avocado.src.js +1 -1
  721. package/themes/brand-dark.js +1 -1
  722. package/themes/brand-dark.src.js +1 -1
  723. package/themes/brand-light.js +1 -1
  724. package/themes/brand-light.src.js +1 -1
  725. package/themes/dark-blue.js +1 -1
  726. package/themes/dark-blue.src.js +1 -1
  727. package/themes/dark-green.js +1 -1
  728. package/themes/dark-green.src.js +1 -1
  729. package/themes/dark-unica.js +1 -1
  730. package/themes/dark-unica.src.js +1 -1
  731. package/themes/gray.js +1 -1
  732. package/themes/gray.src.js +1 -1
  733. package/themes/grid-light.js +1 -1
  734. package/themes/grid-light.src.js +1 -1
  735. package/themes/grid.js +1 -1
  736. package/themes/grid.src.js +1 -1
  737. package/themes/high-contrast-dark.js +1 -1
  738. package/themes/high-contrast-dark.src.js +1 -1
  739. package/themes/high-contrast-light.js +1 -1
  740. package/themes/high-contrast-light.src.js +1 -1
  741. package/themes/sand-signika.js +1 -1
  742. package/themes/sand-signika.src.js +1 -1
  743. package/themes/skies.js +1 -1
  744. package/themes/skies.src.js +1 -1
  745. package/themes/sunset.js +1 -1
  746. package/themes/sunset.src.js +1 -1
  747. package/es-modules/Core/Axis/StackingAxis.js +0 -215
  748. package/es-modules/Core/Axis/TreeGridAxis.js +0 -720
  749. package/es-modules/Core/Axis/TreeGridTick.js +0 -317
  750. package/es-modules/Extensions/Annotations/AnnotationsDefaults.js +0 -0
  751. package/es-modules/Extensions/Annotations/Mixins/MarkerMixin.js +0 -179
  752. package/es-modules/Extensions/Annotations/Popup.js +0 -1123
  753. package/es-modules/Extensions/Boost/BoostAttach.js +0 -154
  754. package/es-modules/Extensions/Boost/BoostInit.js +0 -324
  755. package/es-modules/Extensions/Boost/BoostOptions.js +0 -245
  756. package/es-modules/Extensions/Boost/BoostOverrides.js +0 -386
  757. package/es-modules/Extensions/Boost/BoostUtils.js +0 -255
  758. package/es-modules/Extensions/Boost/WGLVBuffer.js +0 -153
  759. package/es-modules/Extensions/Stacking.js +0 -517
  760. package/es-modules/Series/Networkgraph/DraggableNodes.js +0 -132
  761. package/es-modules/Series/Networkgraph/Integrations.js +0 -348
  762. package/es-modules/Series/Networkgraph/Networkgraph.js +0 -1180
  763. package/es-modules/Series/XRange/XRangeComposition.js +0 -49
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.2.0 (2022-07-05)
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 _a = SeriesRegistry.seriesTypes,
851
- SMAIndicator = _a.sma,
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
- * Properties
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
- * Functions
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: ColumnSeries.prototype.getColumnMetrics,
1040
- crispCol: ColumnSeries.prototype.crispCol,
1041
- translate: ColumnSeries.prototype.translate,
1042
- drawPoints: ColumnSeries.prototype.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
- /* eslint-disable valid-jsdoc */
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 = AROON.prototype.getValues.call(this, series, params);
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
- /* eslint-disable valid-jsdoc */
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
- * Class
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
- /* eslint-disable valid-jsdoc */
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
- * Class
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
- /* eslint-disable valid-jsdoc */
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
- * Properties
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 _a = SeriesRegistry.seriesTypes,
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
- /* eslint-enable require-jsdoc */
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
- /* eslint-disable require-jsdoc */
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
- /* eslint-enable require-jsdoc */
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
- * Properties
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
- * Functions
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
- * The Keltner Channels series type.
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 _a = SeriesRegistry.seriesTypes,
5195
- SMAIndicator = _a.sma,
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 _a = SeriesRegistry.seriesTypes,
5497
- SMAIndicator = _a.sma,
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
- * Class
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
- * Properties
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
- * Functions
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
- /* eslint-disable require-jsdoc */
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
- * Properties
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
- * Functions
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
- /* eslint-disable require-jsdoc */
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
- /* eslint-enable require-jsdoc */
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
- extend = U.extend;
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 SMAIndicator = SeriesRegistry.seriesTypes.sma;
6608
- /* eslint-disable valid-jsdoc */
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
- * Properties
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
- * Functions
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
- }(SMAIndicator.prototype.pointClass));
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
- * Properties
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
- * Functions
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
- * Properties
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
- * Properties
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
- * Functions
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
- /* eslint-disable require-jsdoc */
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
- * Class
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
- /* eslint-disable require-jsdoc */
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
- /* eslint-disable require-jsdoc */
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
- /* eslint-enable require-jsdoc */
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 _a = SeriesRegistry.seriesTypes,
8821
- ATRIndicator = _a.atr,
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
- /* eslint-disable require-jsdoc */
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/Point.js'], _modules['Core/Series/SeriesRegistry.js']], function (Point, SeriesRegistry) {
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
- * Imports
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 Point.prototype.destroy.apply(this, arguments);
9819
+ return _super.prototype.destroy.apply(this, arguments);
9365
9820
  };
9366
9821
  return VBPPoint;
9367
- }(SMAIndicator.prototype.pointClass));
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
- /* eslint-disable require-jsdoc */
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
- /* eslint-enable require-jsdoc */
9439
- var abs = Math.abs,
9440
- columnPrototype = SeriesRegistry.seriesTypes.column.prototype;
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
- * Class
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
- /* eslint-disable valid-jsdoc */
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
- /* eslint-enable valid-jsdoc */
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
- * Class
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/LinearRegression.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
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
- * Class
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/LinearRegressionSlopes.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
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
- * Class
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/LinearRegressionIntercept.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
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
- * Class
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/LinearRegressionAngle.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
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
- * Class
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
- * Convert a slope of a line to angle (in degrees) between
11391
- * the line and x axis
11392
- * @private
11393
- * @param {number} slope of the straight line function
11394
- * @return {number} angle in degrees
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
- /* eslint-disable valid-jsdoc */
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
- /* eslint-enable valid-jsdoc */
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
- * Properties
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
  }));