@ntlab/ntjs-assets 2.0.26 → 2.0.28

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 (522) hide show
  1. package/assets/js/cdn.json +2 -2
  2. package/assets/js/highcharts/es-modules/Accessibility/Accessibility.js +1 -1
  3. package/assets/js/highcharts/es-modules/Accessibility/AccessibilityComponent.js +1 -1
  4. package/assets/js/highcharts/es-modules/Accessibility/Components/NavigatorComponent.js +2 -2
  5. package/assets/js/highcharts/es-modules/Accessibility/KeyboardNavigation.js +1 -1
  6. package/assets/js/highcharts/es-modules/Accessibility/KeyboardNavigationHandler.js +5 -5
  7. package/assets/js/highcharts/es-modules/Accessibility/Options/A11yDefaults.js +1 -1
  8. package/assets/js/highcharts/es-modules/Accessibility/Options/LangDefaults.js +3 -3
  9. package/assets/js/highcharts/es-modules/Accessibility/Utils/EventProvider.js +1 -1
  10. package/assets/js/highcharts/es-modules/Accessibility/Utils/HTMLUtilities.js +1 -1
  11. package/assets/js/highcharts/es-modules/Core/Animation/Fx.js +4 -2
  12. package/assets/js/highcharts/es-modules/Core/Axis/Axis.js +3 -3
  13. package/assets/js/highcharts/es-modules/Core/Axis/AxisDefaults.js +1 -0
  14. package/assets/js/highcharts/es-modules/Core/Axis/Color/ColorAxisDefaults.js +7 -3
  15. package/assets/js/highcharts/es-modules/Core/Axis/GridAxis.js +1 -1
  16. package/assets/js/highcharts/es-modules/Core/Axis/OrdinalAxis.js +5 -2
  17. package/assets/js/highcharts/es-modules/Core/Axis/RadialAxisDefaults.js +3 -3
  18. package/assets/js/highcharts/es-modules/Core/Axis/Stacking/StackItem.js +1 -1
  19. package/assets/js/highcharts/es-modules/Core/Chart/Chart.js +16 -7
  20. package/assets/js/highcharts/es-modules/Core/Chart/MapChart.js +3 -3
  21. package/assets/js/highcharts/es-modules/Core/Chart/StockChart.js +1 -1
  22. package/assets/js/highcharts/es-modules/Core/Color/Color.js +2 -2
  23. package/assets/js/highcharts/es-modules/Core/Defaults.js +27 -1
  24. package/assets/js/highcharts/es-modules/Core/Geometry/GeometryUtilities.js +22 -0
  25. package/assets/js/highcharts/es-modules/Core/Globals.js +1 -1
  26. package/assets/js/highcharts/es-modules/Core/Legend/Legend.js +82 -14
  27. package/assets/js/highcharts/es-modules/Core/MSPointer.js +42 -1
  28. package/assets/js/highcharts/es-modules/Core/Pointer.js +10 -6
  29. package/assets/js/highcharts/es-modules/Core/Renderer/HTML/AST.js +6 -0
  30. package/assets/js/highcharts/es-modules/Core/Renderer/HTML/HTMLElement.js +2 -2
  31. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGElement.js +31 -98
  32. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGLabel.js +20 -0
  33. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGRenderer.js +29 -14
  34. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/Symbols.js +18 -18
  35. package/assets/js/highcharts/es-modules/Core/Responsive.js +6 -1
  36. package/assets/js/highcharts/es-modules/Core/Series/DataLabel.js +1 -10
  37. package/assets/js/highcharts/es-modules/Core/Series/DataSeriesComposition.js +0 -2
  38. package/assets/js/highcharts/es-modules/Core/Series/Point.js +7 -10
  39. package/assets/js/highcharts/es-modules/Core/Series/Series.js +40 -24
  40. package/assets/js/highcharts/es-modules/Core/Series/SeriesDefaults.js +18 -12
  41. package/assets/js/highcharts/es-modules/Core/Templating.js +2 -2
  42. package/assets/js/highcharts/es-modules/Core/Tooltip.js +6 -3
  43. package/assets/js/highcharts/es-modules/Data/Connectors/JSONConnector.js +1 -0
  44. package/assets/js/highcharts/es-modules/Data/Converters/CSVConverter.js +1 -1
  45. package/assets/js/highcharts/es-modules/Data/Converters/DataConverter.js +7 -7
  46. package/assets/js/highcharts/es-modules/Data/DataTable.js +106 -5
  47. package/assets/js/highcharts/es-modules/Data/Formula/FormulaParser.js +2 -2
  48. package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/ControllableDefaults.js +1 -1
  49. package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +1 -1
  50. package/assets/js/highcharts/es-modules/Extensions/Annotations/NavigationBindings.js +1 -2
  51. package/assets/js/highcharts/es-modules/Extensions/Boost/Boost.js +1 -1
  52. package/assets/js/highcharts/es-modules/Extensions/Boost/BoostChart.js +8 -2
  53. package/assets/js/highcharts/es-modules/Extensions/Boost/BoostSeries.js +41 -10
  54. package/assets/js/highcharts/es-modules/Extensions/Boost/WGLShader.js +1 -1
  55. package/assets/js/highcharts/es-modules/Extensions/BorderRadius.js +3 -3
  56. package/assets/js/highcharts/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +0 -38
  57. package/assets/js/highcharts/es-modules/Extensions/Data.js +11 -11
  58. package/assets/js/highcharts/es-modules/Extensions/DataGrouping/DataGrouping.js +1 -2
  59. package/assets/js/highcharts/es-modules/Extensions/DataGrouping/DataGroupingDefaults.js +1 -1
  60. package/assets/js/highcharts/es-modules/Extensions/DownloadURL.js +1 -1
  61. package/assets/js/highcharts/es-modules/Extensions/Drilldown/Drilldown.js +0 -2
  62. package/assets/js/highcharts/es-modules/Extensions/Exporting/Exporting.js +14 -14
  63. package/assets/js/highcharts/es-modules/Extensions/OverlappingDataLabels.js +36 -5
  64. package/assets/js/highcharts/es-modules/Extensions/Pane/PaneDefaults.js +3 -2
  65. package/assets/js/highcharts/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +1 -1
  66. package/assets/js/highcharts/es-modules/Extensions/Sonification/MIDI.js +7 -7
  67. package/assets/js/highcharts/es-modules/Extensions/Sonification/SonificationInstrument.js +0 -1
  68. package/assets/js/highcharts/es-modules/Extensions/Sonification/TimelineFromChart.js +1 -3
  69. package/assets/js/highcharts/es-modules/Extensions/TextPath.js +225 -0
  70. package/assets/js/highcharts/es-modules/Maps/MapUtilities.js +1 -20
  71. package/assets/js/highcharts/es-modules/Maps/MapView.js +3 -1
  72. package/assets/js/highcharts/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +3 -0
  73. package/assets/js/highcharts/es-modules/Series/Area/AreaSeries.js +5 -0
  74. package/assets/js/highcharts/es-modules/Series/Area/AreaSeriesDefaults.js +1 -1
  75. package/assets/js/highcharts/es-modules/Series/Bar/BarSeries.js +1 -1
  76. package/assets/js/highcharts/es-modules/Series/Bellcurve/BellcurveSeriesDefaults.js +2 -2
  77. package/assets/js/highcharts/es-modules/Series/BoxPlot/BoxPlotSeries.js +2 -1
  78. package/assets/js/highcharts/es-modules/Series/Bubble/BubbleLegendComposition.js +4 -7
  79. package/assets/js/highcharts/es-modules/Series/Bubble/BubbleLegendDefaults.js +3 -3
  80. package/assets/js/highcharts/es-modules/Series/Bubble/BubbleSeries.js +4 -4
  81. package/assets/js/highcharts/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -1
  82. package/assets/js/highcharts/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +5 -2
  83. package/assets/js/highcharts/es-modules/Series/Dumbbell/DumbbellSeriesDefaults.js +2 -2
  84. package/assets/js/highcharts/es-modules/Series/ErrorBar/ErrorBarSeries.js +2 -2
  85. package/assets/js/highcharts/es-modules/Series/Flags/FlagsSeries.js +2 -2
  86. package/assets/js/highcharts/es-modules/Series/Flags/FlagsSeriesDefaults.js +1 -1
  87. package/assets/js/highcharts/es-modules/Series/Gantt/GanttSeriesDefaults.js +1 -1
  88. package/assets/js/highcharts/es-modules/Series/Gauge/GaugeSeries.js +1 -1
  89. package/assets/js/highcharts/es-modules/Series/HLC/HLCSeries.js +1 -1
  90. package/assets/js/highcharts/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +2 -2
  91. package/assets/js/highcharts/es-modules/Series/Item/ItemSeries.js +1 -1
  92. package/assets/js/highcharts/es-modules/Series/Map/MapSeries.js +1 -1
  93. package/assets/js/highcharts/es-modules/Series/Map/MapSeriesDefaults.js +2 -2
  94. package/assets/js/highcharts/es-modules/Series/Networkgraph/NetworkgraphSeries.js +4 -1
  95. package/assets/js/highcharts/es-modules/Series/Organization/OrganizationSeries.js +3 -0
  96. package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
  97. package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubbleSeries.js +8 -5
  98. package/assets/js/highcharts/es-modules/Series/Pie/PieDataLabel.js +7 -6
  99. package/assets/js/highcharts/es-modules/Series/Pie/PiePoint.js +6 -6
  100. package/assets/js/highcharts/es-modules/Series/Pie/PieSeriesDefaults.js +11 -10
  101. package/assets/js/highcharts/es-modules/Series/Pie3D/Pie3DSeries.js +1 -1
  102. package/assets/js/highcharts/es-modules/Series/Sankey/SankeySeries.js +7 -4
  103. package/assets/js/highcharts/es-modules/Series/Sankey/SankeySeriesDefaults.js +1 -1
  104. package/assets/js/highcharts/es-modules/Series/Sunburst/SunburstSeries.js +8 -5
  105. package/assets/js/highcharts/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +2 -2
  106. package/assets/js/highcharts/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -2
  107. package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphSeries.js +23 -2
  108. package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphSeriesDefaults.js +2 -2
  109. package/assets/js/highcharts/es-modules/Series/Treemap/TreemapPoint.js +2 -1
  110. package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeries.js +15 -7
  111. package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeriesDefaults.js +15 -1
  112. package/assets/js/highcharts/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +2 -2
  113. package/assets/js/highcharts/es-modules/Series/Variwide/VariwideComposition.js +1 -1
  114. package/assets/js/highcharts/es-modules/Series/Vector/VectorSeries.js +1 -1
  115. package/assets/js/highcharts/es-modules/Series/Windbarb/WindbarbSeries.js +2 -2
  116. package/assets/js/highcharts/es-modules/Series/Wordcloud/WordcloudSeries.js +2 -2
  117. package/assets/js/highcharts/es-modules/Series/Wordcloud/WordcloudSeriesDefaults.js +1 -1
  118. package/assets/js/highcharts/es-modules/Stock/Indicators/AD/ADIndicator.js +1 -1
  119. package/assets/js/highcharts/es-modules/Stock/Indicators/APO/APOIndicator.js +1 -1
  120. package/assets/js/highcharts/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +1 -1
  121. package/assets/js/highcharts/es-modules/Stock/Indicators/CMF/CMFIndicator.js +1 -1
  122. package/assets/js/highcharts/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +1 -1
  123. package/assets/js/highcharts/es-modules/Stock/Indicators/IKH/IKHIndicator.js +3 -3
  124. package/assets/js/highcharts/es-modules/Stock/Indicators/LinearRegression/LinearRegressionIndicator.js +1 -1
  125. package/assets/js/highcharts/es-modules/Stock/Indicators/MFI/MFIIndicator.js +1 -1
  126. package/assets/js/highcharts/es-modules/Stock/Indicators/PC/PCIndicator.js +1 -1
  127. package/assets/js/highcharts/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -1
  128. package/assets/js/highcharts/es-modules/Stock/Indicators/PSAR/PSARIndicator.js +1 -1
  129. package/assets/js/highcharts/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +3 -3
  130. package/assets/js/highcharts/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
  131. package/assets/js/highcharts/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +2 -2
  132. package/assets/js/highcharts/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +3 -3
  133. package/assets/js/highcharts/es-modules/Stock/Indicators/TrendLine/TrendLineIndicator.js +1 -1
  134. package/assets/js/highcharts/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +1 -1
  135. package/assets/js/highcharts/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +1 -1
  136. package/assets/js/highcharts/es-modules/Stock/Navigator/Navigator.js +141 -55
  137. package/assets/js/highcharts/es-modules/Stock/Navigator/NavigatorDefaults.js +1 -1
  138. package/assets/js/highcharts/es-modules/Stock/RangeSelector/RangeSelector.js +1 -1
  139. package/assets/js/highcharts/es-modules/Stock/RangeSelector/RangeSelectorDefaults.js +1 -1
  140. package/assets/js/highcharts/es-modules/Stock/Scrollbar/ScrollbarDefaults.js +1 -1
  141. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolbar.js +115 -37
  142. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolsDefaults.js +7 -1
  143. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolsGui.js +24 -23
  144. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolsUtilities.js +26 -0
  145. package/assets/js/highcharts/es-modules/masters/highcharts-more.src.js +2 -2
  146. package/assets/js/highcharts/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  147. package/assets/js/highcharts/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  148. package/assets/js/highcharts/es-modules/masters/indicators/ao.src.js +1 -1
  149. package/assets/js/highcharts/es-modules/masters/indicators/apo.src.js +1 -1
  150. package/assets/js/highcharts/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  151. package/assets/js/highcharts/es-modules/masters/indicators/aroon.src.js +1 -1
  152. package/assets/js/highcharts/es-modules/masters/indicators/atr.src.js +1 -1
  153. package/assets/js/highcharts/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  154. package/assets/js/highcharts/es-modules/masters/indicators/cci.src.js +1 -1
  155. package/assets/js/highcharts/es-modules/masters/indicators/chaikin.src.js +1 -1
  156. package/assets/js/highcharts/es-modules/masters/indicators/cmf.src.js +1 -1
  157. package/assets/js/highcharts/es-modules/masters/indicators/cmo.src.js +1 -1
  158. package/assets/js/highcharts/es-modules/masters/indicators/dema.src.js +1 -1
  159. package/assets/js/highcharts/es-modules/masters/indicators/disparity-index.src.js +1 -1
  160. package/assets/js/highcharts/es-modules/masters/indicators/dmi.src.js +1 -1
  161. package/assets/js/highcharts/es-modules/masters/indicators/dpo.src.js +1 -1
  162. package/assets/js/highcharts/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  163. package/assets/js/highcharts/es-modules/masters/indicators/indicators-all.src.js +1 -1
  164. package/assets/js/highcharts/es-modules/masters/indicators/indicators.src.js +1 -1
  165. package/assets/js/highcharts/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  166. package/assets/js/highcharts/es-modules/masters/indicators/klinger.src.js +1 -1
  167. package/assets/js/highcharts/es-modules/masters/indicators/macd.src.js +1 -1
  168. package/assets/js/highcharts/es-modules/masters/indicators/mfi.src.js +1 -1
  169. package/assets/js/highcharts/es-modules/masters/indicators/momentum.src.js +1 -1
  170. package/assets/js/highcharts/es-modules/masters/indicators/natr.src.js +1 -1
  171. package/assets/js/highcharts/es-modules/masters/indicators/obv.src.js +1 -1
  172. package/assets/js/highcharts/es-modules/masters/indicators/pivot-points.src.js +1 -1
  173. package/assets/js/highcharts/es-modules/masters/indicators/ppo.src.js +1 -1
  174. package/assets/js/highcharts/es-modules/masters/indicators/price-channel.src.js +1 -1
  175. package/assets/js/highcharts/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  176. package/assets/js/highcharts/es-modules/masters/indicators/psar.src.js +1 -1
  177. package/assets/js/highcharts/es-modules/masters/indicators/regressions.src.js +1 -1
  178. package/assets/js/highcharts/es-modules/masters/indicators/roc.src.js +1 -1
  179. package/assets/js/highcharts/es-modules/masters/indicators/rsi.src.js +1 -1
  180. package/assets/js/highcharts/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  181. package/assets/js/highcharts/es-modules/masters/indicators/stochastic.src.js +1 -1
  182. package/assets/js/highcharts/es-modules/masters/indicators/supertrend.src.js +1 -1
  183. package/assets/js/highcharts/es-modules/masters/indicators/tema.src.js +1 -1
  184. package/assets/js/highcharts/es-modules/masters/indicators/trendline.src.js +1 -1
  185. package/assets/js/highcharts/es-modules/masters/indicators/trix.src.js +1 -1
  186. package/assets/js/highcharts/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  187. package/assets/js/highcharts/es-modules/masters/indicators/vwap.src.js +1 -1
  188. package/assets/js/highcharts/es-modules/masters/indicators/williams-r.src.js +1 -1
  189. package/assets/js/highcharts/es-modules/masters/indicators/wma.src.js +1 -1
  190. package/assets/js/highcharts/es-modules/masters/indicators/zigzag.src.js +1 -1
  191. package/assets/js/highcharts/es-modules/masters/modules/arc-diagram.src.js +2 -3
  192. package/assets/js/highcharts/es-modules/masters/modules/cylinder.src.js +1 -1
  193. package/assets/js/highcharts/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  194. package/assets/js/highcharts/es-modules/masters/modules/drag-panes.src.js +1 -1
  195. package/assets/js/highcharts/es-modules/masters/modules/export-data.src.js +1 -1
  196. package/assets/js/highcharts/es-modules/masters/modules/funnel3d.src.js +2 -2
  197. package/assets/js/highcharts/es-modules/masters/modules/heikinashi.src.js +1 -1
  198. package/assets/js/highcharts/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  199. package/assets/js/highcharts/es-modules/masters/modules/map.src.js +1 -1
  200. package/assets/js/highcharts/es-modules/masters/modules/offline-exporting.src.js +1 -1
  201. package/assets/js/highcharts/es-modules/masters/modules/organization.src.js +1 -1
  202. package/assets/js/highcharts/es-modules/masters/modules/price-indicator.src.js +1 -1
  203. package/assets/js/highcharts/es-modules/masters/modules/pyramid3d.src.js +3 -3
  204. package/assets/js/highcharts/es-modules/masters/modules/solid-gauge.src.js +1 -1
  205. package/assets/js/highcharts/es-modules/masters/modules/stock-tools.src.js +1 -1
  206. package/assets/js/highcharts/es-modules/masters/modules/textpath.src.js +16 -0
  207. package/assets/js/highcharts/es-modules/masters/modules/tilemap.src.js +1 -1
  208. package/assets/js/highcharts/es-modules/masters/modules/treegraph.src.js +1 -1
  209. package/assets/js/highcharts/highcharts-3d.js +2 -2
  210. package/assets/js/highcharts/highcharts-3d.src.js +4 -4
  211. package/assets/js/highcharts/highcharts-gantt.js +3 -3
  212. package/assets/js/highcharts/highcharts-gantt.src.js +3374 -3042
  213. package/assets/js/highcharts/highcharts-more.js +2 -2
  214. package/assets/js/highcharts/highcharts-more.src.js +260 -35
  215. package/assets/js/highcharts/highcharts.js +3 -3
  216. package/assets/js/highcharts/highcharts.src.js +5844 -5600
  217. package/assets/js/highcharts/highmaps.js +3 -3
  218. package/assets/js/highcharts/highmaps.src.js +3270 -3043
  219. package/assets/js/highcharts/highstock.js +3 -3
  220. package/assets/js/highcharts/highstock.src.js +3379 -3048
  221. package/assets/js/highcharts/indicators/acceleration-bands.js +2 -2
  222. package/assets/js/highcharts/indicators/acceleration-bands.src.js +4 -4
  223. package/assets/js/highcharts/indicators/accumulation-distribution.js +2 -2
  224. package/assets/js/highcharts/indicators/accumulation-distribution.src.js +5 -5
  225. package/assets/js/highcharts/indicators/ao.js +2 -2
  226. package/assets/js/highcharts/indicators/ao.src.js +4 -4
  227. package/assets/js/highcharts/indicators/apo.js +2 -2
  228. package/assets/js/highcharts/indicators/apo.src.js +5 -5
  229. package/assets/js/highcharts/indicators/aroon-oscillator.js +2 -2
  230. package/assets/js/highcharts/indicators/aroon-oscillator.src.js +4 -4
  231. package/assets/js/highcharts/indicators/aroon.js +2 -2
  232. package/assets/js/highcharts/indicators/aroon.src.js +5 -5
  233. package/assets/js/highcharts/indicators/atr.js +2 -2
  234. package/assets/js/highcharts/indicators/atr.src.js +4 -4
  235. package/assets/js/highcharts/indicators/bollinger-bands.js +2 -2
  236. package/assets/js/highcharts/indicators/bollinger-bands.src.js +4 -4
  237. package/assets/js/highcharts/indicators/cci.js +2 -2
  238. package/assets/js/highcharts/indicators/cci.src.js +4 -4
  239. package/assets/js/highcharts/indicators/chaikin.js +2 -2
  240. package/assets/js/highcharts/indicators/chaikin.src.js +6 -6
  241. package/assets/js/highcharts/indicators/cmf.js +2 -2
  242. package/assets/js/highcharts/indicators/cmf.src.js +5 -5
  243. package/assets/js/highcharts/indicators/cmo.js +2 -2
  244. package/assets/js/highcharts/indicators/cmo.src.js +4 -4
  245. package/assets/js/highcharts/indicators/dema.js +2 -2
  246. package/assets/js/highcharts/indicators/dema.src.js +4 -4
  247. package/assets/js/highcharts/indicators/disparity-index.js +2 -2
  248. package/assets/js/highcharts/indicators/disparity-index.src.js +4 -4
  249. package/assets/js/highcharts/indicators/dmi.js +2 -2
  250. package/assets/js/highcharts/indicators/dmi.src.js +4 -4
  251. package/assets/js/highcharts/indicators/dpo.js +2 -2
  252. package/assets/js/highcharts/indicators/dpo.src.js +4 -4
  253. package/assets/js/highcharts/indicators/ema.js +1 -1
  254. package/assets/js/highcharts/indicators/ema.src.js +2 -2
  255. package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.js +2 -2
  256. package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.src.js +7 -7
  257. package/assets/js/highcharts/indicators/indicators-all.js +2 -2
  258. package/assets/js/highcharts/indicators/indicators-all.src.js +29 -29
  259. package/assets/js/highcharts/indicators/indicators.js +2 -2
  260. package/assets/js/highcharts/indicators/indicators.src.js +5 -5
  261. package/assets/js/highcharts/indicators/keltner-channels.js +2 -2
  262. package/assets/js/highcharts/indicators/keltner-channels.src.js +4 -4
  263. package/assets/js/highcharts/indicators/klinger.js +2 -2
  264. package/assets/js/highcharts/indicators/klinger.src.js +4 -4
  265. package/assets/js/highcharts/indicators/macd.js +2 -2
  266. package/assets/js/highcharts/indicators/macd.src.js +4 -4
  267. package/assets/js/highcharts/indicators/mfi.js +2 -2
  268. package/assets/js/highcharts/indicators/mfi.src.js +5 -5
  269. package/assets/js/highcharts/indicators/momentum.js +2 -2
  270. package/assets/js/highcharts/indicators/momentum.src.js +4 -4
  271. package/assets/js/highcharts/indicators/natr.js +2 -2
  272. package/assets/js/highcharts/indicators/natr.src.js +4 -4
  273. package/assets/js/highcharts/indicators/obv.js +2 -2
  274. package/assets/js/highcharts/indicators/obv.src.js +4 -4
  275. package/assets/js/highcharts/indicators/pivot-points.js +2 -2
  276. package/assets/js/highcharts/indicators/pivot-points.src.js +7 -7
  277. package/assets/js/highcharts/indicators/ppo.js +2 -2
  278. package/assets/js/highcharts/indicators/ppo.src.js +5 -5
  279. package/assets/js/highcharts/indicators/price-channel.js +2 -2
  280. package/assets/js/highcharts/indicators/price-channel.src.js +5 -5
  281. package/assets/js/highcharts/indicators/price-envelopes.js +2 -2
  282. package/assets/js/highcharts/indicators/price-envelopes.src.js +4 -4
  283. package/assets/js/highcharts/indicators/psar.js +2 -2
  284. package/assets/js/highcharts/indicators/psar.src.js +5 -5
  285. package/assets/js/highcharts/indicators/regressions.js +2 -2
  286. package/assets/js/highcharts/indicators/regressions.src.js +5 -5
  287. package/assets/js/highcharts/indicators/roc.js +2 -2
  288. package/assets/js/highcharts/indicators/roc.src.js +4 -4
  289. package/assets/js/highcharts/indicators/rsi.js +2 -2
  290. package/assets/js/highcharts/indicators/rsi.src.js +4 -4
  291. package/assets/js/highcharts/indicators/slow-stochastic.js +2 -2
  292. package/assets/js/highcharts/indicators/slow-stochastic.src.js +6 -6
  293. package/assets/js/highcharts/indicators/stochastic.js +2 -2
  294. package/assets/js/highcharts/indicators/stochastic.src.js +4 -4
  295. package/assets/js/highcharts/indicators/supertrend.js +2 -2
  296. package/assets/js/highcharts/indicators/supertrend.src.js +7 -7
  297. package/assets/js/highcharts/indicators/tema.js +2 -2
  298. package/assets/js/highcharts/indicators/tema.src.js +4 -4
  299. package/assets/js/highcharts/indicators/trendline.js +2 -2
  300. package/assets/js/highcharts/indicators/trendline.src.js +5 -5
  301. package/assets/js/highcharts/indicators/trix.js +2 -2
  302. package/assets/js/highcharts/indicators/trix.src.js +4 -4
  303. package/assets/js/highcharts/indicators/volume-by-price.js +2 -2
  304. package/assets/js/highcharts/indicators/volume-by-price.src.js +4 -4
  305. package/assets/js/highcharts/indicators/vwap.js +2 -2
  306. package/assets/js/highcharts/indicators/vwap.src.js +5 -5
  307. package/assets/js/highcharts/indicators/williams-r.js +2 -2
  308. package/assets/js/highcharts/indicators/williams-r.src.js +5 -5
  309. package/assets/js/highcharts/indicators/wma.js +2 -2
  310. package/assets/js/highcharts/indicators/wma.src.js +4 -4
  311. package/assets/js/highcharts/indicators/zigzag.js +2 -2
  312. package/assets/js/highcharts/indicators/zigzag.src.js +4 -4
  313. package/assets/js/highcharts/modules/accessibility.js +2 -2
  314. package/assets/js/highcharts/modules/accessibility.src.js +162 -77
  315. package/assets/js/highcharts/modules/annotations-advanced.js +2 -2
  316. package/assets/js/highcharts/modules/annotations-advanced.src.js +8 -9
  317. package/assets/js/highcharts/modules/annotations.js +2 -2
  318. package/assets/js/highcharts/modules/annotations.src.js +8 -9
  319. package/assets/js/highcharts/modules/arc-diagram.js +2 -2
  320. package/assets/js/highcharts/modules/arc-diagram.src.js +9363 -5
  321. package/assets/js/highcharts/modules/arrow-symbols.js +2 -2
  322. package/assets/js/highcharts/modules/arrow-symbols.src.js +3 -3
  323. package/assets/js/highcharts/modules/boost-canvas.js +2 -2
  324. package/assets/js/highcharts/modules/boost-canvas.src.js +53 -16
  325. package/assets/js/highcharts/modules/boost.js +2 -2
  326. package/assets/js/highcharts/modules/boost.src.js +54 -17
  327. package/assets/js/highcharts/modules/broken-axis.js +2 -2
  328. package/assets/js/highcharts/modules/broken-axis.src.js +3 -3
  329. package/assets/js/highcharts/modules/bullet.js +2 -2
  330. package/assets/js/highcharts/modules/bullet.src.js +3 -3
  331. package/assets/js/highcharts/modules/coloraxis.js +2 -2
  332. package/assets/js/highcharts/modules/coloraxis.src.js +10 -6
  333. package/assets/js/highcharts/modules/current-date-indicator.js +2 -2
  334. package/assets/js/highcharts/modules/current-date-indicator.src.js +3 -3
  335. package/assets/js/highcharts/modules/cylinder.js +2 -2
  336. package/assets/js/highcharts/modules/cylinder.src.js +4 -4
  337. package/assets/js/highcharts/modules/data-tools.js +2 -2
  338. package/assets/js/highcharts/modules/data-tools.src.js +120 -18
  339. package/assets/js/highcharts/modules/data.js +2 -2
  340. package/assets/js/highcharts/modules/data.src.js +14 -14
  341. package/assets/js/highcharts/modules/datagrouping.js +2 -2
  342. package/assets/js/highcharts/modules/datagrouping.src.js +5 -6
  343. package/assets/js/highcharts/modules/debugger.js +2 -2
  344. package/assets/js/highcharts/modules/debugger.src.js +3 -3
  345. package/assets/js/highcharts/modules/dependency-wheel.js +2 -2
  346. package/assets/js/highcharts/modules/dependency-wheel.src.js +8 -7
  347. package/assets/js/highcharts/modules/dotplot.js +2 -2
  348. package/assets/js/highcharts/modules/dotplot.src.js +3 -3
  349. package/assets/js/highcharts/modules/drag-panes.js +2 -2
  350. package/assets/js/highcharts/modules/drag-panes.src.js +4 -4
  351. package/assets/js/highcharts/modules/draggable-points.js +2 -2
  352. package/assets/js/highcharts/modules/draggable-points.src.js +3 -3
  353. package/assets/js/highcharts/modules/drilldown.js +2 -2
  354. package/assets/js/highcharts/modules/drilldown.src.js +3 -43
  355. package/assets/js/highcharts/modules/dumbbell.js +2 -2
  356. package/assets/js/highcharts/modules/dumbbell.src.js +5 -5
  357. package/assets/js/highcharts/modules/export-data.js +2 -2
  358. package/assets/js/highcharts/modules/export-data.src.js +5 -5
  359. package/assets/js/highcharts/modules/exporting.js +2 -2
  360. package/assets/js/highcharts/modules/exporting.src.js +17 -17
  361. package/assets/js/highcharts/modules/flowmap.js +2 -2
  362. package/assets/js/highcharts/modules/flowmap.src.js +3 -3
  363. package/assets/js/highcharts/modules/full-screen.js +2 -2
  364. package/assets/js/highcharts/modules/full-screen.src.js +3 -3
  365. package/assets/js/highcharts/modules/funnel.js +2 -2
  366. package/assets/js/highcharts/modules/funnel.src.js +3 -3
  367. package/assets/js/highcharts/modules/funnel3d.js +2 -2
  368. package/assets/js/highcharts/modules/funnel3d.src.js +4 -4
  369. package/assets/js/highcharts/modules/gantt.js +2 -2
  370. package/assets/js/highcharts/modules/gantt.src.js +155 -67
  371. package/assets/js/highcharts/modules/geoheatmap.js +2 -2
  372. package/assets/js/highcharts/modules/geoheatmap.src.js +3 -3
  373. package/assets/js/highcharts/modules/grid-axis.js +2 -2
  374. package/assets/js/highcharts/modules/grid-axis.src.js +4 -4
  375. package/assets/js/highcharts/modules/heatmap.js +2 -2
  376. package/assets/js/highcharts/modules/heatmap.src.js +12 -8
  377. package/assets/js/highcharts/modules/heikinashi.js +2 -2
  378. package/assets/js/highcharts/modules/heikinashi.src.js +4 -4
  379. package/assets/js/highcharts/modules/histogram-bellcurve.js +2 -2
  380. package/assets/js/highcharts/modules/histogram-bellcurve.src.js +5 -5
  381. package/assets/js/highcharts/modules/hollowcandlestick.js +2 -2
  382. package/assets/js/highcharts/modules/hollowcandlestick.src.js +4 -4
  383. package/assets/js/highcharts/modules/item-series.js +2 -2
  384. package/assets/js/highcharts/modules/item-series.src.js +4 -4
  385. package/assets/js/highcharts/modules/lollipop.js +2 -2
  386. package/assets/js/highcharts/modules/lollipop.src.js +3 -3
  387. package/assets/js/highcharts/modules/map.js +2 -2
  388. package/assets/js/highcharts/modules/map.src.js +34 -51
  389. package/assets/js/highcharts/modules/marker-clusters.js +2 -2
  390. package/assets/js/highcharts/modules/marker-clusters.src.js +3 -3
  391. package/assets/js/highcharts/modules/mouse-wheel-zoom.js +2 -2
  392. package/assets/js/highcharts/modules/mouse-wheel-zoom.src.js +3 -3
  393. package/assets/js/highcharts/modules/navigator.js +2 -2
  394. package/assets/js/highcharts/modules/navigator.src.js +146 -61
  395. package/assets/js/highcharts/modules/networkgraph.js +2 -2
  396. package/assets/js/highcharts/modules/networkgraph.src.js +231 -5
  397. package/assets/js/highcharts/modules/no-data-to-display.js +2 -2
  398. package/assets/js/highcharts/modules/no-data-to-display.src.js +3 -3
  399. package/assets/js/highcharts/modules/offline-exporting.js +2 -2
  400. package/assets/js/highcharts/modules/offline-exporting.src.js +6 -6
  401. package/assets/js/highcharts/modules/organization.js +2 -2
  402. package/assets/js/highcharts/modules/organization.src.js +6 -5
  403. package/assets/js/highcharts/modules/overlapping-datalabels.js +2 -2
  404. package/assets/js/highcharts/modules/overlapping-datalabels.src.js +3 -3
  405. package/assets/js/highcharts/modules/parallel-coordinates.js +2 -2
  406. package/assets/js/highcharts/modules/parallel-coordinates.src.js +4 -4
  407. package/assets/js/highcharts/modules/pareto.js +2 -2
  408. package/assets/js/highcharts/modules/pareto.src.js +3 -3
  409. package/assets/js/highcharts/modules/pathfinder.js +2 -2
  410. package/assets/js/highcharts/modules/pathfinder.src.js +3 -3
  411. package/assets/js/highcharts/modules/pattern-fill.js +2 -2
  412. package/assets/js/highcharts/modules/pattern-fill.src.js +3 -3
  413. package/assets/js/highcharts/modules/pictorial.js +2 -2
  414. package/assets/js/highcharts/modules/pictorial.src.js +3 -3
  415. package/assets/js/highcharts/modules/price-indicator.js +2 -2
  416. package/assets/js/highcharts/modules/price-indicator.src.js +4 -4
  417. package/assets/js/highcharts/modules/pyramid3d.js +2 -2
  418. package/assets/js/highcharts/modules/pyramid3d.src.js +4 -4
  419. package/assets/js/highcharts/modules/sankey.js +2 -2
  420. package/assets/js/highcharts/modules/sankey.src.js +235 -9
  421. package/assets/js/highcharts/modules/series-label.js +2 -2
  422. package/assets/js/highcharts/modules/series-label.src.js +3 -3
  423. package/assets/js/highcharts/modules/series-on-point.js +2 -2
  424. package/assets/js/highcharts/modules/series-on-point.src.js +3 -3
  425. package/assets/js/highcharts/modules/solid-gauge.js +2 -2
  426. package/assets/js/highcharts/modules/solid-gauge.src.js +4 -4
  427. package/assets/js/highcharts/modules/sonification.js +2 -2
  428. package/assets/js/highcharts/modules/sonification.src.js +12 -15
  429. package/assets/js/highcharts/modules/static-scale.js +2 -2
  430. package/assets/js/highcharts/modules/static-scale.src.js +3 -3
  431. package/assets/js/highcharts/modules/stock-tools.js +2 -2
  432. package/assets/js/highcharts/modules/stock-tools.src.js +178 -70
  433. package/assets/js/highcharts/modules/stock.js +2 -2
  434. package/assets/js/highcharts/modules/stock.src.js +160 -73
  435. package/assets/js/highcharts/modules/streamgraph.js +2 -2
  436. package/assets/js/highcharts/modules/streamgraph.src.js +3 -3
  437. package/assets/js/highcharts/modules/sunburst.js +2 -2
  438. package/assets/js/highcharts/modules/sunburst.src.js +269 -58
  439. package/assets/js/highcharts/modules/textpath.js +7 -0
  440. package/assets/js/highcharts/modules/textpath.src.js +269 -0
  441. package/assets/js/highcharts/modules/tiledwebmap.js +3 -3
  442. package/assets/js/highcharts/modules/tiledwebmap.src.js +3 -3
  443. package/assets/js/highcharts/modules/tilemap.js +2 -2
  444. package/assets/js/highcharts/modules/tilemap.src.js +6 -6
  445. package/assets/js/highcharts/modules/timeline.js +2 -2
  446. package/assets/js/highcharts/modules/timeline.src.js +3 -3
  447. package/assets/js/highcharts/modules/treegraph.js +2 -2
  448. package/assets/js/highcharts/modules/treegraph.src.js +253 -9
  449. package/assets/js/highcharts/modules/treegrid.js +2 -2
  450. package/assets/js/highcharts/modules/treegrid.src.js +4 -4
  451. package/assets/js/highcharts/modules/treemap.js +2 -2
  452. package/assets/js/highcharts/modules/treemap.src.js +35 -50
  453. package/assets/js/highcharts/modules/variable-pie.js +2 -2
  454. package/assets/js/highcharts/modules/variable-pie.src.js +5 -5
  455. package/assets/js/highcharts/modules/variwide.js +2 -2
  456. package/assets/js/highcharts/modules/variwide.src.js +4 -4
  457. package/assets/js/highcharts/modules/vector.js +2 -2
  458. package/assets/js/highcharts/modules/vector.src.js +4 -4
  459. package/assets/js/highcharts/modules/venn.js +2 -2
  460. package/assets/js/highcharts/modules/venn.src.js +3 -88
  461. package/assets/js/highcharts/modules/windbarb.js +2 -2
  462. package/assets/js/highcharts/modules/windbarb.src.js +5 -5
  463. package/assets/js/highcharts/modules/wordcloud.js +2 -2
  464. package/assets/js/highcharts/modules/wordcloud.src.js +6 -6
  465. package/assets/js/highcharts/modules/xrange.js +2 -2
  466. package/assets/js/highcharts/modules/xrange.src.js +3 -3
  467. package/assets/js/highcharts/standalone-navigator.js +2 -2
  468. package/assets/js/highcharts/standalone-navigator.src.js +3363 -3034
  469. package/assets/js/highcharts/themes/avocado.js +2 -2
  470. package/assets/js/highcharts/themes/avocado.src.js +3 -3
  471. package/assets/js/highcharts/themes/brand-dark.js +2 -2
  472. package/assets/js/highcharts/themes/brand-dark.src.js +3 -3
  473. package/assets/js/highcharts/themes/brand-light.js +2 -2
  474. package/assets/js/highcharts/themes/brand-light.src.js +3 -3
  475. package/assets/js/highcharts/themes/dark-blue.js +2 -2
  476. package/assets/js/highcharts/themes/dark-blue.src.js +3 -3
  477. package/assets/js/highcharts/themes/dark-green.js +2 -2
  478. package/assets/js/highcharts/themes/dark-green.src.js +3 -3
  479. package/assets/js/highcharts/themes/dark-unica.js +2 -2
  480. package/assets/js/highcharts/themes/dark-unica.src.js +3 -3
  481. package/assets/js/highcharts/themes/gray.js +2 -2
  482. package/assets/js/highcharts/themes/gray.src.js +3 -3
  483. package/assets/js/highcharts/themes/grid-light.js +2 -2
  484. package/assets/js/highcharts/themes/grid-light.src.js +3 -3
  485. package/assets/js/highcharts/themes/grid.js +2 -2
  486. package/assets/js/highcharts/themes/grid.src.js +3 -3
  487. package/assets/js/highcharts/themes/high-contrast-dark.js +2 -2
  488. package/assets/js/highcharts/themes/high-contrast-dark.src.js +3 -3
  489. package/assets/js/highcharts/themes/high-contrast-light.js +2 -2
  490. package/assets/js/highcharts/themes/high-contrast-light.src.js +3 -3
  491. package/assets/js/highcharts/themes/sand-signika.js +2 -2
  492. package/assets/js/highcharts/themes/sand-signika.src.js +3 -3
  493. package/assets/js/highcharts/themes/skies.js +2 -2
  494. package/assets/js/highcharts/themes/skies.src.js +3 -3
  495. package/assets/js/highcharts/themes/sunset.js +2 -2
  496. package/assets/js/highcharts/themes/sunset.src.js +3 -3
  497. package/assets/js/jqGrid/css/ui.jqgrid-bootstrap5.css +5 -1
  498. package/assets/js/jqGrid/js/grid.base.js +8 -1
  499. package/assets/js/jqGrid/js/grid.formedit.js +7 -7
  500. package/assets/js/jqGrid/js/grid.grouping.js +1 -1
  501. package/assets/js/jqGrid/js/jquery.jqGrid.js +17 -10
  502. package/assets/js/jqGrid/js/jquery.jqGrid.min.js +2 -2
  503. package/assets/js/jqGrid/js/jquery.jqGrid.min.js.map +1 -1
  504. package/assets/js/jqGrid/js/minified/grid.base.js +1 -1
  505. package/assets/js/jqGrid/js/minified/grid.grouping.js +1 -1
  506. package/assets/js/pdfjs/build/pdf.mjs +464 -207
  507. package/assets/js/pdfjs/build/pdf.mjs.map +1 -1
  508. package/assets/js/pdfjs/build/pdf.sandbox.mjs +6 -3
  509. package/assets/js/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  510. package/assets/js/pdfjs/build/pdf.worker.mjs +384 -204
  511. package/assets/js/pdfjs/build/pdf.worker.mjs.map +1 -1
  512. package/assets/js/pdfjs/web/locale/br/viewer.ftl +5 -6
  513. package/assets/js/pdfjs/web/locale/is/viewer.ftl +1 -9
  514. package/assets/js/pdfjs/web/locale/ja/viewer.ftl +1 -3
  515. package/assets/js/pdfjs/web/locale/kab/viewer.ftl +57 -8
  516. package/assets/js/pdfjs/web/locale/nn-NO/viewer.ftl +40 -6
  517. package/assets/js/pdfjs/web/locale/sl/viewer.ftl +4 -0
  518. package/assets/js/pdfjs/web/viewer.css +15 -0
  519. package/assets/js/pdfjs/web/viewer.html +1 -1
  520. package/assets/js/pdfjs/web/viewer.mjs +159 -91
  521. package/assets/js/pdfjs/web/viewer.mjs.map +1 -1
  522. package/package.json +1 -1
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Slow Stochastic series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Pawel Fus
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(t){"object"==typeof module&&module.exports?(t.default=t,module.exports=t):"function"==typeof define&&define.amd?define("highcharts/indicators/indicators",["highcharts","highcharts/modules/stock"],function(e){return t(e),t.Highcharts=e,t}):t("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(t){"use strict";var e=t?t._modules:{};function s(t,e,s,a){t.hasOwnProperty(e)||(t[e]=a.apply(null,s),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:e,module:t[e]}})))}s(e,"Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js",[e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e){let{sma:s,stochastic:a}=t.seriesTypes,{extend:o,merge:i}=e;class r extends a{getValues(t,e){let a=e.periods,o=super.getValues.call(this,t,e),i={values:[],xData:[],yData:[]};if(!o)return;i.xData=o.xData.slice(a[1]-1);let r=o.yData.slice(a[1]-1),n=s.prototype.getValues.call(this,{xData:i.xData,yData:r},{index:1,period:a[2]});if(n){for(let t=0,e=i.xData.length;t<e;t++)i.yData[t]=[r[t][1],n.yData[t-a[2]+1]||null],i.values[t]=[i.xData[t],r[t][1],n.yData[t-a[2]+1]||null];return i}}}return r.defaultOptions=i(a.defaultOptions,{params:{periods:[14,3,3]}}),o(r.prototype,{nameBase:"Slow Stochastic"}),t.registerSeriesType("slowstochastic",r),r}),s(e,"masters/indicators/slow-stochastic.src.js",[e["Core/Globals.js"]],function(t){return t})});
9
+ */function(t){"object"==typeof module&&module.exports?(t.default=t,module.exports=t):"function"==typeof define&&define.amd?define("highcharts/indicators/indicators",["highcharts","modules/stock"],function(e){return t(e),t.Highcharts=e,t}):t("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(t){"use strict";var e=t?t._modules:{};function s(e,s,a,o){e.hasOwnProperty(s)||(e[s]=o.apply(null,a),"function"==typeof CustomEvent&&t.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:s,module:e[s]}})))}s(e,"Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js",[e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e){let{sma:s,stochastic:a}=t.seriesTypes,{extend:o,merge:i}=e;class r extends a{getValues(t,e){let a=e.periods,o=super.getValues.call(this,t,e),i={values:[],xData:[],yData:[]};if(!o)return;i.xData=o.xData.slice(a[1]-1);let r=o.yData.slice(a[1]-1),n=s.prototype.getValues.call(this,{xData:i.xData,yData:r},{index:1,period:a[2]});if(n){for(let t=0,e=i.xData.length;t<e;t++)i.yData[t]=[r[t][1],n.yData[t-a[2]+1]||null],i.values[t]=[i.xData[t],r[t][1],n.yData[t-a[2]+1]||null];return i}}}return r.defaultOptions=i(a.defaultOptions,{params:{periods:[14,3,3]}}),o(r.prototype,{nameBase:"Slow Stochastic"}),t.registerSeriesType("slowstochastic",r),r}),s(e,"masters/indicators/slow-stochastic.src.js",[e["Core/Globals.js"]],function(t){return t})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Slow Stochastic series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/indicators', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/indicators', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -120,7 +120,7 @@
120
120
  * @product highstock
121
121
  * @requires stock/indicators/indicators
122
122
  * @requires stock/indicators/stochastic
123
- * @requires stock/indicators/slowstochastic
123
+ * @requires stock/indicators/slow-stochastic
124
124
  * @optionparent plotOptions.slowstochastic
125
125
  */
126
126
  SlowStochasticIndicator.defaultOptions = merge(StochasticIndicator.defaultOptions, {
@@ -157,7 +157,7 @@
157
157
  * @product highstock
158
158
  * @requires stock/indicators/indicators
159
159
  * @requires stock/indicators/stochastic
160
- * @requires stock/indicators/slowstochastic
160
+ * @requires stock/indicators/slow-stochastic
161
161
  * @apioption series.slowstochastic
162
162
  */
163
163
  ''; // To include the above in the js output
@@ -169,4 +169,4 @@
169
169
 
170
170
  return Highcharts;
171
171
  });
172
- }));
172
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Paweł Fus
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(t){"object"==typeof module&&module.exports?(t.default=t,module.exports=t):"function"==typeof define&&define.amd?define("highcharts/indicators/stochastic",["highcharts","highcharts/modules/stock"],function(e){return t(e),t.Highcharts=e,t}):t("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(t){"use strict";var e=t?t._modules:{};function i(t,e,i,o){t.hasOwnProperty(e)||(t[e]=o.apply(null,i),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:e,module:t[e]}})))}i(e,"Stock/Indicators/ArrayUtilities.js",[],function(){return{getArrayExtremes:function(t,e,i){return t.reduce((t,o)=>[Math.min(t[0],o[e]),Math.max(t[1],o[i])],[Number.MAX_VALUE,-Number.MAX_VALUE])}}}),i(e,"Stock/Indicators/MultipleLinesComposition.js",[e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e){var i;let{sma:{prototype:o}}=t.seriesTypes,{defined:s,error:a,merge:r}=e;return function(t){let e=["bottomLine"],i=["top","bottom"],n=["top"];function l(t){return"plot"+t.charAt(0).toUpperCase()+t.slice(1)}function p(t,e){let i=[];return(t.pointArrayMap||[]).forEach(t=>{t!==e&&i.push(l(t))}),i}function h(){let t=this,e=t.pointValKey,i=t.linesApiNames,n=t.areaLinesNames,h=t.points,c=t.options,u=t.graph,d={options:{gapSize:c.gapSize}},f=[],m=p(t,e),y=h.length,g;if(m.forEach((t,e)=>{for(f[e]=[];y--;)g=h[y],f[e].push({x:g.x,plotX:g.plotX,plotY:g[t],isNull:!s(g[t])});y=h.length}),t.userOptions.fillColor&&n.length){let e=f[m.indexOf(l(n[0]))],i=1===n.length?h:f[m.indexOf(l(n[1]))],s=t.color;t.points=i,t.nextPoints=e,t.color=t.userOptions.fillColor,t.options=r(h,d),t.graph=t.area,t.fillGraph=!0,o.drawGraph.call(t),t.area=t.graph,delete t.nextPoints,delete t.fillGraph,t.color=s}i.forEach((e,i)=>{f[i]?(t.points=f[i],c[e]?t.options=r(c[e].styles,d):a('Error: "There is no '+e+' in DOCS options declared. Check if linesApiNames are consistent with your DOCS line names."'),t.graph=t["graph"+e],o.drawGraph.call(t),t["graph"+e]=t.graph):a('Error: "'+e+" doesn't have equivalent in pointArrayMap. To many elements in linesApiNames relative to pointArrayMap.\"")}),t.points=h,t.options=c,t.graph=u,o.drawGraph.call(t)}function c(t){let e,i=[],s=[];if(t=t||this.points,this.fillGraph&&this.nextPoints){if((e=o.getGraphPath.call(this,this.nextPoints))&&e.length){e[0][0]="L",i=o.getGraphPath.call(this,t),s=e.slice(0,i.length);for(let t=s.length-1;t>=0;t--)i.push(s[t])}}else i=o.getGraphPath.apply(this,arguments);return i}function u(t){let e=[];return(this.pointArrayMap||[]).forEach(i=>{e.push(t[i])}),e}function d(){let t=this.pointArrayMap,e=[],i;e=p(this),o.translate.apply(this,arguments),this.points.forEach(o=>{t.forEach((t,s)=>{i=o[t],this.dataModify&&(i=this.dataModify.modifyValue(i)),null!==i&&(o[e[s]]=this.yAxis.toPixels(i,!0))})})}t.compose=function(t){let o=t.prototype;return o.linesApiNames=o.linesApiNames||e.slice(),o.pointArrayMap=o.pointArrayMap||i.slice(),o.pointValKey=o.pointValKey||"top",o.areaLinesNames=o.areaLinesNames||n.slice(),o.drawGraph=h,o.getGraphPath=c,o.toYData=u,o.translate=d,t}}(i||(i={})),i}),i(e,"Stock/Indicators/Stochastic/StochasticIndicator.js",[e["Stock/Indicators/ArrayUtilities.js"],e["Stock/Indicators/MultipleLinesComposition.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i,o){let{sma:s}=i.seriesTypes,{extend:a,isArray:r,merge:n}=o;class l extends s{init(){super.init.apply(this,arguments),this.options=n({smoothedLine:{styles:{lineColor:this.color}}},this.options)}getValues(e,i){let o=i.periods[0],s=i.periods[1],a=e.xData,n=e.yData,l=n?n.length:0,p=[],h=[],c=[],u,d,f,m=null,y,g;if(l<o||!r(n[0])||4!==n[0].length)return;let A=!0,x=0;for(g=o-1;g<l;g++){if(u=n.slice(g-o+1,g+1),d=(y=t.getArrayExtremes(u,2,1))[0],isNaN(f=(n[g][3]-d)/(y[1]-d)*100)&&A){x++;continue}A&&!isNaN(f)&&(A=!1);let e=h.push(a[g]);isNaN(f)?c.push([c[e-2]&&"number"==typeof c[e-2][0]?c[e-2][0]:null,null]):c.push([f,null]),g>=x+(o-1)+(s-1)&&(m=super.getValues({xData:h.slice(-s),yData:c.slice(-s)},{period:s}).yData[0]),p.push([a[g],f,m]),c[e-1][1]=m}return{values:p,xData:h,yData:c}}}return l.defaultOptions=n(s.defaultOptions,{params:{index:void 0,period:void 0,periods:[14,3]},marker:{enabled:!1},tooltip:{pointFormat:'<span style="color:{point.color}">●</span><b> {series.name}</b><br/>%K: {point.y}<br/>%D: {point.smoothed}<br/>'},smoothedLine:{styles:{lineWidth:1,lineColor:void 0}},dataGrouping:{approximation:"averages"}}),a(l.prototype,{areaLinesNames:[],nameComponents:["periods"],nameBase:"Stochastic",pointArrayMap:["y","smoothed"],parallelArrays:["x","y","smoothed"],pointValKey:"y",linesApiNames:["smoothedLine"]}),e.compose(l),i.registerSeriesType("stochastic",l),l}),i(e,"masters/indicators/stochastic.src.js",[e["Core/Globals.js"]],function(t){return t})});
9
+ */function(t){"object"==typeof module&&module.exports?(t.default=t,module.exports=t):"function"==typeof define&&define.amd?define("highcharts/indicators/stochastic",["highcharts","modules/stock"],function(e){return t(e),t.Highcharts=e,t}):t("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(t){"use strict";var e=t?t._modules:{};function i(e,i,o,s){e.hasOwnProperty(i)||(e[i]=s.apply(null,o),"function"==typeof CustomEvent&&t.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:i,module:e[i]}})))}i(e,"Stock/Indicators/ArrayUtilities.js",[],function(){return{getArrayExtremes:function(t,e,i){return t.reduce((t,o)=>[Math.min(t[0],o[e]),Math.max(t[1],o[i])],[Number.MAX_VALUE,-Number.MAX_VALUE])}}}),i(e,"Stock/Indicators/MultipleLinesComposition.js",[e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e){var i;let{sma:{prototype:o}}=t.seriesTypes,{defined:s,error:a,merge:r}=e;return function(t){let e=["bottomLine"],i=["top","bottom"],n=["top"];function l(t){return"plot"+t.charAt(0).toUpperCase()+t.slice(1)}function p(t,e){let i=[];return(t.pointArrayMap||[]).forEach(t=>{t!==e&&i.push(l(t))}),i}function h(){let t=this,e=t.pointValKey,i=t.linesApiNames,n=t.areaLinesNames,h=t.points,c=t.options,u=t.graph,d={options:{gapSize:c.gapSize}},f=[],m=p(t,e),y=h.length,g;if(m.forEach((t,e)=>{for(f[e]=[];y--;)g=h[y],f[e].push({x:g.x,plotX:g.plotX,plotY:g[t],isNull:!s(g[t])});y=h.length}),t.userOptions.fillColor&&n.length){let e=f[m.indexOf(l(n[0]))],i=1===n.length?h:f[m.indexOf(l(n[1]))],s=t.color;t.points=i,t.nextPoints=e,t.color=t.userOptions.fillColor,t.options=r(h,d),t.graph=t.area,t.fillGraph=!0,o.drawGraph.call(t),t.area=t.graph,delete t.nextPoints,delete t.fillGraph,t.color=s}i.forEach((e,i)=>{f[i]?(t.points=f[i],c[e]?t.options=r(c[e].styles,d):a('Error: "There is no '+e+' in DOCS options declared. Check if linesApiNames are consistent with your DOCS line names."'),t.graph=t["graph"+e],o.drawGraph.call(t),t["graph"+e]=t.graph):a('Error: "'+e+" doesn't have equivalent in pointArrayMap. To many elements in linesApiNames relative to pointArrayMap.\"")}),t.points=h,t.options=c,t.graph=u,o.drawGraph.call(t)}function c(t){let e,i=[],s=[];if(t=t||this.points,this.fillGraph&&this.nextPoints){if((e=o.getGraphPath.call(this,this.nextPoints))&&e.length){e[0][0]="L",i=o.getGraphPath.call(this,t),s=e.slice(0,i.length);for(let t=s.length-1;t>=0;t--)i.push(s[t])}}else i=o.getGraphPath.apply(this,arguments);return i}function u(t){let e=[];return(this.pointArrayMap||[]).forEach(i=>{e.push(t[i])}),e}function d(){let t=this.pointArrayMap,e=[],i;e=p(this),o.translate.apply(this,arguments),this.points.forEach(o=>{t.forEach((t,s)=>{i=o[t],this.dataModify&&(i=this.dataModify.modifyValue(i)),null!==i&&(o[e[s]]=this.yAxis.toPixels(i,!0))})})}t.compose=function(t){let o=t.prototype;return o.linesApiNames=o.linesApiNames||e.slice(),o.pointArrayMap=o.pointArrayMap||i.slice(),o.pointValKey=o.pointValKey||"top",o.areaLinesNames=o.areaLinesNames||n.slice(),o.drawGraph=h,o.getGraphPath=c,o.toYData=u,o.translate=d,t}}(i||(i={})),i}),i(e,"Stock/Indicators/Stochastic/StochasticIndicator.js",[e["Stock/Indicators/ArrayUtilities.js"],e["Stock/Indicators/MultipleLinesComposition.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i,o){let{sma:s}=i.seriesTypes,{extend:a,isArray:r,merge:n}=o;class l extends s{init(){super.init.apply(this,arguments),this.options=n({smoothedLine:{styles:{lineColor:this.color}}},this.options)}getValues(e,i){let o=i.periods[0],s=i.periods[1],a=e.xData,n=e.yData,l=n?n.length:0,p=[],h=[],c=[],u,d,f,m=null,y,g;if(l<o||!r(n[0])||4!==n[0].length)return;let A=!0,x=0;for(g=o-1;g<l;g++){if(u=n.slice(g-o+1,g+1),d=(y=t.getArrayExtremes(u,2,1))[0],isNaN(f=(n[g][3]-d)/(y[1]-d)*100)&&A){x++;continue}A&&!isNaN(f)&&(A=!1);let e=h.push(a[g]);isNaN(f)?c.push([c[e-2]&&"number"==typeof c[e-2][0]?c[e-2][0]:null,null]):c.push([f,null]),g>=x+(o-1)+(s-1)&&(m=super.getValues({xData:h.slice(-s),yData:c.slice(-s)},{period:s}).yData[0]),p.push([a[g],f,m]),c[e-1][1]=m}return{values:p,xData:h,yData:c}}}return l.defaultOptions=n(s.defaultOptions,{params:{index:void 0,period:void 0,periods:[14,3]},marker:{enabled:!1},tooltip:{pointFormat:'<span style="color:{point.color}">●</span><b> {series.name}</b><br/>%K: {point.y}<br/>%D: {point.smoothed}<br/>'},smoothedLine:{styles:{lineWidth:1,lineColor:void 0}},dataGrouping:{approximation:"averages"}}),a(l.prototype,{areaLinesNames:[],nameComponents:["periods"],nameBase:"Stochastic",pointArrayMap:["y","smoothed"],parallelArrays:["x","y","smoothed"],pointValKey:"y",linesApiNames:["smoothedLine"]}),e.compose(l),i.registerSeriesType("stochastic",l),l}),i(e,"masters/indicators/stochastic.src.js",[e["Core/Globals.js"]],function(t){return t})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/stochastic', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/stochastic', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -585,4 +585,4 @@
585
585
 
586
586
  return Highcharts;
587
587
  });
588
- }));
588
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Wojciech Chmiel
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(o){"object"==typeof module&&module.exports?(o.default=o,module.exports=o):"function"==typeof define&&define.amd?define("highcharts/indicators/supertrend",["highcharts","highcharts/modules/stock"],function(e){return o(e),o.Highcharts=e,o}):o("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(o){"use strict";var e=o?o._modules:{};function t(o,e,t,r){o.hasOwnProperty(e)||(o[e]=r.apply(null,t),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:e,module:o[e]}})))}t(e,"Stock/Indicators/Supertrend/SupertrendIndicator.js",[e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(o,e){let{atr:t,sma:r}=o.seriesTypes,{addEvent:i,correctFloat:l,isArray:n,extend:s,merge:a,objectEach:p}=e;function d(o,e,t){return{index:e,close:o.yData[e][t],x:o.xData[e]}}class c extends r{init(){let o=this;super.init.apply(o,arguments);let e=i(this.chart.constructor,"afterLinkSeries",()=>{if(o.options){let e=o.options,t=o.linkedParent.options;e.cropThreshold=t.cropThreshold-(e.params.period-1)}e()},{order:1})}drawGraph(){let o=this,e=o.options,t=o.linkedParent,i=t?t.points:[],l=o.points,n=o.graph,s=i.length-l.length,c=s>0?s:0,h={options:{gapSize:e.gapSize}},u={top:[],bottom:[],intersect:[]},g={top:{styles:{lineWidth:e.lineWidth,lineColor:e.fallingTrendColor||e.color,dashStyle:e.dashStyle}},bottom:{styles:{lineWidth:e.lineWidth,lineColor:e.risingTrendColor||e.color,dashStyle:e.dashStyle}},intersect:e.changeTrendLine},y,f,x,m,C,T,S,D,b,v=l.length;for(;v--;)y=l[v],f=l[v-1],x=i[v-1+c],m=i[v-2+c],C=i[v+c],T=i[v+c+1],S=y.options.color,D={x:y.x,plotX:y.plotX,plotY:y.plotY,isNull:!1},!m&&x&&t.yData[x.index-1]&&(m=d(t,x.index-1,3)),!T&&C&&t.yData[C.index+1]&&(T=d(t,C.index+1,3)),!x&&m&&t.yData[m.index+1]?x=d(t,m.index+1,3):!x&&C&&t.yData[C.index-1]&&(x=d(t,C.index-1,3)),y&&x&&C&&m&&y.x!==x.x&&(y.x===C.x?(m=x,x=C):y.x===m.x?(x=m,m={close:t.yData[x.index-1][3],x:t.xData[x.index-1]}):T&&y.x===T.x&&(x=T,m=C)),f&&m&&x?(b={x:f.x,plotX:f.plotX,plotY:f.plotY,isNull:!1},y.y>=x.close&&f.y>=m.close?(y.color=S||e.fallingTrendColor||e.color,u.top.push(D)):y.y<x.close&&f.y<m.close?(y.color=S||e.risingTrendColor||e.color,u.bottom.push(D)):(u.intersect.push(D),u.intersect.push(b),u.intersect.push(a(b,{isNull:!0})),y.y>=x.close&&f.y<m.close?(y.color=S||e.fallingTrendColor||e.color,f.color=S||e.risingTrendColor||e.color,u.top.push(D),u.top.push(a(b,{isNull:!0}))):y.y<x.close&&f.y>=m.close&&(y.color=S||e.risingTrendColor||e.color,f.color=S||e.fallingTrendColor||e.color,u.bottom.push(D),u.bottom.push(a(b,{isNull:!0}))))):x&&(y.y>=x.close?(y.color=S||e.fallingTrendColor||e.color,u.top.push(D)):(y.color=S||e.risingTrendColor||e.color,u.bottom.push(D)));p(u,function(e,t){o.points=e,o.options=a(g[t].styles,h),o.graph=o["graph"+t+"Line"],r.prototype.drawGraph.call(o),o["graph"+t+"Line"]=o.graph}),o.points=l,o.options=e,o.graph=n}getValues(o,e){let r=e.period,i=e.multiplier,s=o.xData,a=o.yData,p=[],d=[],c=[],h=0===r?0:r-1,u=[],g=[],y=[],f,x,m,C,T,S,D,b,v;if(!(s.length<=r)&&n(a[0])&&4===a[0].length&&!(r<0)){for(v=0,y=t.prototype.getValues.call(this,o,{period:r}).yData;v<y.length;v++)b=a[h+v],D=a[h+v-1]||[],C=u[v-1],T=g[v-1],S=c[v-1],0===v&&(C=T=S=0),f=l((b[1]+b[2])/2+i*y[v]),x=l((b[1]+b[2])/2-i*y[v]),f<C||D[3]>C?u[v]=f:u[v]=C,x>T||D[3]<T?g[v]=x:g[v]=T,S===C&&b[3]<u[v]||S===T&&b[3]<g[v]?m=u[v]:(S===C&&b[3]>u[v]||S===T&&b[3]>g[v])&&(m=g[v]),p.push([s[h+v],m]),d.push(s[h+v]),c.push(m);return{values:p,xData:d,yData:c}}}}return c.defaultOptions=a(r.defaultOptions,{params:{index:void 0,multiplier:3,period:10},risingTrendColor:"#06b535",fallingTrendColor:"#f21313",changeTrendLine:{styles:{lineWidth:1,lineColor:"#333333",dashStyle:"LongDash"}}}),s(c.prototype,{nameBase:"Supertrend",nameComponents:["multiplier","period"]}),o.registerSeriesType("supertrend",c),c}),t(e,"masters/indicators/supertrend.src.js",[e["Core/Globals.js"]],function(o){return o})});
9
+ */function(o){"object"==typeof module&&module.exports?(o.default=o,module.exports=o):"function"==typeof define&&define.amd?define("highcharts/indicators/supertrend",["highcharts","modules/stock"],function(e){return o(e),o.Highcharts=e,o}):o("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(o){"use strict";var e=o?o._modules:{};function t(e,t,r,l){e.hasOwnProperty(t)||(e[t]=l.apply(null,r),"function"==typeof CustomEvent&&o.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}t(e,"Stock/Indicators/Supertrend/SupertrendIndicator.js",[e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(o,e){let{atr:t,sma:r}=o.seriesTypes,{addEvent:l,correctFloat:i,isArray:n,extend:s,merge:a,objectEach:p}=e;function d(o,e,t){return{index:e,close:o.yData[e][t],x:o.xData[e]}}class c extends r{init(){let o=this;super.init.apply(o,arguments);let e=l(this.chart.constructor,"afterLinkSeries",()=>{if(o.options){let e=o.options,t=o.linkedParent.options;e.cropThreshold=t.cropThreshold-(e.params.period-1)}e()},{order:1})}drawGraph(){let o=this,e=o.options,t=o.linkedParent,l=t?t.points:[],i=o.points,n=o.graph,s=l.length-i.length,c=s>0?s:0,h={options:{gapSize:e.gapSize}},u={top:[],bottom:[],intersect:[]},y={top:{styles:{lineWidth:e.lineWidth,lineColor:e.fallingTrendColor||e.color,dashStyle:e.dashStyle}},bottom:{styles:{lineWidth:e.lineWidth,lineColor:e.risingTrendColor||e.color,dashStyle:e.dashStyle}},intersect:e.changeTrendLine},g,f,x,m,C,T,S,D,b,v=i.length;for(;v--;)g=i[v],f=i[v-1],x=l[v-1+c],m=l[v-2+c],C=l[v+c],T=l[v+c+1],S=g.options.color,D={x:g.x,plotX:g.plotX,plotY:g.plotY,isNull:!1},!m&&x&&t.yData[x.index-1]&&(m=d(t,x.index-1,3)),!T&&C&&t.yData[C.index+1]&&(T=d(t,C.index+1,3)),!x&&m&&t.yData[m.index+1]?x=d(t,m.index+1,3):!x&&C&&t.yData[C.index-1]&&(x=d(t,C.index-1,3)),g&&x&&C&&m&&g.x!==x.x&&(g.x===C.x?(m=x,x=C):g.x===m.x?(x=m,m={close:t.yData[x.index-1][3],x:t.xData[x.index-1]}):T&&g.x===T.x&&(x=T,m=C)),f&&m&&x?(b={x:f.x,plotX:f.plotX,plotY:f.plotY,isNull:!1},g.y>=x.close&&f.y>=m.close?(g.color=S||e.fallingTrendColor||e.color,u.top.push(D)):g.y<x.close&&f.y<m.close?(g.color=S||e.risingTrendColor||e.color,u.bottom.push(D)):(u.intersect.push(D),u.intersect.push(b),u.intersect.push(a(b,{isNull:!0})),g.y>=x.close&&f.y<m.close?(g.color=S||e.fallingTrendColor||e.color,f.color=S||e.risingTrendColor||e.color,u.top.push(D),u.top.push(a(b,{isNull:!0}))):g.y<x.close&&f.y>=m.close&&(g.color=S||e.risingTrendColor||e.color,f.color=S||e.fallingTrendColor||e.color,u.bottom.push(D),u.bottom.push(a(b,{isNull:!0}))))):x&&(g.y>=x.close?(g.color=S||e.fallingTrendColor||e.color,u.top.push(D)):(g.color=S||e.risingTrendColor||e.color,u.bottom.push(D)));p(u,function(e,t){o.points=e,o.options=a(y[t].styles,h),o.graph=o["graph"+t+"Line"],r.prototype.drawGraph.call(o),o["graph"+t+"Line"]=o.graph}),o.points=i,o.options=e,o.graph=n}getValues(o,e){let r=e.period,l=e.multiplier,s=o.xData,a=o.yData,p=[],d=[],c=[],h=0===r?0:r-1,u=[],y=[],g=[],f,x,m,C,T,S,D,b,v;if(!(s.length<=r)&&n(a[0])&&4===a[0].length&&!(r<0)){for(v=0,g=t.prototype.getValues.call(this,o,{period:r}).yData;v<g.length;v++)b=a[h+v],D=a[h+v-1]||[],C=u[v-1],T=y[v-1],S=c[v-1],0===v&&(C=T=S=0),f=i((b[1]+b[2])/2+l*g[v]),x=i((b[1]+b[2])/2-l*g[v]),f<C||D[3]>C?u[v]=f:u[v]=C,x>T||D[3]<T?y[v]=x:y[v]=T,S===C&&b[3]<u[v]||S===T&&b[3]<y[v]?m=u[v]:(S===C&&b[3]>u[v]||S===T&&b[3]>y[v])&&(m=y[v]),p.push([s[h+v],m]),d.push(s[h+v]),c.push(m);return{values:p,xData:d,yData:c}}}}return c.defaultOptions=a(r.defaultOptions,{params:{index:void 0,multiplier:3,period:10},risingTrendColor:"#06b535",fallingTrendColor:"#f21313",changeTrendLine:{styles:{lineWidth:1,lineColor:"#333333",dashStyle:"LongDash"}}}),s(c.prototype,{nameBase:"Supertrend",nameComponents:["multiplier","period"]}),o.registerSeriesType("supertrend",c),c}),t(e,"masters/indicators/supertrend.src.js",[e["Core/Globals.js"]],function(o){return o})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/supertrend', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/supertrend', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -115,8 +115,8 @@
115
115
  },
116
116
  // Sorted supertrend points array
117
117
  groupedPoints = {
118
- top: [],
119
- bottom: [],
118
+ top: [], // Rising trend line points
119
+ bottom: [], // Falling trend line points
120
120
  intersect: [] // Change trend line points
121
121
  },
122
122
  // Options for trend lines
@@ -407,7 +407,7 @@
407
407
  * @excluding index
408
408
  */
409
409
  params: {
410
- index: void 0,
410
+ index: void 0, // Unchangeable index, do not inherit (#15362)
411
411
  /**
412
412
  * Multiplier for Supertrend Indicator.
413
413
  */
@@ -511,4 +511,4 @@
511
511
 
512
512
  return Highcharts;
513
513
  });
514
- }));
514
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Rafal Sebestjanski
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/tema",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function l(e,t,l,s){e.hasOwnProperty(t)||(e[t]=s.apply(null,l),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}l(t,"Stock/Indicators/TEMA/TEMAIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{ema:l}=e.seriesTypes,{correctFloat:s,isArray:i,merge:r}=t;class n extends l{getEMA(e,t,l,s,i,r){return super.calculateEma(r||[],e,void 0===i?1:i,this.EMApercent,t,void 0===s?-1:s,l)}getTemaPoint(e,t,l,i){return[e[i-3],s(3*l.level1-3*l.level2+l.level3)]}getValues(e,t){let l=t.period,s=2*l,r=3*l,n=e.xData,o=e.yData,a=o?o.length:0,u=[],h=[],v=[],d=[],c=[],p={},f=-1,g=0,m=0,E,y,M,A;if(this.EMApercent=2/(l+1),!(a<3*l-2)){for(i(o[0])&&(f=t.index?t.index:0),m=(g=super.accumulatePeriodPoints(l,f,o))/l,g=0,M=l;M<a+3;M++)M<a+1&&(p.level1=this.getEMA(o,E,m,f,M)[1],d.push(p.level1)),E=p.level1,M<s?g+=p.level1:(M===s&&(m=g/l,g=0),p.level1=d[M-l-1],p.level2=this.getEMA([p.level1],y,m)[1],c.push(p.level2),y=p.level2,M<r?g+=p.level2:(M===r&&(m=g/l),M===a+1&&(p.level1=d[M-l-1],p.level2=this.getEMA([p.level1],y,m)[1],c.push(p.level2)),p.level1=d[M-l-2],p.level2=c[M-2*l-1],p.level3=this.getEMA([p.level2],p.prevLevel3,m)[1],(A=this.getTemaPoint(n,r,p,M))&&(u.push(A),h.push(A[0]),v.push(A[1])),p.prevLevel3=p.level3));return{values:u,xData:h,yData:v}}}}return n.defaultOptions=r(l.defaultOptions),e.registerSeriesType("tema",n),n}),l(t,"masters/indicators/tema.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/tema",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function l(t,l,s,i){t.hasOwnProperty(l)||(t[l]=i.apply(null,s),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:l,module:t[l]}})))}l(t,"Stock/Indicators/TEMA/TEMAIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{ema:l}=e.seriesTypes,{correctFloat:s,isArray:i,merge:n}=t;class r extends l{getEMA(e,t,l,s,i,n){return super.calculateEma(n||[],e,void 0===i?1:i,this.EMApercent,t,void 0===s?-1:s,l)}getTemaPoint(e,t,l,i){return[e[i-3],s(3*l.level1-3*l.level2+l.level3)]}getValues(e,t){let l=t.period,s=2*l,n=3*l,r=e.xData,o=e.yData,a=o?o.length:0,u=[],v=[],d=[],c=[],h=[],p={},f=-1,m=0,g=0,E,y,M,A;if(this.EMApercent=2/(l+1),!(a<3*l-2)){for(i(o[0])&&(f=t.index?t.index:0),g=(m=super.accumulatePeriodPoints(l,f,o))/l,m=0,M=l;M<a+3;M++)M<a+1&&(p.level1=this.getEMA(o,E,g,f,M)[1],c.push(p.level1)),E=p.level1,M<s?m+=p.level1:(M===s&&(g=m/l,m=0),p.level1=c[M-l-1],p.level2=this.getEMA([p.level1],y,g)[1],h.push(p.level2),y=p.level2,M<n?m+=p.level2:(M===n&&(g=m/l),M===a+1&&(p.level1=c[M-l-1],p.level2=this.getEMA([p.level1],y,g)[1],h.push(p.level2)),p.level1=c[M-l-2],p.level2=h[M-2*l-1],p.level3=this.getEMA([p.level2],p.prevLevel3,g)[1],(A=this.getTemaPoint(r,n,p,M))&&(u.push(A),v.push(A[0]),d.push(A[1])),p.prevLevel3=p.level3));return{values:u,xData:v,yData:d}}}}return r.defaultOptions=n(l.defaultOptions),e.registerSeriesType("tema",r),r}),l(t,"masters/indicators/tema.src.js",[t["Core/Globals.js"]],function(e){return e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/tema', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/tema', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -220,4 +220,4 @@
220
220
 
221
221
  return Highcharts;
222
222
  });
223
- }));
223
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Sebastian Bochan
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/trendline",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function n(e,t,n,s){e.hasOwnProperty(t)||(e[t]=s.apply(null,n),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}n(t,"Stock/Indicators/TrendLine/TrendLineIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{sma:n}=e.seriesTypes,{extend:s,merge:i,isArray:o}=t;class r extends n{constructor(){super(...arguments),this.updateAllPoints=!0}getValues(e,t){let n=e.xData,s=e.yData,i=[],r=[],a=[],l=[],d=t.index,u=0,h=0,c=0,p=0,f=0;for(let e=0;e<n.length;e++)(0===e||n[e]!==n[e-1])&&f++,i.push(f);for(let e=0;e<i.length;e++)c+=i[e],p+=o(s[e])?s[e][d]:s[e];let g=c/i.length,m=p/s.length;for(let e=0;e<i.length;e++){let t=o(s[e])?s[e][d]:s[e];u+=(i[e]-g)*(t-m),h+=Math.pow(i[e]-g,2)}for(let e=0;e<i.length;e++){if(n[e]===a[a.length-1])continue;let t=n[e],s=m+u/h*(i[e]-g);r.push([t,s]),a.push(t),l.push(s)}return{xData:a,yData:l,values:r}}}return r.defaultOptions=i(n.defaultOptions,{params:{period:void 0,index:3}}),s(r.prototype,{nameBase:"Trendline",nameComponents:void 0}),e.registerSeriesType("trendline",r),r}),n(t,"masters/indicators/trendline.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/trendline",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function n(t,n,s,i){t.hasOwnProperty(n)||(t[n]=i.apply(null,s),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:n,module:t[n]}})))}n(t,"Stock/Indicators/TrendLine/TrendLineIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{sma:n}=e.seriesTypes,{extend:s,merge:i,isArray:o}=t;class r extends n{constructor(){super(...arguments),this.updateAllPoints=!0}getValues(e,t){let n=e.xData,s=e.yData,i=[],r=[],a=[],l=[],d=t.index,u=0,h=0,c=0,p=0,f=0;for(let e=0;e<n.length;e++)(0===e||n[e]!==n[e-1])&&f++,i.push(f);for(let e=0;e<i.length;e++)c+=i[e],p+=o(s[e])?s[e][d]:s[e];let g=c/i.length,m=p/s.length;for(let e=0;e<i.length;e++){let t=o(s[e])?s[e][d]:s[e];u+=(i[e]-g)*(t-m),h+=Math.pow(i[e]-g,2)}for(let e=0;e<i.length;e++){if(n[e]===a[a.length-1])continue;let t=n[e],s=m+u/h*(i[e]-g);r.push([t,s]),a.push(t),l.push(s)}return{xData:a,yData:l,values:r}}}return r.defaultOptions=i(n.defaultOptions,{params:{period:void 0,index:3}}),s(r.prototype,{nameBase:"Trendline",nameComponents:void 0}),e.registerSeriesType("trendline",r),r}),n(t,"masters/indicators/trendline.src.js",[t["Core/Globals.js"]],function(e){return e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/trendline', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/trendline', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -132,7 +132,7 @@
132
132
  * @excluding period
133
133
  */
134
134
  params: {
135
- period: void 0,
135
+ period: void 0, // Unchangeable period, do not inherit (#15362)
136
136
  /**
137
137
  * The point index which indicator calculations will base. For
138
138
  * example using OHLC data, index=2 means the indicator will be
@@ -179,4 +179,4 @@
179
179
 
180
180
  return Highcharts;
181
181
  });
182
- }));
182
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Rafal Sebestjanski
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/trix",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(e,t,i,s){e.hasOwnProperty(t)||(e[t]=s.apply(null,i),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}i(t,"Stock/Indicators/TRIX/TRIXIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{tema:i}=e.seriesTypes,{correctFloat:s,merge:r}=t;class n extends i{getTemaPoint(e,t,i,r){if(r>t)return[e[r-3],0!==i.prevLevel3?s(i.level3-i.prevLevel3)/i.prevLevel3*100:null]}}return n.defaultOptions=r(i.defaultOptions),e.registerSeriesType("trix",n),n}),i(t,"masters/indicators/trix.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/trix",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(t,i,s,r){t.hasOwnProperty(i)||(t[i]=r.apply(null,s),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:i,module:t[i]}})))}i(t,"Stock/Indicators/TRIX/TRIXIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{tema:i}=e.seriesTypes,{correctFloat:s,merge:r}=t;class n extends i{getTemaPoint(e,t,i,r){if(r>t)return[e[r-3],0!==i.prevLevel3?s(i.level3-i.prevLevel3)/i.prevLevel3*100:null]}}return n.defaultOptions=r(i.defaultOptions),e.registerSeriesType("trix",n),n}),i(t,"masters/indicators/trix.src.js",[t["Core/Globals.js"]],function(e){return e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/trix', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/trix', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -136,4 +136,4 @@
136
136
 
137
137
  return Highcharts;
138
138
  });
139
- }));
139
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Paweł Dalek
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/volume-by-price",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function s(e,t,s,i){e.hasOwnProperty(t)||(e[t]=i.apply(null,s),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}s(t,"Stock/Indicators/VBP/VBPPoint.js",[t["Core/Series/SeriesRegistry.js"]],function(e){let{sma:{prototype:{pointClass:t}}}=e.seriesTypes;return class extends t{destroy(){this.negativeGraphic&&(this.negativeGraphic=this.negativeGraphic.destroy()),super.destroy.apply(this,arguments)}}}),s(t,"Stock/Indicators/VBP/VBPIndicator.js",[t["Stock/Indicators/VBP/VBPPoint.js"],t["Core/Animation/AnimationUtilities.js"],t["Core/Globals.js"],t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t,s,i,o){let{animObject:a}=t,{noop:n}=s,{column:{prototype:r},sma:l}=i.seriesTypes,{addEvent:p,arrayMax:h,arrayMin:d,correctFloat:u,defined:c,error:m,extend:g,isArray:f,merge:v}=o,y=Math.abs;class V extends l{init(e,t){let s=this;delete t.data,super.init.apply(s,arguments);let i=p(this.chart.constructor,"afterLinkSeries",function(){if(s.options){let t=s.options.params,i=s.linkedParent,o=e.get(t.volumeSeriesID);s.addCustomEvents(i,o)}i()},{order:1});return s}addCustomEvents(e,t){let s=this,i=()=>{s.chart.redraw(),s.setData([]),s.zoneStarts=[],s.zoneLinesSVG&&(s.zoneLinesSVG=s.zoneLinesSVG.destroy())};return s.dataEventsToUnbind.push(p(e,"remove",function(){i()})),t&&s.dataEventsToUnbind.push(p(t,"remove",function(){i()})),s}animate(e){let t=this,s=t.chart.inverted,i=t.group,o={};if(!e&&i){let e=s?t.yAxis.top:t.xAxis.left;s?(i["forceAnimate:translateY"]=!0,o.translateY=e):(i["forceAnimate:translateX"]=!0,o.translateX=e),i.animate(o,g(a(t.options.animation),{step:function(e,s){t.group.attr({scaleX:Math.max(.001,s.pos)})}}))}}drawPoints(){this.options.volumeDivision.enabled&&(this.posNegVolume(!0,!0),r.drawPoints.apply(this,arguments),this.posNegVolume(!1,!1)),r.drawPoints.apply(this,arguments)}posNegVolume(e,t){let s=t?["positive","negative"]:["negative","positive"],i=this.options.volumeDivision,o=this.points.length,a=[],n=[],r=0,l,p,h,d;for(e?(this.posWidths=a,this.negWidths=n):(a=this.posWidths,n=this.negWidths);r<o;r++)(d=this.points[r])[s[0]+"Graphic"]=d.graphic,d.graphic=d[s[1]+"Graphic"],e&&(l=d.shapeArgs.width,(h=(p=this.priceZones[r]).wholeVolumeData)?(a.push(l/h*p.positiveVolumeData),n.push(l/h*p.negativeVolumeData)):(a.push(0),n.push(0))),d.color=t?i.styles.positiveColor:i.styles.negativeColor,d.shapeArgs.width=t?this.posWidths[r]:this.negWidths[r],d.shapeArgs.x=t?d.shapeArgs.x:this.posWidths[r]}translate(){let e=this,t=e.options,s=e.chart,i=e.yAxis,o=i.min,a=e.options.zoneLines,n=e.priceZones,l=0,p,d,c,m,g,f,v,V,x,D;r.translate.apply(e);let S=e.points;S.length&&(v=t.pointPadding<.5?t.pointPadding:.1,p=h(e.volumeDataArray),d=s.plotWidth/2,V=s.plotTop,c=y(i.toPixels(o)-i.toPixels(o+e.rangeStep)),g=y(i.toPixels(o)-i.toPixels(o+e.rangeStep)),v&&(m=y(c*(1-2*v)),l=y((c-m)/2),c=y(m)),S.forEach(function(t,s){x=t.barX=t.plotX=0,D=t.plotY=i.toPixels(n[s].start)-V-(i.reversed?c-g:c)-l,f=u(d*n[s].wholeVolumeData/p),t.pointWidth=f,t.shapeArgs=e.crispCol.apply(e,[x,D,f,c]),t.volumeNeg=n[s].negativeVolumeData,t.volumePos=n[s].positiveVolumeData,t.volumeAll=n[s].wholeVolumeData}),a.enabled&&e.drawZones(s,i,e.zoneStarts,a.styles))}getExtremes(){let e;let t=this.options.compare,s=this.options.cumulative;return this.options.compare?(this.options.compare=void 0,e=super.getExtremes(),this.options.compare=t):this.options.cumulative?(this.options.cumulative=!1,e=super.getExtremes(),this.options.cumulative=s):e=super.getExtremes(),e}getValues(e,t){let s=e.processedXData,i=e.processedYData,o=this.chart,a=t.ranges,n=[],r=[],l=[],p=o.get(t.volumeSeriesID);if(!e.chart){m("Base series not found! In case it has been removed, add a new one.",!0,o);return}if(!p||!p.processedXData.length){let e=p&&!p.processedXData.length?" does not contain any data.":" not found! Check `volumeSeriesID`.";m("Series "+t.volumeSeriesID+e,!0,o);return}let h=f(i[0]);if(h&&4!==i[0].length){m("Type of "+e.name+" series is different than line, OHLC or candlestick.",!0,o);return}return(this.priceZones=this.specifyZones(h,s,i,a,p)).forEach(function(e,t){n.push([e.x,e.end]),r.push(n[t][0]),l.push(n[t][1])}),{values:n,xData:r,yData:l}}specifyZones(e,t,s,i,o){let a=!!e&&function(e){let t=e.length,s=e[0][3],i=s,o=1,a;for(;o<t;o++)(a=e[o][3])<s&&(s=a),a>i&&(i=a);return{min:s,max:i}}(s),n=this.zoneStarts=[],r=[],l=a?a.min:d(s),p=a?a.max:h(s),m=0,g=1,f=this.linkedParent;if(!this.options.compareToMain&&f.dataModify&&(l=f.dataModify.modifyValue(l),p=f.dataModify.modifyValue(p)),!c(l)||!c(p))return this.points.length&&(this.setData([]),this.zoneStarts=[],this.zoneLinesSVG&&(this.zoneLinesSVG=this.zoneLinesSVG.destroy())),[];let v=this.rangeStep=u(p-l)/i;for(n.push(l);m<i-1;m++)n.push(u(n[m]+v));n.push(p);let y=n.length;for(;g<y;g++)r.push({index:g-1,x:t[0],start:n[g-1],end:n[g]});return this.volumePerZone(e,r,o,t,s)}volumePerZone(e,t,s,i,o){let a,n,r,l,p;let h=this,d=s.processedXData,u=s.processedYData,c=t.length-1,m=o.length,g=u.length;return y(m-g)&&(i[0]!==d[0]&&u.unshift(0),i[m-1]!==d[g-1]&&u.push(0)),h.volumeDataArray=[],t.forEach(function(t){for(p=0,t.wholeVolumeData=0,t.positiveVolumeData=0,t.negativeVolumeData=0;p<m;p++){n=!1,r=!1,l=e?o[p][3]:o[p],a=p?e?o[p-1][3]:o[p-1]:l;let s=h.linkedParent;!h.options.compareToMain&&s.dataModify&&(l=s.dataModify.modifyValue(l),a=s.dataModify.modifyValue(a)),l<=t.start&&0===t.index&&(n=!0),l>=t.end&&t.index===c&&(r=!0),(l>t.start||n)&&(l<t.end||r)&&(t.wholeVolumeData+=u[p],a>l?t.negativeVolumeData+=u[p]:t.positiveVolumeData+=u[p])}h.volumeDataArray.push(t.wholeVolumeData)}),t}drawZones(e,t,s,i){let o=e.renderer,a=e.plotWidth,n=e.plotTop,r=this.zoneLinesSVG,l=[],p;s.forEach(function(s){p=t.toPixels(s)-n,l=l.concat(e.renderer.crispLine([["M",0,p],["L",a,p]],i.lineWidth))}),r?r.animate({d:l}):r=this.zoneLinesSVG=o.path(l).attr({"stroke-width":i.lineWidth,stroke:i.color,dashstyle:i.dashStyle,zIndex:this.group.zIndex+.1}).add(this.group)}}return V.defaultOptions=v(l.defaultOptions,{params:{index:void 0,period:void 0,ranges:12,volumeSeriesID:"volume"},zoneLines:{enabled:!0,styles:{color:"#0A9AC9",dashStyle:"LongDash",lineWidth:1}},volumeDivision:{enabled:!0,styles:{positiveColor:"rgba(144, 237, 125, 0.8)",negativeColor:"rgba(244, 91, 91, 0.8)"}},animationLimit:1e3,enableMouseTracking:!1,pointPadding:0,zIndex:-1,crisp:!0,dataGrouping:{enabled:!1},dataLabels:{allowOverlap:!0,enabled:!0,format:"P: {point.volumePos:.2f} | N: {point.volumeNeg:.2f}",padding:0,style:{fontSize:"0.5em"},verticalAlign:"top"}}),g(V.prototype,{nameBase:"Volume by Price",nameComponents:["ranges"],calculateOn:{chart:"render",xAxis:"afterSetExtremes"},pointClass:e,markerAttribs:n,drawGraph:n,getColumnMetrics:r.getColumnMetrics,crispCol:r.crispCol}),i.registerSeriesType("vbp",V),V}),s(t,"masters/indicators/volume-by-price.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/volume-by-price",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function s(t,s,i,o){t.hasOwnProperty(s)||(t[s]=o.apply(null,i),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:s,module:t[s]}})))}s(t,"Stock/Indicators/VBP/VBPPoint.js",[t["Core/Series/SeriesRegistry.js"]],function(e){let{sma:{prototype:{pointClass:t}}}=e.seriesTypes;return class extends t{destroy(){this.negativeGraphic&&(this.negativeGraphic=this.negativeGraphic.destroy()),super.destroy.apply(this,arguments)}}}),s(t,"Stock/Indicators/VBP/VBPIndicator.js",[t["Stock/Indicators/VBP/VBPPoint.js"],t["Core/Animation/AnimationUtilities.js"],t["Core/Globals.js"],t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t,s,i,o){let{animObject:a}=t,{noop:n}=s,{column:{prototype:r},sma:l}=i.seriesTypes,{addEvent:p,arrayMax:h,arrayMin:d,correctFloat:u,defined:c,error:m,extend:g,isArray:f,merge:v}=o,y=Math.abs;class V extends l{init(e,t){let s=this;delete t.data,super.init.apply(s,arguments);let i=p(this.chart.constructor,"afterLinkSeries",function(){if(s.options){let t=s.options.params,i=s.linkedParent,o=e.get(t.volumeSeriesID);s.addCustomEvents(i,o)}i()},{order:1});return s}addCustomEvents(e,t){let s=this,i=()=>{s.chart.redraw(),s.setData([]),s.zoneStarts=[],s.zoneLinesSVG&&(s.zoneLinesSVG=s.zoneLinesSVG.destroy())};return s.dataEventsToUnbind.push(p(e,"remove",function(){i()})),t&&s.dataEventsToUnbind.push(p(t,"remove",function(){i()})),s}animate(e){let t=this,s=t.chart.inverted,i=t.group,o={};if(!e&&i){let e=s?t.yAxis.top:t.xAxis.left;s?(i["forceAnimate:translateY"]=!0,o.translateY=e):(i["forceAnimate:translateX"]=!0,o.translateX=e),i.animate(o,g(a(t.options.animation),{step:function(e,s){t.group.attr({scaleX:Math.max(.001,s.pos)})}}))}}drawPoints(){this.options.volumeDivision.enabled&&(this.posNegVolume(!0,!0),r.drawPoints.apply(this,arguments),this.posNegVolume(!1,!1)),r.drawPoints.apply(this,arguments)}posNegVolume(e,t){let s=t?["positive","negative"]:["negative","positive"],i=this.options.volumeDivision,o=this.points.length,a=[],n=[],r=0,l,p,h,d;for(e?(this.posWidths=a,this.negWidths=n):(a=this.posWidths,n=this.negWidths);r<o;r++)(d=this.points[r])[s[0]+"Graphic"]=d.graphic,d.graphic=d[s[1]+"Graphic"],e&&(l=d.shapeArgs.width,(h=(p=this.priceZones[r]).wholeVolumeData)?(a.push(l/h*p.positiveVolumeData),n.push(l/h*p.negativeVolumeData)):(a.push(0),n.push(0))),d.color=t?i.styles.positiveColor:i.styles.negativeColor,d.shapeArgs.width=t?this.posWidths[r]:this.negWidths[r],d.shapeArgs.x=t?d.shapeArgs.x:this.posWidths[r]}translate(){let e=this,t=e.options,s=e.chart,i=e.yAxis,o=i.min,a=e.options.zoneLines,n=e.priceZones,l=0,p,d,c,m,g,f,v,V,x,D;r.translate.apply(e);let S=e.points;S.length&&(v=t.pointPadding<.5?t.pointPadding:.1,p=h(e.volumeDataArray),d=s.plotWidth/2,V=s.plotTop,c=y(i.toPixels(o)-i.toPixels(o+e.rangeStep)),g=y(i.toPixels(o)-i.toPixels(o+e.rangeStep)),v&&(m=y(c*(1-2*v)),l=y((c-m)/2),c=y(m)),S.forEach(function(t,s){x=t.barX=t.plotX=0,D=t.plotY=i.toPixels(n[s].start)-V-(i.reversed?c-g:c)-l,f=u(d*n[s].wholeVolumeData/p),t.pointWidth=f,t.shapeArgs=e.crispCol.apply(e,[x,D,f,c]),t.volumeNeg=n[s].negativeVolumeData,t.volumePos=n[s].positiveVolumeData,t.volumeAll=n[s].wholeVolumeData}),a.enabled&&e.drawZones(s,i,e.zoneStarts,a.styles))}getExtremes(){let e;let t=this.options.compare,s=this.options.cumulative;return this.options.compare?(this.options.compare=void 0,e=super.getExtremes(),this.options.compare=t):this.options.cumulative?(this.options.cumulative=!1,e=super.getExtremes(),this.options.cumulative=s):e=super.getExtremes(),e}getValues(e,t){let s=e.processedXData,i=e.processedYData,o=this.chart,a=t.ranges,n=[],r=[],l=[],p=o.get(t.volumeSeriesID);if(!e.chart){m("Base series not found! In case it has been removed, add a new one.",!0,o);return}if(!p||!p.processedXData.length){let e=p&&!p.processedXData.length?" does not contain any data.":" not found! Check `volumeSeriesID`.";m("Series "+t.volumeSeriesID+e,!0,o);return}let h=f(i[0]);if(h&&4!==i[0].length){m("Type of "+e.name+" series is different than line, OHLC or candlestick.",!0,o);return}return(this.priceZones=this.specifyZones(h,s,i,a,p)).forEach(function(e,t){n.push([e.x,e.end]),r.push(n[t][0]),l.push(n[t][1])}),{values:n,xData:r,yData:l}}specifyZones(e,t,s,i,o){let a=!!e&&function(e){let t=e.length,s=e[0][3],i=s,o=1,a;for(;o<t;o++)(a=e[o][3])<s&&(s=a),a>i&&(i=a);return{min:s,max:i}}(s),n=this.zoneStarts=[],r=[],l=a?a.min:d(s),p=a?a.max:h(s),m=0,g=1,f=this.linkedParent;if(!this.options.compareToMain&&f.dataModify&&(l=f.dataModify.modifyValue(l),p=f.dataModify.modifyValue(p)),!c(l)||!c(p))return this.points.length&&(this.setData([]),this.zoneStarts=[],this.zoneLinesSVG&&(this.zoneLinesSVG=this.zoneLinesSVG.destroy())),[];let v=this.rangeStep=u(p-l)/i;for(n.push(l);m<i-1;m++)n.push(u(n[m]+v));n.push(p);let y=n.length;for(;g<y;g++)r.push({index:g-1,x:t[0],start:n[g-1],end:n[g]});return this.volumePerZone(e,r,o,t,s)}volumePerZone(e,t,s,i,o){let a,n,r,l,p;let h=this,d=s.processedXData,u=s.processedYData,c=t.length-1,m=o.length,g=u.length;return y(m-g)&&(i[0]!==d[0]&&u.unshift(0),i[m-1]!==d[g-1]&&u.push(0)),h.volumeDataArray=[],t.forEach(function(t){for(p=0,t.wholeVolumeData=0,t.positiveVolumeData=0,t.negativeVolumeData=0;p<m;p++){n=!1,r=!1,l=e?o[p][3]:o[p],a=p?e?o[p-1][3]:o[p-1]:l;let s=h.linkedParent;!h.options.compareToMain&&s.dataModify&&(l=s.dataModify.modifyValue(l),a=s.dataModify.modifyValue(a)),l<=t.start&&0===t.index&&(n=!0),l>=t.end&&t.index===c&&(r=!0),(l>t.start||n)&&(l<t.end||r)&&(t.wholeVolumeData+=u[p],a>l?t.negativeVolumeData+=u[p]:t.positiveVolumeData+=u[p])}h.volumeDataArray.push(t.wholeVolumeData)}),t}drawZones(e,t,s,i){let o=e.renderer,a=e.plotWidth,n=e.plotTop,r=this.zoneLinesSVG,l=[],p;s.forEach(function(s){p=t.toPixels(s)-n,l=l.concat(e.renderer.crispLine([["M",0,p],["L",a,p]],i.lineWidth))}),r?r.animate({d:l}):r=this.zoneLinesSVG=o.path(l).attr({"stroke-width":i.lineWidth,stroke:i.color,dashstyle:i.dashStyle,zIndex:this.group.zIndex+.1}).add(this.group)}}return V.defaultOptions=v(l.defaultOptions,{params:{index:void 0,period:void 0,ranges:12,volumeSeriesID:"volume"},zoneLines:{enabled:!0,styles:{color:"#0A9AC9",dashStyle:"LongDash",lineWidth:1}},volumeDivision:{enabled:!0,styles:{positiveColor:"rgba(144, 237, 125, 0.8)",negativeColor:"rgba(244, 91, 91, 0.8)"}},animationLimit:1e3,enableMouseTracking:!1,pointPadding:0,zIndex:-1,crisp:!0,dataGrouping:{enabled:!1},dataLabels:{allowOverlap:!0,enabled:!0,format:"P: {point.volumePos:.2f} | N: {point.volumeNeg:.2f}",padding:0,style:{fontSize:"0.5em"},verticalAlign:"top"}}),g(V.prototype,{nameBase:"Volume by Price",nameComponents:["ranges"],calculateOn:{chart:"render",xAxis:"afterSetExtremes"},pointClass:e,markerAttribs:n,drawGraph:n,getColumnMetrics:r.getColumnMetrics,crispCol:r.crispCol}),i.registerSeriesType("vbp",V),V}),s(t,"masters/indicators/volume-by-price.src.js",[t["Core/Globals.js"]],function(e){return e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/volume-by-price', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/volume-by-price', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -659,4 +659,4 @@
659
659
 
660
660
  return Highcharts;
661
661
  });
662
- }));
662
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Paweł Dalek
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/vwap",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function s(e,t,s,a){e.hasOwnProperty(t)||(e[t]=a.apply(null,s),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}s(t,"Stock/Indicators/VWAP/VWAPIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{sma:s}=e.seriesTypes,{error:a,isArray:i,merge:o}=t;class r extends s{getValues(e,t){let s=e.chart,o=e.xData,r=e.yData,n=t.period,u=!0,l;if(!(l=s.get(t.volumeSeriesID))){a("Series "+t.volumeSeriesID+" not found! Check `volumeSeriesID`.",!0,s);return}return i(r[0])||(u=!1),this.calculateVWAPValues(u,o,r,l,n)}calculateVWAPValues(e,t,s,a,i){let o,r,n,u,l,c;let d=a.yData,h=a.xData.length,p=t.length,f=[],m=[],v=[],g=[],y=[];for(l=0,o=p<=h?p:h,c=0;l<o;l++)r=(e?(s[l][1]+s[l][2]+s[l][3])/3:s[l])*d[l],n=c?f[l-1]+r:r,u=c?m[l-1]+d[l]:d[l],f.push(n),m.push(u),y.push([t[l],n/u]),v.push(y[l][0]),g.push(y[l][1]),++c===i&&(c=0);return{values:y,xData:v,yData:g}}}return r.defaultOptions=o(s.defaultOptions,{params:{index:void 0,period:30,volumeSeriesID:"volume"}}),e.registerSeriesType("vwap",r),r}),s(t,"masters/indicators/vwap.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/vwap",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function s(t,s,a,i){t.hasOwnProperty(s)||(t[s]=i.apply(null,a),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:s,module:t[s]}})))}s(t,"Stock/Indicators/VWAP/VWAPIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{sma:s}=e.seriesTypes,{error:a,isArray:i,merge:o}=t;class r extends s{getValues(e,t){let s=e.chart,o=e.xData,r=e.yData,n=t.period,u=!0,l;if(!(l=s.get(t.volumeSeriesID))){a("Series "+t.volumeSeriesID+" not found! Check `volumeSeriesID`.",!0,s);return}return i(r[0])||(u=!1),this.calculateVWAPValues(u,o,r,l,n)}calculateVWAPValues(e,t,s,a,i){let o,r,n,u,l,c;let d=a.yData,h=a.xData.length,p=t.length,f=[],m=[],v=[],g=[],y=[];for(l=0,o=p<=h?p:h,c=0;l<o;l++)r=(e?(s[l][1]+s[l][2]+s[l][3])/3:s[l])*d[l],n=c?f[l-1]+r:r,u=c?m[l-1]+d[l]:d[l],f.push(n),m.push(u),y.push([t[l],n/u]),v.push(y[l][0]),g.push(y[l][1]),++c===i&&(c=0);return{values:y,xData:v,yData:g}}}return r.defaultOptions=o(s.defaultOptions,{params:{index:void 0,period:30,volumeSeriesID:"volume"}}),e.registerSeriesType("vwap",r),r}),s(t,"masters/indicators/vwap.src.js",[t["Core/Globals.js"]],function(e){return e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/vwap', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/vwap', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -175,7 +175,7 @@
175
175
  * @excluding index
176
176
  */
177
177
  params: {
178
- index: void 0,
178
+ index: void 0, // Unchangeable index, do not inherit (#15362)
179
179
  period: 30,
180
180
  /**
181
181
  * The id of volume series which is mandatory. For example using
@@ -218,4 +218,4 @@
218
218
 
219
219
  return Highcharts;
220
220
  });
221
- }));
221
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Wojciech Chmiel
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/williams-r",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(e,t,i,s){e.hasOwnProperty(t)||(e[t]=s.apply(null,i),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}i(t,"Stock/Indicators/ArrayUtilities.js",[],function(){return{getArrayExtremes:function(e,t,i){return e.reduce((e,s)=>[Math.min(e[0],s[t]),Math.max(e[1],s[i])],[Number.MAX_VALUE,-Number.MAX_VALUE])}}}),i(t,"Stock/Indicators/WilliamsR/WilliamsRIndicator.js",[t["Stock/Indicators/ArrayUtilities.js"],t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t,i){let{sma:s}=t.seriesTypes,{extend:r,isArray:a,merge:n}=i;class o extends s{getValues(t,i){let s,r,n,o,l,u;let c=i.period,d=t.xData,h=t.yData,m=h?h.length:0,f=[],p=[],y=[];if(!(d.length<c)&&a(h[0])&&4===h[0].length){for(u=c-1;u<m;u++)s=h.slice(u-c+1,u+1),l=(r=e.getArrayExtremes(s,2,1))[0],n=-(((o=r[1])-h[u][3])/(o-l)*100),d[u]&&(f.push([d[u],n]),p.push(d[u]),y.push(n));return{values:f,xData:p,yData:y}}}}return o.defaultOptions=n(s.defaultOptions,{params:{index:void 0,period:14}}),r(o.prototype,{nameBase:"Williams %R"}),t.registerSeriesType("williamsr",o),o}),i(t,"masters/indicators/williams-r.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/williams-r",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(t,i,s,r){t.hasOwnProperty(i)||(t[i]=r.apply(null,s),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:i,module:t[i]}})))}i(t,"Stock/Indicators/ArrayUtilities.js",[],function(){return{getArrayExtremes:function(e,t,i){return e.reduce((e,s)=>[Math.min(e[0],s[t]),Math.max(e[1],s[i])],[Number.MAX_VALUE,-Number.MAX_VALUE])}}}),i(t,"Stock/Indicators/WilliamsR/WilliamsRIndicator.js",[t["Stock/Indicators/ArrayUtilities.js"],t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t,i){let{sma:s}=t.seriesTypes,{extend:r,isArray:a,merge:n}=i;class o extends s{getValues(t,i){let s,r,n,o,l,u;let c=i.period,d=t.xData,h=t.yData,m=h?h.length:0,f=[],p=[],y=[];if(!(d.length<c)&&a(h[0])&&4===h[0].length){for(u=c-1;u<m;u++)s=h.slice(u-c+1,u+1),l=(r=e.getArrayExtremes(s,2,1))[0],n=-(((o=r[1])-h[u][3])/(o-l)*100),d[u]&&(f.push([d[u],n]),p.push(d[u]),y.push(n));return{values:f,xData:p,yData:y}}}}return o.defaultOptions=n(s.defaultOptions,{params:{index:void 0,period:14}}),r(o.prototype,{nameBase:"Williams %R"}),t.registerSeriesType("williamsr",o),o}),i(t,"masters/indicators/williams-r.src.js",[t["Core/Globals.js"]],function(e){return e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v11.4.3 (2024-05-22)
2
+ * @license Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -12,7 +12,7 @@
12
12
  factory['default'] = factory;
13
13
  module.exports = factory;
14
14
  } else if (typeof define === 'function' && define.amd) {
15
- define('highcharts/indicators/williams-r', ['highcharts', 'highcharts/modules/stock'], function (Highcharts) {
15
+ define('highcharts/indicators/williams-r', ['highcharts', 'modules/stock'], function (Highcharts) {
16
16
  factory(Highcharts);
17
17
  factory.Highcharts = Highcharts;
18
18
  return factory;
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -178,7 +178,7 @@
178
178
  * @excluding index
179
179
  */
180
180
  params: {
181
- index: void 0,
181
+ index: void 0, // Unchangeable index, do not inherit (#15362)
182
182
  /**
183
183
  * Period for Williams %R oscillator
184
184
  */
@@ -222,4 +222,4 @@
222
222
 
223
223
  return Highcharts;
224
224
  });
225
- }));
225
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highstock JS v11.4.3 (2024-05-22)
2
+ * Highstock JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
6
6
  * (c) 2010-2024 Kacper Madej
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/wma",["highcharts","highcharts/modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function s(e,t,s,n){e.hasOwnProperty(t)||(e[t]=n.apply(null,s),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}s(t,"Stock/Indicators/WMA/WMAIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{sma:s}=e.seriesTypes,{isArray:n,merge:i}=t;function r(e,t,s,n,i){let r=t[n],o=i<0?s[n]:s[n][i];e.push([r,o])}function o(e,t,s,n){let i=e.length,r=e.reduce(function(e,t,s){return[null,e[1]+t[1]*(s+1)]})[1]/((i+1)/2*i),o=t[n-1];return e.shift(),[o,r]}class u extends s{getValues(e,t){let s=t.period,i=e.xData,u=e.yData,a=u?u.length:0,d=i[0],h=[],c=[],l=[],f=1,p=-1,m,g,y=u[0];if(i.length<s)return;n(u[0])&&(p=t.index,y=u[0][p]);let w=[[d,y]];for(;f!==s;)r(w,i,u,f,p),f++;for(m=f;m<a;m++)h.push(g=o(w,i,u,m)),c.push(g[0]),l.push(g[1]),r(w,i,u,m,p);return h.push(g=o(w,i,u,m)),c.push(g[0]),l.push(g[1]),{values:h,xData:c,yData:l}}}return u.defaultOptions=i(s.defaultOptions,{params:{index:3,period:9}}),e.registerSeriesType("wma",u),u}),s(t,"masters/indicators/wma.src.js",[t["Core/Globals.js"]],function(e){return e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/indicators/wma",["highcharts","modules/stock"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function s(t,s,n,i){t.hasOwnProperty(s)||(t[s]=i.apply(null,n),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:s,module:t[s]}})))}s(t,"Stock/Indicators/WMA/WMAIndicator.js",[t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t){let{sma:s}=e.seriesTypes,{isArray:n,merge:i}=t;function r(e,t,s,n,i){let r=t[n],o=i<0?s[n]:s[n][i];e.push([r,o])}function o(e,t,s,n){let i=e.length,r=e.reduce(function(e,t,s){return[null,e[1]+t[1]*(s+1)]})[1]/((i+1)/2*i),o=t[n-1];return e.shift(),[o,r]}class u extends s{getValues(e,t){let s=t.period,i=e.xData,u=e.yData,a=u?u.length:0,d=i[0],l=[],c=[],h=[],f=1,p=-1,m,g,y=u[0];if(i.length<s)return;n(u[0])&&(p=t.index,y=u[0][p]);let x=[[d,y]];for(;f!==s;)r(x,i,u,f,p),f++;for(m=f;m<a;m++)l.push(g=o(x,i,u,m)),c.push(g[0]),h.push(g[1]),r(x,i,u,m,p);return l.push(g=o(x,i,u,m)),c.push(g[0]),h.push(g[1]),{values:l,xData:c,yData:h}}}return u.defaultOptions=i(s.defaultOptions,{params:{index:3,period:9}}),e.registerSeriesType("wma",u),u}),s(t,"masters/indicators/wma.src.js",[t["Core/Globals.js"]],function(e){return e})});