smartxtrader 3.8.1-xm.0

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 (1270) hide show
  1. package/.babelrc +20 -0
  2. package/.dockerignore +5 -0
  3. package/.eslintignore +6 -0
  4. package/.eslintrc.js +81 -0
  5. package/.gitattributes +6 -0
  6. package/.stylelintrc.js +33 -0
  7. package/Dockerfile +14 -0
  8. package/Gruntfile.js +38 -0
  9. package/LICENSE +201 -0
  10. package/README.md +191 -0
  11. package/api/_lib/http_utils.js +150 -0
  12. package/api/_lib/legal_consent_store.js +108 -0
  13. package/api/_lib/telegram_session_store.js +182 -0
  14. package/api/_lib/telegram_subscription.js +507 -0
  15. package/api/deriv/auth.js +501 -0
  16. package/api/legal/accept.js +99 -0
  17. package/api/legal/delete.js +77 -0
  18. package/api/legal/status.js +71 -0
  19. package/api/logout.js +58 -0
  20. package/api/session-status.js +74 -0
  21. package/api/telegram/auth.js +117 -0
  22. package/api/telegram/control.js +10 -0
  23. package/api/telegram/logout.js +69 -0
  24. package/api/telegram/notify-login.js +79 -0
  25. package/api/telegram/status.js +153 -0
  26. package/api/telegram/webhook.js +1361 -0
  27. package/binary.com.conf +22 -0
  28. package/build/aliases.yaml +66 -0
  29. package/build/babel.js +19 -0
  30. package/build/checkDependencies.js +10 -0
  31. package/build/clean.js +5 -0
  32. package/build/concurrent.js +8 -0
  33. package/build/config/constants.js +54 -0
  34. package/build/config/helpers.js +37 -0
  35. package/build/config/init.js +48 -0
  36. package/build/connect.js +103 -0
  37. package/build/copy.js +30 -0
  38. package/build/cssmin.js +20 -0
  39. package/build/eslint.js +15 -0
  40. package/build/gh-pages.js +27 -0
  41. package/build/hashres.js +17 -0
  42. package/build/mochaTest.js +20 -0
  43. package/build/postcss.js +20 -0
  44. package/build/sass.js +17 -0
  45. package/build/shell.js +194 -0
  46. package/build/stylelint.js +13 -0
  47. package/build/watch.js +21 -0
  48. package/build/webpack/config_app.js +23 -0
  49. package/build/webpack/config_common.js +77 -0
  50. package/build/webpack/helpers.js +19 -0
  51. package/build/webpack/paths.js +11 -0
  52. package/build/webpack/plugins.js +84 -0
  53. package/build/webpack.js +23 -0
  54. package/crowdin.yaml +6 -0
  55. package/cyberpunk-ui/index.html +14 -0
  56. package/cyberpunk-ui/package-lock.json +6321 -0
  57. package/cyberpunk-ui/package.json +37 -0
  58. package/cyberpunk-ui/public/icons/icon-192.svg +21 -0
  59. package/cyberpunk-ui/public/icons/icon-512.svg +21 -0
  60. package/cyberpunk-ui/public/manifest.webmanifest +22 -0
  61. package/cyberpunk-ui/src/App.jsx +49 -0
  62. package/cyberpunk-ui/src/api/client.js +53 -0
  63. package/cyberpunk-ui/src/api/session.ts +42 -0
  64. package/cyberpunk-ui/src/components/chart/DigitDistributionTable.jsx +522 -0
  65. package/cyberpunk-ui/src/components/chart/TradingChart.jsx +45 -0
  66. package/cyberpunk-ui/src/components/common/InstrumentBadge.jsx +28 -0
  67. package/cyberpunk-ui/src/components/common/KeyboardShortcuts.jsx +47 -0
  68. package/cyberpunk-ui/src/components/common/NotificationsCenter.jsx +24 -0
  69. package/cyberpunk-ui/src/components/common/SubscriptionGate.jsx +388 -0
  70. package/cyberpunk-ui/src/components/layout/SplitLayout.jsx +65 -0
  71. package/cyberpunk-ui/src/components/layout/TradingBackground.jsx +210 -0
  72. package/cyberpunk-ui/src/components/legal/LegalGate.jsx +250 -0
  73. package/cyberpunk-ui/src/components/navigation/BottomNav.jsx +45 -0
  74. package/cyberpunk-ui/src/components/navigation/TopBar.jsx +98 -0
  75. package/cyberpunk-ui/src/components/panels/ChartPanel.jsx +92 -0
  76. package/cyberpunk-ui/src/components/panels/PositionsHistory.jsx +94 -0
  77. package/cyberpunk-ui/src/components/panels/TradePanel.jsx +450 -0
  78. package/cyberpunk-ui/src/components/panels/TransformerRangeModal.jsx +184 -0
  79. package/cyberpunk-ui/src/components/panels/Watchlist.jsx +81 -0
  80. package/cyberpunk-ui/src/components/settings/ChartSettingsPortal.jsx +66 -0
  81. package/cyberpunk-ui/src/components/settings/SettingsSheet.jsx +76 -0
  82. package/cyberpunk-ui/src/config/legal.js +104 -0
  83. package/cyberpunk-ui/src/config/smartanalizer.js +128 -0
  84. package/cyberpunk-ui/src/hooks/useAppLayout.js +34 -0
  85. package/cyberpunk-ui/src/main.jsx +21 -0
  86. package/cyberpunk-ui/src/pages/AuthPage.tsx +265 -0
  87. package/cyberpunk-ui/src/pages/Dashboard.jsx +55 -0
  88. package/cyberpunk-ui/src/pages/Markets.jsx +15 -0
  89. package/cyberpunk-ui/src/pages/RegisterPage.tsx +202 -0
  90. package/cyberpunk-ui/src/pages/SettingsPage.jsx +180 -0
  91. package/cyberpunk-ui/src/pages/Trades.jsx +12 -0
  92. package/cyberpunk-ui/src/routes/AppRouter.jsx +21 -0
  93. package/cyberpunk-ui/src/store/sessionSlice.js +94 -0
  94. package/cyberpunk-ui/src/store/settingsSlice.js +68 -0
  95. package/cyberpunk-ui/src/store/store.js +18 -0
  96. package/cyberpunk-ui/src/store/symbolsSlice.js +93 -0
  97. package/cyberpunk-ui/src/store/uiSlice.js +80 -0
  98. package/cyberpunk-ui/src/styles/global.css +1404 -0
  99. package/cyberpunk-ui/src/theme/ThemeProvider.jsx +47 -0
  100. package/cyberpunk-ui/src/utils/authToken.ts +99 -0
  101. package/cyberpunk-ui/src/utils/instrumentIcons.js +24 -0
  102. package/cyberpunk-ui/src/utils/persist.js +24 -0
  103. package/cyberpunk-ui/src/vite-env.d.ts +9 -0
  104. package/cyberpunk-ui/tsconfig.json +21 -0
  105. package/cyberpunk-ui/tsconfig.node.json +9 -0
  106. package/cyberpunk-ui/vite.config.js +34 -0
  107. package/docker-compose.portainer.yml +13 -0
  108. package/docker-compose.yml +13 -0
  109. package/docs/canvasjs-candlesticks.md +138 -0
  110. package/docs/portainer-deployment.md +22 -0
  111. package/docs/telegram-bridge.md +207 -0
  112. package/docs/telegram_bot_integration.md +172 -0
  113. package/docs/value-distribution-scheme.ru.md +35 -0
  114. package/favicon.ico +0 -0
  115. package/mobile/App.js +138 -0
  116. package/mobile/chartHtml.js +147 -0
  117. package/mobile/components/AnimatedBackground.js +145 -0
  118. package/mobile/components/ChartWebView.js +113 -0
  119. package/mobile/components/Controls.js +245 -0
  120. package/mobile/metro.config.js +17 -0
  121. package/mobile/theme.js +57 -0
  122. package/package.json +181 -0
  123. package/packages/canvasjs-runtime/LICENSE +201 -0
  124. package/packages/canvasjs-runtime/README.md +7 -0
  125. package/packages/canvasjs-runtime/index.js +18 -0
  126. package/packages/canvasjs-runtime/package.json +18 -0
  127. package/packages/webtrader-charts/.gitattributes +3 -0
  128. package/packages/webtrader-charts/LICENSE +201 -0
  129. package/packages/webtrader-charts/README.md +154 -0
  130. package/packages/webtrader-charts/package.json +17 -0
  131. package/packages/webtrader-charts/rollup.config.iife.mjs +6 -0
  132. package/packages/webtrader-charts/rollup.config.mjs +144 -0
  133. package/packages/webtrader-charts/src/chartDraw.js +171 -0
  134. package/packages/webtrader-charts/src/chartOptions.html +173 -0
  135. package/packages/webtrader-charts/src/chartOptions.js +412 -0
  136. package/packages/webtrader-charts/src/chartOptions.scss +368 -0
  137. package/packages/webtrader-charts/src/chartTemplateManager.html +74 -0
  138. package/packages/webtrader-charts/src/chartTemplateManager.js +305 -0
  139. package/packages/webtrader-charts/src/chartWindow.html +12 -0
  140. package/packages/webtrader-charts/src/chartWindow.js +224 -0
  141. package/packages/webtrader-charts/src/charts.js +689 -0
  142. package/packages/webtrader-charts/src/charts.scss +128 -0
  143. package/packages/webtrader-charts/src/common/chartingRequestMap.js +381 -0
  144. package/packages/webtrader-charts/src/common/currentprice.js +155 -0
  145. package/packages/webtrader-charts/src/common/globals.js +15 -0
  146. package/packages/webtrader-charts/src/common/highchartsMousewheel.js +50 -0
  147. package/packages/webtrader-charts/src/common/indicators.js +340 -0
  148. package/packages/webtrader-charts/src/common/liveapi.js +194 -0
  149. package/packages/webtrader-charts/src/common/notification.js +37 -0
  150. package/packages/webtrader-charts/src/common/ohlc_handler.js +160 -0
  151. package/packages/webtrader-charts/src/common/rivetsExtra.js +163 -0
  152. package/packages/webtrader-charts/src/common/stream_handler.js +164 -0
  153. package/packages/webtrader-charts/src/common/utils.js +121 -0
  154. package/packages/webtrader-charts/src/crosshair.js +24 -0
  155. package/packages/webtrader-charts/src/draw/horizontal_line.js +124 -0
  156. package/packages/webtrader-charts/src/draw/properties_selector.html +4 -0
  157. package/packages/webtrader-charts/src/draw/properties_selector.js +87 -0
  158. package/packages/webtrader-charts/src/draw/vertical_line.js +123 -0
  159. package/packages/webtrader-charts/src/i18n/ach.json +102 -0
  160. package/packages/webtrader-charts/src/i18n/ar.json +96 -0
  161. package/packages/webtrader-charts/src/i18n/build.js +35 -0
  162. package/packages/webtrader-charts/src/i18n/de.json +102 -0
  163. package/packages/webtrader-charts/src/i18n/dictionary.json +1 -0
  164. package/packages/webtrader-charts/src/i18n/en.json +102 -0
  165. package/packages/webtrader-charts/src/i18n/es.json +102 -0
  166. package/packages/webtrader-charts/src/i18n/fr.json +102 -0
  167. package/packages/webtrader-charts/src/i18n/id.json +102 -0
  168. package/packages/webtrader-charts/src/i18n/it.json +102 -0
  169. package/packages/webtrader-charts/src/i18n/ja.json +102 -0
  170. package/packages/webtrader-charts/src/i18n/pl.json +102 -0
  171. package/packages/webtrader-charts/src/i18n/pt.json +102 -0
  172. package/packages/webtrader-charts/src/i18n/ru.json +102 -0
  173. package/packages/webtrader-charts/src/i18n/th.json +102 -0
  174. package/packages/webtrader-charts/src/i18n/vi.json +102 -0
  175. package/packages/webtrader-charts/src/i18n/zh_cn.json +102 -0
  176. package/packages/webtrader-charts/src/i18n/zh_tw.json +102 -0
  177. package/packages/webtrader-charts/src/images/Dash.svg +1 -0
  178. package/packages/webtrader-charts/src/images/DashDot.svg +1 -0
  179. package/packages/webtrader-charts/src/images/Dot.svg +1 -0
  180. package/packages/webtrader-charts/src/images/LongDash.svg +1 -0
  181. package/packages/webtrader-charts/src/images/LongDashDot.svg +1 -0
  182. package/packages/webtrader-charts/src/images/LongDashDotDot.svg +1 -0
  183. package/packages/webtrader-charts/src/images/ShortDash.svg +1 -0
  184. package/packages/webtrader-charts/src/images/ShortDashDot.svg +1 -0
  185. package/packages/webtrader-charts/src/images/ShortDashDotDot.svg +1 -0
  186. package/packages/webtrader-charts/src/images/ShortDot.svg +1 -0
  187. package/packages/webtrader-charts/src/images/Solid.svg +1 -0
  188. package/packages/webtrader-charts/src/images/back-arrow-w.svg +1 -0
  189. package/packages/webtrader-charts/src/images/back-arrow.svg +1 -0
  190. package/packages/webtrader-charts/src/images/blogger.svg +1 -0
  191. package/packages/webtrader-charts/src/images/blue_up_arrow.svg +1 -0
  192. package/packages/webtrader-charts/src/images/circle-close.svg +1 -0
  193. package/packages/webtrader-charts/src/images/close-blue.svg +1 -0
  194. package/packages/webtrader-charts/src/images/close-white.svg +1 -0
  195. package/packages/webtrader-charts/src/images/close.svg +1 -0
  196. package/packages/webtrader-charts/src/images/favorite-active.svg +1 -0
  197. package/packages/webtrader-charts/src/images/favorite-normal.svg +1 -0
  198. package/packages/webtrader-charts/src/images/fb.svg +1 -0
  199. package/packages/webtrader-charts/src/images/g-plus.svg +1 -0
  200. package/packages/webtrader-charts/src/images/horizontal_line.svg +1 -0
  201. package/packages/webtrader-charts/src/images/ic-edit.svg +1 -0
  202. package/packages/webtrader-charts/src/images/ic-search.svg +1 -0
  203. package/packages/webtrader-charts/src/images/ic-tip.svg +1 -0
  204. package/packages/webtrader-charts/src/images/images.js +33 -0
  205. package/packages/webtrader-charts/src/images/indicators/Abandoned_baby.svg +1 -0
  206. package/packages/webtrader-charts/src/images/indicators/Advance_block.svg +1 -0
  207. package/packages/webtrader-charts/src/images/indicators/Bet_hold.svg +1 -0
  208. package/packages/webtrader-charts/src/images/indicators/Bullish Piercing.svg +1 -0
  209. package/packages/webtrader-charts/src/images/indicators/Dark_cloud_cover.svg +1 -0
  210. package/packages/webtrader-charts/src/images/indicators/Doji.svg +1 -0
  211. package/packages/webtrader-charts/src/images/indicators/Doji_star.svg +1 -0
  212. package/packages/webtrader-charts/src/images/indicators/Download.svg +1 -0
  213. package/packages/webtrader-charts/src/images/indicators/Dragonfly_doji.svg +1 -0
  214. package/packages/webtrader-charts/src/images/indicators/Engulfing_pattern.svg +1 -0
  215. package/packages/webtrader-charts/src/images/indicators/Inverted-hammer.svg +1 -0
  216. package/packages/webtrader-charts/src/images/indicators/breakaway_pattern.svg +1 -0
  217. package/packages/webtrader-charts/src/images/indicators/closing_marubozu.svg +1 -0
  218. package/packages/webtrader-charts/src/images/indicators/counterattack.svg +1 -0
  219. package/packages/webtrader-charts/src/images/indicators/down_fractal.svg +1 -0
  220. package/packages/webtrader-charts/src/images/indicators/evening_doji_star.svg +1 -0
  221. package/packages/webtrader-charts/src/images/indicators/evening_star.svg +1 -0
  222. package/packages/webtrader-charts/src/images/indicators/gap_three_methods.svg +1 -0
  223. package/packages/webtrader-charts/src/images/indicators/gravestone_doji.svg +1 -0
  224. package/packages/webtrader-charts/src/images/indicators/hammer.svg +1 -0
  225. package/packages/webtrader-charts/src/images/indicators/hanging_man.svg +1 -0
  226. package/packages/webtrader-charts/src/images/indicators/harami_cross.svg +1 -0
  227. package/packages/webtrader-charts/src/images/indicators/harami_pattern.svg +1 -0
  228. package/packages/webtrader-charts/src/images/indicators/high_wave.svg +1 -0
  229. package/packages/webtrader-charts/src/images/indicators/hikkake.svg +1 -0
  230. package/packages/webtrader-charts/src/images/indicators/homing_pigeon.svg +1 -0
  231. package/packages/webtrader-charts/src/images/indicators/identical_three_crows.svg +1 -0
  232. package/packages/webtrader-charts/src/images/indicators/in-neck.svg +1 -0
  233. package/packages/webtrader-charts/src/images/indicators/indicatorImages.js +126 -0
  234. package/packages/webtrader-charts/src/images/indicators/kicking.svg +1 -0
  235. package/packages/webtrader-charts/src/images/indicators/ladder-bottom.svg +1 -0
  236. package/packages/webtrader-charts/src/images/indicators/long-legged-doji.svg +1 -0
  237. package/packages/webtrader-charts/src/images/indicators/long-line-candles.svg +1 -0
  238. package/packages/webtrader-charts/src/images/indicators/marubozu.svg +1 -0
  239. package/packages/webtrader-charts/src/images/indicators/mat-hold.svg +1 -0
  240. package/packages/webtrader-charts/src/images/indicators/matching-low.svg +1 -0
  241. package/packages/webtrader-charts/src/images/indicators/morning-doji-start.svg +1 -0
  242. package/packages/webtrader-charts/src/images/indicators/morning-star.svg +1 -0
  243. package/packages/webtrader-charts/src/images/indicators/on-neck.svg +1 -0
  244. package/packages/webtrader-charts/src/images/indicators/rickshaw man.svg +1 -0
  245. package/packages/webtrader-charts/src/images/indicators/rising falling three methods.svg +1 -0
  246. package/packages/webtrader-charts/src/images/indicators/salled pattern.svg +1 -0
  247. package/packages/webtrader-charts/src/images/indicators/separating lines.svg +1 -0
  248. package/packages/webtrader-charts/src/images/indicators/shooting star.svg +1 -0
  249. package/packages/webtrader-charts/src/images/indicators/short line candle.svg +1 -0
  250. package/packages/webtrader-charts/src/images/indicators/side by side white line.svg +1 -0
  251. package/packages/webtrader-charts/src/images/indicators/spinning top.svg +1 -0
  252. package/packages/webtrader-charts/src/images/indicators/stick sandwich.svg +1 -0
  253. package/packages/webtrader-charts/src/images/indicators/takuri line.svg +1 -0
  254. package/packages/webtrader-charts/src/images/indicators/tasuki gap.svg +1 -0
  255. package/packages/webtrader-charts/src/images/indicators/three_black_crows.svg +1 -0
  256. package/packages/webtrader-charts/src/images/indicators/three_inside_up_down.svg +1 -0
  257. package/packages/webtrader-charts/src/images/indicators/three_line_strike.svg +1 -0
  258. package/packages/webtrader-charts/src/images/indicators/three_outside_up_down.svg +1 -0
  259. package/packages/webtrader-charts/src/images/indicators/three_river.svg +1 -0
  260. package/packages/webtrader-charts/src/images/indicators/three_stars_in_the_south.svg +1 -0
  261. package/packages/webtrader-charts/src/images/indicators/three_white_soldiers.svg +1 -0
  262. package/packages/webtrader-charts/src/images/indicators/thrusting_pattern.svg +1 -0
  263. package/packages/webtrader-charts/src/images/indicators/tristar.svg +1 -0
  264. package/packages/webtrader-charts/src/images/indicators/two_crows.svg +1 -0
  265. package/packages/webtrader-charts/src/images/indicators/typprice.svg +1 -0
  266. package/packages/webtrader-charts/src/images/indicators/up_fractal.svg +1 -0
  267. package/packages/webtrader-charts/src/images/indicators/upside_gap_two_crows.svg +1 -0
  268. package/packages/webtrader-charts/src/images/maximize.svg +1 -0
  269. package/packages/webtrader-charts/src/images/minimize.svg +1 -0
  270. package/packages/webtrader-charts/src/images/orange_down_arrow.svg +1 -0
  271. package/packages/webtrader-charts/src/images/twitter.svg +1 -0
  272. package/packages/webtrader-charts/src/images/vertical_line.svg +1 -0
  273. package/packages/webtrader-charts/src/images/vk.svg +1 -0
  274. package/packages/webtrader-charts/src/index.js +61 -0
  275. package/packages/webtrader-charts/src/index.scss +5 -0
  276. package/packages/webtrader-charts/src/indicatorBuilder.html +141 -0
  277. package/packages/webtrader-charts/src/indicatorBuilder.js +157 -0
  278. package/packages/webtrader-charts/src/indicatorBuilder.scss +386 -0
  279. package/packages/webtrader-charts/src/indicatorManagement.html +123 -0
  280. package/packages/webtrader-charts/src/indicatorManagement.js +217 -0
  281. package/packages/webtrader-charts/src/indicatorManagement.scss +264 -0
  282. package/packages/webtrader-charts/src/indicators/ATR.js +130 -0
  283. package/packages/webtrader-charts/src/indicators/BOP.js +86 -0
  284. package/packages/webtrader-charts/src/indicators/IndicatorBase.js +119 -0
  285. package/packages/webtrader-charts/src/indicators/NATR.js +63 -0
  286. package/packages/webtrader-charts/src/indicators/ROCP.js +64 -0
  287. package/packages/webtrader-charts/src/indicators/ROCR.js +64 -0
  288. package/packages/webtrader-charts/src/indicators/STDDEV.js +107 -0
  289. package/packages/webtrader-charts/src/indicators/WILLR.js +64 -0
  290. package/packages/webtrader-charts/src/indicators/adx.js +115 -0
  291. package/packages/webtrader-charts/src/indicators/adxr.js +53 -0
  292. package/packages/webtrader-charts/src/indicators/alligator.js +140 -0
  293. package/packages/webtrader-charts/src/indicators/alma.js +80 -0
  294. package/packages/webtrader-charts/src/indicators/ao.js +119 -0
  295. package/packages/webtrader-charts/src/indicators/apo.js +57 -0
  296. package/packages/webtrader-charts/src/indicators/aroon.js +173 -0
  297. package/packages/webtrader-charts/src/indicators/aroonosc.js +75 -0
  298. package/packages/webtrader-charts/src/indicators/bbands.js +204 -0
  299. package/packages/webtrader-charts/src/indicators/cc.js +51 -0
  300. package/packages/webtrader-charts/src/indicators/cci.js +97 -0
  301. package/packages/webtrader-charts/src/indicators/cdl-mangled-props.js +1135 -0
  302. package/packages/webtrader-charts/src/indicators/cdl.js +1694 -0
  303. package/packages/webtrader-charts/src/indicators/chop.js +79 -0
  304. package/packages/webtrader-charts/src/indicators/cks.js +190 -0
  305. package/packages/webtrader-charts/src/indicators/cmo.js +104 -0
  306. package/packages/webtrader-charts/src/indicators/dc.js +175 -0
  307. package/packages/webtrader-charts/src/indicators/dema.js +70 -0
  308. package/packages/webtrader-charts/src/indicators/dx.js +162 -0
  309. package/packages/webtrader-charts/src/indicators/ema.js +66 -0
  310. package/packages/webtrader-charts/src/indicators/fractal.js +162 -0
  311. package/packages/webtrader-charts/src/indicators/hma.js +74 -0
  312. package/packages/webtrader-charts/src/indicators/ichimoku.js +246 -0
  313. package/packages/webtrader-charts/src/indicators/index.js +73 -0
  314. package/packages/webtrader-charts/src/indicators/kama.js +83 -0
  315. package/packages/webtrader-charts/src/indicators/lsma.js +71 -0
  316. package/packages/webtrader-charts/src/indicators/lwma.js +75 -0
  317. package/packages/webtrader-charts/src/indicators/macd.js +188 -0
  318. package/packages/webtrader-charts/src/indicators/mama.js +178 -0
  319. package/packages/webtrader-charts/src/indicators/mass.js +93 -0
  320. package/packages/webtrader-charts/src/indicators/max.js +61 -0
  321. package/packages/webtrader-charts/src/indicators/min.js +61 -0
  322. package/packages/webtrader-charts/src/indicators/mom.js +63 -0
  323. package/packages/webtrader-charts/src/indicators/ppo.js +200 -0
  324. package/packages/webtrader-charts/src/indicators/roc.js +63 -0
  325. package/packages/webtrader-charts/src/indicators/rsi.js +75 -0
  326. package/packages/webtrader-charts/src/indicators/sar.js +216 -0
  327. package/packages/webtrader-charts/src/indicators/sma.js +71 -0
  328. package/packages/webtrader-charts/src/indicators/smma.js +81 -0
  329. package/packages/webtrader-charts/src/indicators/stoch.js +169 -0
  330. package/packages/webtrader-charts/src/indicators/stochf.js +140 -0
  331. package/packages/webtrader-charts/src/indicators/stochrsi.js +70 -0
  332. package/packages/webtrader-charts/src/indicators/stochs.js +141 -0
  333. package/packages/webtrader-charts/src/indicators/sum.js +60 -0
  334. package/packages/webtrader-charts/src/indicators/t3.js +119 -0
  335. package/packages/webtrader-charts/src/indicators/tema.js +81 -0
  336. package/packages/webtrader-charts/src/indicators/trange.js +75 -0
  337. package/packages/webtrader-charts/src/indicators/trima.js +73 -0
  338. package/packages/webtrader-charts/src/indicators/typprice.js +50 -0
  339. package/packages/webtrader-charts/src/indicators/ultosc.js +103 -0
  340. package/packages/webtrader-charts/src/indicators/var.js +96 -0
  341. package/packages/webtrader-charts/src/indicators/wclprice.js +51 -0
  342. package/packages/webtrader-charts/src/indicators/wma.js +79 -0
  343. package/packages/webtrader-charts/src/indicators-config.js +2138 -0
  344. package/packages/webtrader-charts/src/lib/jquery.ddslick.js +361 -0
  345. package/packages/webtrader-charts/src/lib/leanModal.js +81 -0
  346. package/packages/webtrader-charts/src/lib/leanModal.scss +52 -0
  347. package/packages/webtrader-charts/src/lib/spectrum.js +2323 -0
  348. package/packages/webtrader-charts/src/lib/spectrum.scss +507 -0
  349. package/packages/webtrader-charts/src/lib/toastr.js +380 -0
  350. package/packages/webtrader-charts/src/lib/toastr.scss +161 -0
  351. package/packages/webtrader-charts/src/mobileview.scss +29 -0
  352. package/packages/webtrader-charts/src/overlayManagement.html +30 -0
  353. package/packages/webtrader-charts/src/overlayManagement.js +297 -0
  354. package/packages/webtrader-charts/src/overlayManagement.scss +77 -0
  355. package/packages/webtrader-charts/src/tableView.html +28 -0
  356. package/packages/webtrader-charts/src/tableView.js +166 -0
  357. package/packages/webtrader-charts/src/tableView.scss +15 -0
  358. package/scripts/README.md +68 -0
  359. package/scripts/__tests__/static_strings.js +32 -0
  360. package/scripts/__tests__/svg_test.js +47 -0
  361. package/scripts/common.js +93 -0
  362. package/scripts/config/pages.js +124 -0
  363. package/scripts/config/sitemap_urls.js +56 -0
  364. package/scripts/extract_js_texts.js +180 -0
  365. package/scripts/gettext.js +155 -0
  366. package/scripts/js_texts/extracted_strings_app.js +520 -0
  367. package/scripts/js_texts/static_strings_app.js +62 -0
  368. package/scripts/js_translation.js +99 -0
  369. package/scripts/render.js +406 -0
  370. package/scripts/sitemap.js +68 -0
  371. package/scripts/ssr-scriptjs-shim.js +5 -0
  372. package/scripts/update_translations.sh +76 -0
  373. package/src/download/fonts/binary_symbols.woff +0 -0
  374. package/src/download/fonts/guide/casino_hand-webfont.eot +0 -0
  375. package/src/download/fonts/guide/casino_hand-webfont.svg +243 -0
  376. package/src/download/fonts/guide/casino_hand-webfont.ttf +0 -0
  377. package/src/download/fonts/guide/casino_hand-webfont.woff +0 -0
  378. package/src/images/common/authenticated.svg +1 -0
  379. package/src/images/common/close_icon.svg +1 -0
  380. package/src/images/common/email_sent.svg +1 -0
  381. package/src/images/common/globe-with_logo.svg +1 -0
  382. package/src/images/common/ic-anchor.svg +1 -0
  383. package/src/images/common/livechat.svg +1 -0
  384. package/src/images/common/logos/ic-brand-binarybot (2).svg +18 -0
  385. package/src/images/common/logos/ic-brand-binarybot.svg +21 -0
  386. package/src/images/common/logos/ic-brand-dbot.svg +1 -0
  387. package/src/images/common/logos/ic-brand-dmt5.svg +1 -0
  388. package/src/images/common/logos/ic-brand-dtrade2.svg +1 -0
  389. package/src/images/common/logos/ic-brand-dtrader.svg +36 -0
  390. package/src/images/common/logos/ic-brand-dxtrade.svg +1 -0
  391. package/src/images/common/logos/icon_smarttrader.svg +1 -0
  392. package/src/images/common/logos/xxhdpi.png +0 -0
  393. package/src/images/common/og_image.gif +0 -0
  394. package/src/images/common/plus.svg +1 -0
  395. package/src/images/common/scrollup_icon.svg +1 -0
  396. package/src/images/languages/ic-flag-de.svg +1 -0
  397. package/src/images/languages/ic-flag-en.svg +1 -0
  398. package/src/images/languages/ic-flag-es.svg +1 -0
  399. package/src/images/languages/ic-flag-fr.svg +1 -0
  400. package/src/images/languages/ic-flag-id.svg +1 -0
  401. package/src/images/languages/ic-flag-it.svg +1 -0
  402. package/src/images/languages/ic-flag-pl.svg +1 -0
  403. package/src/images/languages/ic-flag-pt.svg +1 -0
  404. package/src/images/languages/ic-flag-ru.svg +1 -0
  405. package/src/images/languages/ic-flag-th.svg +1 -0
  406. package/src/images/languages/ic-flag-uk.svg +1 -0
  407. package/src/images/languages/ic-flag-vi.svg +1 -0
  408. package/src/images/languages/ic-flag-zh_cn.svg +1 -0
  409. package/src/images/languages/ic-flag-zh_tw.svg +1 -0
  410. package/src/images/pages/contact/chat-icon.svg +1 -0
  411. package/src/images/pages/contact/search-icon.svg +1 -0
  412. package/src/images/pages/footer/ic-fullscreen.svg +1 -0
  413. package/src/images/pages/footer/ic-help-centre.svg +66 -0
  414. package/src/images/pages/footer/ic-livechat.svg +4 -0
  415. package/src/images/pages/footer/ic-whatsapp.svg +6 -0
  416. package/src/images/pages/header/copytrader.png +0 -0
  417. package/src/images/pages/header/copytrader.svg +8 -0
  418. package/src/images/pages/header/deriv-com-logo.svg +1 -0
  419. package/src/images/pages/header/deriv-com-logo1.svg +1 -0
  420. package/src/images/pages/header/deriv-logo.svg +8 -0
  421. package/src/images/pages/header/header.svg +63 -0
  422. package/src/images/pages/header/ic-add-account.svg +1 -0
  423. package/src/images/pages/header/ic-alert-danger.svg +1 -0
  424. package/src/images/pages/header/ic-alert-info.svg +1 -0
  425. package/src/images/pages/header/ic-alert-success.svg +1 -0
  426. package/src/images/pages/header/ic-alert-warning.svg +1 -0
  427. package/src/images/pages/header/ic-appstore-home.svg +1 -0
  428. package/src/images/pages/header/ic-bell.svg +1 -0
  429. package/src/images/pages/header/ic-box.svg +1 -0
  430. package/src/images/pages/header/ic-brand-binarybot.svg +21 -0
  431. package/src/images/pages/header/ic-brand-dbot.svg +31 -0
  432. package/src/images/pages/header/ic-brand-dtrader.svg +25 -0
  433. package/src/images/pages/header/ic-cashier.svg +1 -0
  434. package/src/images/pages/header/ic-chevron-down.svg +1 -0
  435. package/src/images/pages/header/ic-chevron-left.svg +1 -0
  436. package/src/images/pages/header/ic-chevron-right.svg +1 -0
  437. package/src/images/pages/header/ic-close.svg +1 -0
  438. package/src/images/pages/header/ic-currency-aud.svg +1 -0
  439. package/src/images/pages/header/ic-currency-bch.svg +1 -0
  440. package/src/images/pages/header/ic-currency-btc.svg +1 -0
  441. package/src/images/pages/header/ic-currency-dai.svg +1 -0
  442. package/src/images/pages/header/ic-currency-eth.svg +1 -0
  443. package/src/images/pages/header/ic-currency-eur.svg +1 -0
  444. package/src/images/pages/header/ic-currency-eusdt.svg +1 -0
  445. package/src/images/pages/header/ic-currency-gbp.svg +1 -0
  446. package/src/images/pages/header/ic-currency-ltc.svg +1 -0
  447. package/src/images/pages/header/ic-currency-tusdt.svg +1 -0
  448. package/src/images/pages/header/ic-currency-unknown.svg +1 -0
  449. package/src/images/pages/header/ic-currency-usd.svg +1 -0
  450. package/src/images/pages/header/ic-currency-usdc.svg +1 -0
  451. package/src/images/pages/header/ic-currency-ust.svg +1 -0
  452. package/src/images/pages/header/ic-currency-virtual.svg +1 -0
  453. package/src/images/pages/header/ic-hamburger.svg +1 -0
  454. package/src/images/pages/header/ic-help-centre.svg +66 -0
  455. package/src/images/pages/header/ic-livechat.svg +1 -0
  456. package/src/images/pages/header/ic-logout.svg +1 -0
  457. package/src/images/pages/header/ic-portfolio.svg +1 -0
  458. package/src/images/pages/header/ic-profit-table.svg +1 -0
  459. package/src/images/pages/header/ic-reports.svg +1 -0
  460. package/src/images/pages/header/ic-statement.svg +1 -0
  461. package/src/images/pages/header/ic-trade.svg +23 -0
  462. package/src/images/pages/header/ic-user-outline.svg +1 -0
  463. package/src/images/pages/header/ic-whatsapp.svg +1 -0
  464. package/src/images/pages/header/logo_smart_trader.svg +1811 -0
  465. package/src/images/pages/header/mobile-menu/mobile-menu-appstore.svg +5 -0
  466. package/src/images/pages/header/mobile-menu/mobile-menu-arrow-down.svg +3 -0
  467. package/src/images/pages/header/mobile-menu/mobile-menu-arrow-left.svg +3 -0
  468. package/src/images/pages/header/mobile-menu/mobile-menu-arrow-right.svg +3 -0
  469. package/src/images/pages/header/mobile-menu/mobile-menu-gmail.svg +4 -0
  470. package/src/images/pages/header/mobile-menu/mobile-menu-kodxyz.svg +5 -0
  471. package/src/images/pages/header/mobile-menu/mobile-menu-livechat.svg +6 -0
  472. package/src/images/pages/header/mobile-menu/mobile-menu-logo.svg +5 -0
  473. package/src/images/pages/header/mobile-menu/mobile-menu-logout.svg +5 -0
  474. package/src/images/pages/header/mobile-menu/mobile-menu-platform-dbot.svg +6 -0
  475. package/src/images/pages/header/mobile-menu/mobile-menu-platform-dtrader.svg +4 -0
  476. package/src/images/pages/header/mobile-menu/mobile-menu-platform-smarttrader.svg +4 -0
  477. package/src/images/pages/header/mobile-menu/mobile-menu-portfolio.svg +4 -0
  478. package/src/images/pages/header/mobile-menu/mobile-menu-profit.svg +4 -0
  479. package/src/images/pages/header/mobile-menu/mobile-menu-reports.svg +4 -0
  480. package/src/images/pages/header/mobile-menu/mobile-menu-statement.svg +6 -0
  481. package/src/images/pages/header/mobile-menu/mobile-menu-trade.svg +5 -0
  482. package/src/images/pages/header/wallets/ic-wallets-combined-aud.svg +1 -0
  483. package/src/images/pages/header/wallets/ic-wallets-combined-btc.svg +1 -0
  484. package/src/images/pages/header/wallets/ic-wallets-combined-eth.svg +1 -0
  485. package/src/images/pages/header/wallets/ic-wallets-combined-eur.svg +1 -0
  486. package/src/images/pages/header/wallets/ic-wallets-combined-eusdt.svg +1 -0
  487. package/src/images/pages/header/wallets/ic-wallets-combined-gbp.svg +1 -0
  488. package/src/images/pages/header/wallets/ic-wallets-combined-ltc.svg +1 -0
  489. package/src/images/pages/header/wallets/ic-wallets-combined-tusdt.svg +1 -0
  490. package/src/images/pages/header/wallets/ic-wallets-combined-usd.svg +1 -0
  491. package/src/images/pages/header/wallets/ic-wallets-combined-usdc.svg +1 -0
  492. package/src/images/pages/header/wallets/ic-wallets-combined-virtual.svg +1 -0
  493. package/src/images/pages/header/wallets/ic-wallets-currency-aud.svg +1 -0
  494. package/src/images/pages/header/wallets/ic-wallets-currency-btc.svg +1 -0
  495. package/src/images/pages/header/wallets/ic-wallets-currency-eth.svg +1 -0
  496. package/src/images/pages/header/wallets/ic-wallets-currency-eur.svg +1 -0
  497. package/src/images/pages/header/wallets/ic-wallets-currency-eusdt.svg +1 -0
  498. package/src/images/pages/header/wallets/ic-wallets-currency-gbp.svg +1 -0
  499. package/src/images/pages/header/wallets/ic-wallets-currency-ltc.svg +1 -0
  500. package/src/images/pages/header/wallets/ic-wallets-currency-tusdt.svg +1 -0
  501. package/src/images/pages/header/wallets/ic-wallets-currency-usd.svg +1 -0
  502. package/src/images/pages/header/wallets/ic-wallets-currency-usdc.svg +1 -0
  503. package/src/images/pages/header/wallets/ic-wallets-currency-virtual.svg +1 -0
  504. package/src/images/pages/header/wallets/ic-wallets-deriv-apps.svg +8 -0
  505. package/src/images/pages/header/wallets/wallet-apps-logo.svg +1 -0
  506. package/src/images/pages/header/wallets/wallet-deriv-logo.svg +8 -0
  507. package/src/images/pages/home/arrow_left.svg +1 -0
  508. package/src/images/pages/home/arrow_right.svg +1 -0
  509. package/src/images/pages/set_currency/aud.svg +1 -0
  510. package/src/images/pages/set_currency/bch.svg +1 -0
  511. package/src/images/pages/set_currency/btc.svg +1 -0
  512. package/src/images/pages/set_currency/busd.svg +1 -0
  513. package/src/images/pages/set_currency/dai.svg +1 -0
  514. package/src/images/pages/set_currency/etc.svg +1 -0
  515. package/src/images/pages/set_currency/eth.svg +1 -0
  516. package/src/images/pages/set_currency/eur.svg +1 -0
  517. package/src/images/pages/set_currency/eurs.svg +1 -0
  518. package/src/images/pages/set_currency/eusdt.svg +1 -0
  519. package/src/images/pages/set_currency/gbp.svg +1 -0
  520. package/src/images/pages/set_currency/idk.svg +1 -0
  521. package/src/images/pages/set_currency/ltc.svg +1 -0
  522. package/src/images/pages/set_currency/pax.svg +1 -0
  523. package/src/images/pages/set_currency/tick-normal.svg +1 -0
  524. package/src/images/pages/set_currency/tick-selected.svg +1 -0
  525. package/src/images/pages/set_currency/tusd.svg +1 -0
  526. package/src/images/pages/set_currency/usb.svg +1 -0
  527. package/src/images/pages/set_currency/usd.svg +1 -0
  528. package/src/images/pages/set_currency/usdc.svg +1 -0
  529. package/src/images/pages/set_currency/usdk.svg +1 -0
  530. package/src/images/pages/set_currency/ust.svg +1 -0
  531. package/src/images/pages/trade/call_spread.svg +1 -0
  532. package/src/images/pages/trade/chart_payout_range.svg +1 -0
  533. package/src/images/pages/trade/ic_arrow_dropdown_light.svg +1 -0
  534. package/src/images/pages/trade/put_spread.svg +1 -0
  535. package/src/images/pages/trade-explanation/de/close-low.svg +1 -0
  536. package/src/images/pages/trade-explanation/de/differs.svg +1 -0
  537. package/src/images/pages/trade-explanation/de/down.svg +1 -0
  538. package/src/images/pages/trade-explanation/de/ends-between.svg +1 -0
  539. package/src/images/pages/trade-explanation/de/ends-outside.svg +1 -0
  540. package/src/images/pages/trade-explanation/de/even.svg +1 -0
  541. package/src/images/pages/trade-explanation/de/falls.svg +1 -0
  542. package/src/images/pages/trade-explanation/de/goes-outside.svg +1 -0
  543. package/src/images/pages/trade-explanation/de/high-close.svg +1 -0
  544. package/src/images/pages/trade-explanation/de/high-low.svg +1 -0
  545. package/src/images/pages/trade-explanation/de/high-tick.svg +1 -0
  546. package/src/images/pages/trade-explanation/de/higher.svg +1 -0
  547. package/src/images/pages/trade-explanation/de/low-tick.svg +1 -0
  548. package/src/images/pages/trade-explanation/de/lower.svg +1 -0
  549. package/src/images/pages/trade-explanation/de/matches.svg +1 -0
  550. package/src/images/pages/trade-explanation/de/no-touch.svg +1 -0
  551. package/src/images/pages/trade-explanation/de/odd.svg +1 -0
  552. package/src/images/pages/trade-explanation/de/only-downs.svg +1 -0
  553. package/src/images/pages/trade-explanation/de/only-ups.svg +1 -0
  554. package/src/images/pages/trade-explanation/de/over.svg +1 -0
  555. package/src/images/pages/trade-explanation/de/reset-call.svg +1 -0
  556. package/src/images/pages/trade-explanation/de/reset-put.svg +1 -0
  557. package/src/images/pages/trade-explanation/de/rises.svg +1 -0
  558. package/src/images/pages/trade-explanation/de/stays-between.svg +1 -0
  559. package/src/images/pages/trade-explanation/de/touch.svg +1 -0
  560. package/src/images/pages/trade-explanation/de/under.svg +1 -0
  561. package/src/images/pages/trade-explanation/de/up.svg +1 -0
  562. package/src/images/pages/trade-explanation/en/call-spread.svg +1 -0
  563. package/src/images/pages/trade-explanation/en/close-low.svg +1 -0
  564. package/src/images/pages/trade-explanation/en/differs.svg +1 -0
  565. package/src/images/pages/trade-explanation/en/down.svg +1 -0
  566. package/src/images/pages/trade-explanation/en/ends-between.svg +1 -0
  567. package/src/images/pages/trade-explanation/en/ends-outside.svg +1 -0
  568. package/src/images/pages/trade-explanation/en/even.svg +1 -0
  569. package/src/images/pages/trade-explanation/en/falls.svg +1 -0
  570. package/src/images/pages/trade-explanation/en/goes-outside.svg +1 -0
  571. package/src/images/pages/trade-explanation/en/high-close.svg +1 -0
  572. package/src/images/pages/trade-explanation/en/high-low.svg +1 -0
  573. package/src/images/pages/trade-explanation/en/high-tick.svg +1 -0
  574. package/src/images/pages/trade-explanation/en/higher.svg +1 -0
  575. package/src/images/pages/trade-explanation/en/low-tick.svg +1 -0
  576. package/src/images/pages/trade-explanation/en/lower.svg +1 -0
  577. package/src/images/pages/trade-explanation/en/matches.svg +1 -0
  578. package/src/images/pages/trade-explanation/en/no-touch.svg +1 -0
  579. package/src/images/pages/trade-explanation/en/odd.svg +1 -0
  580. package/src/images/pages/trade-explanation/en/only-downs.svg +1 -0
  581. package/src/images/pages/trade-explanation/en/only-ups.svg +1 -0
  582. package/src/images/pages/trade-explanation/en/over.svg +1 -0
  583. package/src/images/pages/trade-explanation/en/put-spread.svg +1 -0
  584. package/src/images/pages/trade-explanation/en/reset-call.svg +1 -0
  585. package/src/images/pages/trade-explanation/en/reset-put.svg +1 -0
  586. package/src/images/pages/trade-explanation/en/rises.svg +1 -0
  587. package/src/images/pages/trade-explanation/en/stays-between.svg +1 -0
  588. package/src/images/pages/trade-explanation/en/touch.svg +1 -0
  589. package/src/images/pages/trade-explanation/en/under.svg +1 -0
  590. package/src/images/pages/trade-explanation/en/up.svg +1 -0
  591. package/src/images/pages/trade-explanation/es/close-low.svg +1 -0
  592. package/src/images/pages/trade-explanation/es/differs.svg +1 -0
  593. package/src/images/pages/trade-explanation/es/down.svg +1 -0
  594. package/src/images/pages/trade-explanation/es/ends-between.svg +1 -0
  595. package/src/images/pages/trade-explanation/es/ends-outside.svg +1 -0
  596. package/src/images/pages/trade-explanation/es/even.svg +1 -0
  597. package/src/images/pages/trade-explanation/es/falls.svg +1 -0
  598. package/src/images/pages/trade-explanation/es/goes-outside.svg +1 -0
  599. package/src/images/pages/trade-explanation/es/high-close.svg +1 -0
  600. package/src/images/pages/trade-explanation/es/high-low.svg +1 -0
  601. package/src/images/pages/trade-explanation/es/high-tick.svg +1 -0
  602. package/src/images/pages/trade-explanation/es/higher.svg +1 -0
  603. package/src/images/pages/trade-explanation/es/low-tick.svg +1 -0
  604. package/src/images/pages/trade-explanation/es/lower.svg +1 -0
  605. package/src/images/pages/trade-explanation/es/matches.svg +1 -0
  606. package/src/images/pages/trade-explanation/es/no-touch.svg +1 -0
  607. package/src/images/pages/trade-explanation/es/odd.svg +1 -0
  608. package/src/images/pages/trade-explanation/es/only-downs.svg +1 -0
  609. package/src/images/pages/trade-explanation/es/only-ups.svg +1 -0
  610. package/src/images/pages/trade-explanation/es/over.svg +1 -0
  611. package/src/images/pages/trade-explanation/es/reset-call.svg +1 -0
  612. package/src/images/pages/trade-explanation/es/reset-put.svg +1 -0
  613. package/src/images/pages/trade-explanation/es/rises.svg +1 -0
  614. package/src/images/pages/trade-explanation/es/stays-between.svg +1 -0
  615. package/src/images/pages/trade-explanation/es/touch.svg +1 -0
  616. package/src/images/pages/trade-explanation/es/under.svg +1 -0
  617. package/src/images/pages/trade-explanation/es/up.svg +1 -0
  618. package/src/images/pages/trade-explanation/fr/close-low.svg +1 -0
  619. package/src/images/pages/trade-explanation/fr/differs.svg +1 -0
  620. package/src/images/pages/trade-explanation/fr/down.svg +1 -0
  621. package/src/images/pages/trade-explanation/fr/ends-between.svg +1 -0
  622. package/src/images/pages/trade-explanation/fr/ends-outside.svg +1 -0
  623. package/src/images/pages/trade-explanation/fr/even.svg +1 -0
  624. package/src/images/pages/trade-explanation/fr/falls.svg +1 -0
  625. package/src/images/pages/trade-explanation/fr/goes-outside.svg +1 -0
  626. package/src/images/pages/trade-explanation/fr/high-close.svg +1 -0
  627. package/src/images/pages/trade-explanation/fr/high-low.svg +1 -0
  628. package/src/images/pages/trade-explanation/fr/high-tick.svg +1 -0
  629. package/src/images/pages/trade-explanation/fr/higher.svg +1 -0
  630. package/src/images/pages/trade-explanation/fr/low-tick.svg +1 -0
  631. package/src/images/pages/trade-explanation/fr/lower.svg +1 -0
  632. package/src/images/pages/trade-explanation/fr/matches.svg +1 -0
  633. package/src/images/pages/trade-explanation/fr/no-touch.svg +1 -0
  634. package/src/images/pages/trade-explanation/fr/odd.svg +1 -0
  635. package/src/images/pages/trade-explanation/fr/only-downs.svg +1 -0
  636. package/src/images/pages/trade-explanation/fr/only-ups.svg +1 -0
  637. package/src/images/pages/trade-explanation/fr/over.svg +1 -0
  638. package/src/images/pages/trade-explanation/fr/reset-call.svg +1 -0
  639. package/src/images/pages/trade-explanation/fr/reset-put.svg +1 -0
  640. package/src/images/pages/trade-explanation/fr/rises.svg +1 -0
  641. package/src/images/pages/trade-explanation/fr/stays-between.svg +1 -0
  642. package/src/images/pages/trade-explanation/fr/touch.svg +1 -0
  643. package/src/images/pages/trade-explanation/fr/under.svg +1 -0
  644. package/src/images/pages/trade-explanation/fr/up.svg +1 -0
  645. package/src/images/pages/trade-explanation/id/close-low.svg +1 -0
  646. package/src/images/pages/trade-explanation/id/differs.svg +1 -0
  647. package/src/images/pages/trade-explanation/id/down.svg +1 -0
  648. package/src/images/pages/trade-explanation/id/ends-between.svg +1 -0
  649. package/src/images/pages/trade-explanation/id/ends-outside.svg +1 -0
  650. package/src/images/pages/trade-explanation/id/even.svg +1 -0
  651. package/src/images/pages/trade-explanation/id/falls.svg +1 -0
  652. package/src/images/pages/trade-explanation/id/goes-outside.svg +1 -0
  653. package/src/images/pages/trade-explanation/id/high-close.svg +1 -0
  654. package/src/images/pages/trade-explanation/id/high-low.svg +1 -0
  655. package/src/images/pages/trade-explanation/id/high-tick.svg +1 -0
  656. package/src/images/pages/trade-explanation/id/higher.svg +1 -0
  657. package/src/images/pages/trade-explanation/id/low-tick.svg +1 -0
  658. package/src/images/pages/trade-explanation/id/lower.svg +1 -0
  659. package/src/images/pages/trade-explanation/id/matches.svg +1 -0
  660. package/src/images/pages/trade-explanation/id/no-touch.svg +1 -0
  661. package/src/images/pages/trade-explanation/id/odd.svg +1 -0
  662. package/src/images/pages/trade-explanation/id/only-downs.svg +1 -0
  663. package/src/images/pages/trade-explanation/id/only-ups.svg +1 -0
  664. package/src/images/pages/trade-explanation/id/over.svg +1 -0
  665. package/src/images/pages/trade-explanation/id/reset-call.svg +1 -0
  666. package/src/images/pages/trade-explanation/id/reset-put.svg +1 -0
  667. package/src/images/pages/trade-explanation/id/rises.svg +1 -0
  668. package/src/images/pages/trade-explanation/id/stays-between.svg +1 -0
  669. package/src/images/pages/trade-explanation/id/touch.svg +1 -0
  670. package/src/images/pages/trade-explanation/id/under.svg +1 -0
  671. package/src/images/pages/trade-explanation/id/up.svg +1 -0
  672. package/src/images/pages/trade-explanation/it/close-low.svg +1 -0
  673. package/src/images/pages/trade-explanation/it/differs.svg +1 -0
  674. package/src/images/pages/trade-explanation/it/down.svg +1 -0
  675. package/src/images/pages/trade-explanation/it/ends-between.svg +1 -0
  676. package/src/images/pages/trade-explanation/it/ends-outside.svg +1 -0
  677. package/src/images/pages/trade-explanation/it/even.svg +1 -0
  678. package/src/images/pages/trade-explanation/it/falls.svg +1 -0
  679. package/src/images/pages/trade-explanation/it/goes-outside.svg +1 -0
  680. package/src/images/pages/trade-explanation/it/high-close.svg +1 -0
  681. package/src/images/pages/trade-explanation/it/high-low.svg +1 -0
  682. package/src/images/pages/trade-explanation/it/high-tick.svg +1 -0
  683. package/src/images/pages/trade-explanation/it/higher.svg +1 -0
  684. package/src/images/pages/trade-explanation/it/low-tick.svg +1 -0
  685. package/src/images/pages/trade-explanation/it/lower.svg +1 -0
  686. package/src/images/pages/trade-explanation/it/matches.svg +1 -0
  687. package/src/images/pages/trade-explanation/it/no-touch.svg +1 -0
  688. package/src/images/pages/trade-explanation/it/odd.svg +1 -0
  689. package/src/images/pages/trade-explanation/it/only-downs.svg +1 -0
  690. package/src/images/pages/trade-explanation/it/only-ups.svg +1 -0
  691. package/src/images/pages/trade-explanation/it/over.svg +1 -0
  692. package/src/images/pages/trade-explanation/it/reset-call.svg +1 -0
  693. package/src/images/pages/trade-explanation/it/reset-put.svg +1 -0
  694. package/src/images/pages/trade-explanation/it/rises.svg +1 -0
  695. package/src/images/pages/trade-explanation/it/stays-between.svg +1 -0
  696. package/src/images/pages/trade-explanation/it/touch.svg +1 -0
  697. package/src/images/pages/trade-explanation/it/under.svg +1 -0
  698. package/src/images/pages/trade-explanation/it/up.svg +1 -0
  699. package/src/images/pages/trade-explanation/pl/close-low.svg +1 -0
  700. package/src/images/pages/trade-explanation/pl/differs.svg +1 -0
  701. package/src/images/pages/trade-explanation/pl/down.svg +1 -0
  702. package/src/images/pages/trade-explanation/pl/ends-between.svg +1 -0
  703. package/src/images/pages/trade-explanation/pl/ends-outside.svg +1 -0
  704. package/src/images/pages/trade-explanation/pl/even.svg +1 -0
  705. package/src/images/pages/trade-explanation/pl/falls.svg +1 -0
  706. package/src/images/pages/trade-explanation/pl/goes-outside.svg +1 -0
  707. package/src/images/pages/trade-explanation/pl/high-close.svg +1 -0
  708. package/src/images/pages/trade-explanation/pl/high-low.svg +1 -0
  709. package/src/images/pages/trade-explanation/pl/high-tick.svg +1 -0
  710. package/src/images/pages/trade-explanation/pl/higher.svg +1 -0
  711. package/src/images/pages/trade-explanation/pl/low-tick.svg +1 -0
  712. package/src/images/pages/trade-explanation/pl/lower.svg +1 -0
  713. package/src/images/pages/trade-explanation/pl/matches.svg +1 -0
  714. package/src/images/pages/trade-explanation/pl/no-touch.svg +1 -0
  715. package/src/images/pages/trade-explanation/pl/odd.svg +1 -0
  716. package/src/images/pages/trade-explanation/pl/only-downs.svg +1 -0
  717. package/src/images/pages/trade-explanation/pl/only-ups.svg +1 -0
  718. package/src/images/pages/trade-explanation/pl/over.svg +1 -0
  719. package/src/images/pages/trade-explanation/pl/reset-call.svg +1 -0
  720. package/src/images/pages/trade-explanation/pl/reset-put.svg +1 -0
  721. package/src/images/pages/trade-explanation/pl/rises.svg +1 -0
  722. package/src/images/pages/trade-explanation/pl/stays-between.svg +1 -0
  723. package/src/images/pages/trade-explanation/pl/touch.svg +1 -0
  724. package/src/images/pages/trade-explanation/pl/under.svg +1 -0
  725. package/src/images/pages/trade-explanation/pl/up.svg +1 -0
  726. package/src/images/pages/trade-explanation/pt/close-low.svg +1 -0
  727. package/src/images/pages/trade-explanation/pt/differs.svg +1 -0
  728. package/src/images/pages/trade-explanation/pt/down.svg +1 -0
  729. package/src/images/pages/trade-explanation/pt/ends-between.svg +1 -0
  730. package/src/images/pages/trade-explanation/pt/ends-outside.svg +1 -0
  731. package/src/images/pages/trade-explanation/pt/even.svg +1 -0
  732. package/src/images/pages/trade-explanation/pt/falls.svg +1 -0
  733. package/src/images/pages/trade-explanation/pt/goes-outside.svg +1 -0
  734. package/src/images/pages/trade-explanation/pt/high-close.svg +1 -0
  735. package/src/images/pages/trade-explanation/pt/high-low.svg +1 -0
  736. package/src/images/pages/trade-explanation/pt/high-tick.svg +1 -0
  737. package/src/images/pages/trade-explanation/pt/higher.svg +1 -0
  738. package/src/images/pages/trade-explanation/pt/low-tick.svg +1 -0
  739. package/src/images/pages/trade-explanation/pt/lower.svg +1 -0
  740. package/src/images/pages/trade-explanation/pt/matches.svg +1 -0
  741. package/src/images/pages/trade-explanation/pt/no-touch.svg +1 -0
  742. package/src/images/pages/trade-explanation/pt/odd.svg +1 -0
  743. package/src/images/pages/trade-explanation/pt/only-downs.svg +1 -0
  744. package/src/images/pages/trade-explanation/pt/only-ups.svg +1 -0
  745. package/src/images/pages/trade-explanation/pt/over.svg +1 -0
  746. package/src/images/pages/trade-explanation/pt/reset-call.svg +1 -0
  747. package/src/images/pages/trade-explanation/pt/reset-put.svg +1 -0
  748. package/src/images/pages/trade-explanation/pt/rises.svg +1 -0
  749. package/src/images/pages/trade-explanation/pt/stays-between.svg +1 -0
  750. package/src/images/pages/trade-explanation/pt/touch.svg +1 -0
  751. package/src/images/pages/trade-explanation/pt/under.svg +1 -0
  752. package/src/images/pages/trade-explanation/pt/up.svg +1 -0
  753. package/src/images/pages/trade-explanation/ru/close-low.svg +1 -0
  754. package/src/images/pages/trade-explanation/ru/differs.svg +1 -0
  755. package/src/images/pages/trade-explanation/ru/down.svg +1 -0
  756. package/src/images/pages/trade-explanation/ru/ends-between.svg +1 -0
  757. package/src/images/pages/trade-explanation/ru/ends-outside.svg +1 -0
  758. package/src/images/pages/trade-explanation/ru/even.svg +1 -0
  759. package/src/images/pages/trade-explanation/ru/falls.svg +1 -0
  760. package/src/images/pages/trade-explanation/ru/goes-outside.svg +1 -0
  761. package/src/images/pages/trade-explanation/ru/high-close.svg +1 -0
  762. package/src/images/pages/trade-explanation/ru/high-low.svg +1 -0
  763. package/src/images/pages/trade-explanation/ru/high-tick.svg +1 -0
  764. package/src/images/pages/trade-explanation/ru/higher.svg +1 -0
  765. package/src/images/pages/trade-explanation/ru/low-tick.svg +1 -0
  766. package/src/images/pages/trade-explanation/ru/lower.svg +1 -0
  767. package/src/images/pages/trade-explanation/ru/matches.svg +1 -0
  768. package/src/images/pages/trade-explanation/ru/no-touch.svg +1 -0
  769. package/src/images/pages/trade-explanation/ru/odd.svg +1 -0
  770. package/src/images/pages/trade-explanation/ru/only-downs.svg +1 -0
  771. package/src/images/pages/trade-explanation/ru/only-ups.svg +1 -0
  772. package/src/images/pages/trade-explanation/ru/over.svg +1 -0
  773. package/src/images/pages/trade-explanation/ru/reset-call.svg +1 -0
  774. package/src/images/pages/trade-explanation/ru/reset-put.svg +1 -0
  775. package/src/images/pages/trade-explanation/ru/rises.svg +1 -0
  776. package/src/images/pages/trade-explanation/ru/stays-between.svg +1 -0
  777. package/src/images/pages/trade-explanation/ru/touch.svg +1 -0
  778. package/src/images/pages/trade-explanation/ru/under.svg +1 -0
  779. package/src/images/pages/trade-explanation/ru/up.svg +1 -0
  780. package/src/images/pages/trade-explanation/th/close-low.svg +1 -0
  781. package/src/images/pages/trade-explanation/th/differs.svg +1 -0
  782. package/src/images/pages/trade-explanation/th/down.svg +1 -0
  783. package/src/images/pages/trade-explanation/th/ends-between.svg +1 -0
  784. package/src/images/pages/trade-explanation/th/ends-outside.svg +1 -0
  785. package/src/images/pages/trade-explanation/th/even.svg +1 -0
  786. package/src/images/pages/trade-explanation/th/falls.svg +1 -0
  787. package/src/images/pages/trade-explanation/th/goes-outside.svg +1 -0
  788. package/src/images/pages/trade-explanation/th/high-close.svg +1 -0
  789. package/src/images/pages/trade-explanation/th/high-low.svg +1 -0
  790. package/src/images/pages/trade-explanation/th/high-tick.svg +1 -0
  791. package/src/images/pages/trade-explanation/th/higher.svg +1 -0
  792. package/src/images/pages/trade-explanation/th/low-tick.svg +1 -0
  793. package/src/images/pages/trade-explanation/th/lower.svg +1 -0
  794. package/src/images/pages/trade-explanation/th/matches.svg +1 -0
  795. package/src/images/pages/trade-explanation/th/no-touch.svg +1 -0
  796. package/src/images/pages/trade-explanation/th/odd.svg +1 -0
  797. package/src/images/pages/trade-explanation/th/only-downs.svg +1 -0
  798. package/src/images/pages/trade-explanation/th/only-ups.svg +1 -0
  799. package/src/images/pages/trade-explanation/th/over.svg +1 -0
  800. package/src/images/pages/trade-explanation/th/reset-call.svg +1 -0
  801. package/src/images/pages/trade-explanation/th/reset-put.svg +1 -0
  802. package/src/images/pages/trade-explanation/th/rises.svg +1 -0
  803. package/src/images/pages/trade-explanation/th/stays-between.svg +1 -0
  804. package/src/images/pages/trade-explanation/th/touch.svg +1 -0
  805. package/src/images/pages/trade-explanation/th/under.svg +1 -0
  806. package/src/images/pages/trade-explanation/th/up.svg +1 -0
  807. package/src/images/pages/trade-explanation/vi/close-low.svg +1 -0
  808. package/src/images/pages/trade-explanation/vi/differs.svg +1 -0
  809. package/src/images/pages/trade-explanation/vi/down.svg +1 -0
  810. package/src/images/pages/trade-explanation/vi/ends-between.svg +1 -0
  811. package/src/images/pages/trade-explanation/vi/ends-outside.svg +1 -0
  812. package/src/images/pages/trade-explanation/vi/even.svg +1 -0
  813. package/src/images/pages/trade-explanation/vi/falls.svg +1 -0
  814. package/src/images/pages/trade-explanation/vi/goes-outside.svg +1 -0
  815. package/src/images/pages/trade-explanation/vi/high-close.svg +1 -0
  816. package/src/images/pages/trade-explanation/vi/high-low.svg +1 -0
  817. package/src/images/pages/trade-explanation/vi/high-tick.svg +1 -0
  818. package/src/images/pages/trade-explanation/vi/higher.svg +1 -0
  819. package/src/images/pages/trade-explanation/vi/low-tick.svg +1 -0
  820. package/src/images/pages/trade-explanation/vi/lower.svg +1 -0
  821. package/src/images/pages/trade-explanation/vi/matches.svg +1 -0
  822. package/src/images/pages/trade-explanation/vi/no-touch.svg +1 -0
  823. package/src/images/pages/trade-explanation/vi/odd.svg +1 -0
  824. package/src/images/pages/trade-explanation/vi/only-downs.svg +1 -0
  825. package/src/images/pages/trade-explanation/vi/only-ups.svg +1 -0
  826. package/src/images/pages/trade-explanation/vi/over.svg +1 -0
  827. package/src/images/pages/trade-explanation/vi/reset-call.svg +1 -0
  828. package/src/images/pages/trade-explanation/vi/reset-put.svg +1 -0
  829. package/src/images/pages/trade-explanation/vi/rises.svg +1 -0
  830. package/src/images/pages/trade-explanation/vi/stays-between.svg +1 -0
  831. package/src/images/pages/trade-explanation/vi/touch.svg +1 -0
  832. package/src/images/pages/trade-explanation/vi/under.svg +1 -0
  833. package/src/images/pages/trade-explanation/vi/up.svg +1 -0
  834. package/src/images/pages/trade-explanation/zh_cn/close-low.svg +1 -0
  835. package/src/images/pages/trade-explanation/zh_cn/differs.svg +1 -0
  836. package/src/images/pages/trade-explanation/zh_cn/down.svg +1 -0
  837. package/src/images/pages/trade-explanation/zh_cn/ends-between.svg +1 -0
  838. package/src/images/pages/trade-explanation/zh_cn/ends-outside.svg +1 -0
  839. package/src/images/pages/trade-explanation/zh_cn/even.svg +1 -0
  840. package/src/images/pages/trade-explanation/zh_cn/falls.svg +1 -0
  841. package/src/images/pages/trade-explanation/zh_cn/goes-outside.svg +1 -0
  842. package/src/images/pages/trade-explanation/zh_cn/high-close.svg +1 -0
  843. package/src/images/pages/trade-explanation/zh_cn/high-low.svg +1 -0
  844. package/src/images/pages/trade-explanation/zh_cn/high-tick.svg +1 -0
  845. package/src/images/pages/trade-explanation/zh_cn/higher.svg +1 -0
  846. package/src/images/pages/trade-explanation/zh_cn/low-tick.svg +1 -0
  847. package/src/images/pages/trade-explanation/zh_cn/lower.svg +1 -0
  848. package/src/images/pages/trade-explanation/zh_cn/matches.svg +1 -0
  849. package/src/images/pages/trade-explanation/zh_cn/no-touch.svg +1 -0
  850. package/src/images/pages/trade-explanation/zh_cn/odd.svg +1 -0
  851. package/src/images/pages/trade-explanation/zh_cn/only-downs.svg +1 -0
  852. package/src/images/pages/trade-explanation/zh_cn/only-ups.svg +1 -0
  853. package/src/images/pages/trade-explanation/zh_cn/over.svg +1 -0
  854. package/src/images/pages/trade-explanation/zh_cn/reset-call.svg +1 -0
  855. package/src/images/pages/trade-explanation/zh_cn/reset-put.svg +1 -0
  856. package/src/images/pages/trade-explanation/zh_cn/rises.svg +1 -0
  857. package/src/images/pages/trade-explanation/zh_cn/stays-between.svg +1 -0
  858. package/src/images/pages/trade-explanation/zh_cn/touch.svg +1 -0
  859. package/src/images/pages/trade-explanation/zh_cn/under.svg +1 -0
  860. package/src/images/pages/trade-explanation/zh_cn/up.svg +1 -0
  861. package/src/images/pages/trade-explanation/zh_tw/close-low.svg +1 -0
  862. package/src/images/pages/trade-explanation/zh_tw/differs.svg +1 -0
  863. package/src/images/pages/trade-explanation/zh_tw/down.svg +1 -0
  864. package/src/images/pages/trade-explanation/zh_tw/ends-between.svg +1 -0
  865. package/src/images/pages/trade-explanation/zh_tw/ends-outside.svg +1 -0
  866. package/src/images/pages/trade-explanation/zh_tw/even.svg +1 -0
  867. package/src/images/pages/trade-explanation/zh_tw/falls.svg +1 -0
  868. package/src/images/pages/trade-explanation/zh_tw/goes-outside.svg +1 -0
  869. package/src/images/pages/trade-explanation/zh_tw/high-close.svg +1 -0
  870. package/src/images/pages/trade-explanation/zh_tw/high-low.svg +1 -0
  871. package/src/images/pages/trade-explanation/zh_tw/high-tick.svg +1 -0
  872. package/src/images/pages/trade-explanation/zh_tw/higher.svg +1 -0
  873. package/src/images/pages/trade-explanation/zh_tw/low-tick.svg +1 -0
  874. package/src/images/pages/trade-explanation/zh_tw/lower.svg +1 -0
  875. package/src/images/pages/trade-explanation/zh_tw/matches.svg +1 -0
  876. package/src/images/pages/trade-explanation/zh_tw/no-touch.svg +1 -0
  877. package/src/images/pages/trade-explanation/zh_tw/odd.svg +1 -0
  878. package/src/images/pages/trade-explanation/zh_tw/only-downs.svg +1 -0
  879. package/src/images/pages/trade-explanation/zh_tw/only-ups.svg +1 -0
  880. package/src/images/pages/trade-explanation/zh_tw/over.svg +1 -0
  881. package/src/images/pages/trade-explanation/zh_tw/reset-call.svg +1 -0
  882. package/src/images/pages/trade-explanation/zh_tw/reset-put.svg +1 -0
  883. package/src/images/pages/trade-explanation/zh_tw/rises.svg +1 -0
  884. package/src/images/pages/trade-explanation/zh_tw/stays-between.svg +1 -0
  885. package/src/images/pages/trade-explanation/zh_tw/touch.svg +1 -0
  886. package/src/images/pages/trade-explanation/zh_tw/under.svg +1 -0
  887. package/src/images/pages/trade-explanation/zh_tw/up.svg +1 -0
  888. package/src/javascript/README.md +147 -0
  889. package/src/javascript/_autogenerated/ach.js +2 -0
  890. package/src/javascript/_autogenerated/app_2/ach.js +2 -0
  891. package/src/javascript/_autogenerated/app_2/de.js +2 -0
  892. package/src/javascript/_autogenerated/app_2/en.js +2 -0
  893. package/src/javascript/_autogenerated/app_2/es.js +2 -0
  894. package/src/javascript/_autogenerated/app_2/fr.js +2 -0
  895. package/src/javascript/_autogenerated/app_2/id.js +2 -0
  896. package/src/javascript/_autogenerated/app_2/it.js +2 -0
  897. package/src/javascript/_autogenerated/app_2/ja.js +2 -0
  898. package/src/javascript/_autogenerated/app_2/ko.js +2 -0
  899. package/src/javascript/_autogenerated/app_2/pl.js +2 -0
  900. package/src/javascript/_autogenerated/app_2/pt.js +2 -0
  901. package/src/javascript/_autogenerated/app_2/ru.js +2 -0
  902. package/src/javascript/_autogenerated/app_2/th.js +2 -0
  903. package/src/javascript/_autogenerated/app_2/vi.js +2 -0
  904. package/src/javascript/_autogenerated/app_2/zh_cn.js +2 -0
  905. package/src/javascript/_autogenerated/app_2/zh_tw.js +2 -0
  906. package/src/javascript/_autogenerated/de.js +2 -0
  907. package/src/javascript/_autogenerated/en.js +2 -0
  908. package/src/javascript/_autogenerated/es.js +2 -0
  909. package/src/javascript/_autogenerated/fr.js +2 -0
  910. package/src/javascript/_autogenerated/id.js +2 -0
  911. package/src/javascript/_autogenerated/it.js +2 -0
  912. package/src/javascript/_autogenerated/ko.js +2 -0
  913. package/src/javascript/_autogenerated/pl.js +2 -0
  914. package/src/javascript/_autogenerated/pt.js +2 -0
  915. package/src/javascript/_autogenerated/ru.js +2 -0
  916. package/src/javascript/_autogenerated/th.js +2 -0
  917. package/src/javascript/_autogenerated/vi.js +2 -0
  918. package/src/javascript/_autogenerated/zh_cn.js +2 -0
  919. package/src/javascript/_autogenerated/zh_tw.js +2 -0
  920. package/src/javascript/_common/__tests__/check_new_release.js +16 -0
  921. package/src/javascript/_common/__tests__/common_functions.js +90 -0
  922. package/src/javascript/_common/__tests__/language.js +68 -0
  923. package/src/javascript/_common/__tests__/string_util.js +80 -0
  924. package/src/javascript/_common/__tests__/tests_common.js +22 -0
  925. package/src/javascript/_common/__tests__/url.js +142 -0
  926. package/src/javascript/_common/__tests__/utility.js +175 -0
  927. package/src/javascript/_common/analytics.js +21 -0
  928. package/src/javascript/_common/auth.js +174 -0
  929. package/src/javascript/_common/base/__tests__/client_base.js +299 -0
  930. package/src/javascript/_common/base/__tests__/currency_base.js +126 -0
  931. package/src/javascript/_common/base/client_base.js +517 -0
  932. package/src/javascript/_common/base/currency_base.js +182 -0
  933. package/src/javascript/_common/base/elevio.js +148 -0
  934. package/src/javascript/_common/base/gtm.js +13 -0
  935. package/src/javascript/_common/base/livechat.js +136 -0
  936. package/src/javascript/_common/base/login.js +64 -0
  937. package/src/javascript/_common/base/network_monitor_base.js +151 -0
  938. package/src/javascript/_common/base/server_time.js +66 -0
  939. package/src/javascript/_common/base/socket_base.js +325 -0
  940. package/src/javascript/_common/base/socket_cache.js +132 -0
  941. package/src/javascript/_common/base/subscription_manager.js +248 -0
  942. package/src/javascript/_common/chat.js +57 -0
  943. package/src/javascript/_common/check_new_release.js +35 -0
  944. package/src/javascript/_common/check_password.js +103 -0
  945. package/src/javascript/_common/common_functions.js +104 -0
  946. package/src/javascript/_common/crowdin.js +34 -0
  947. package/src/javascript/_common/gtm.js +7 -0
  948. package/src/javascript/_common/language.js +98 -0
  949. package/src/javascript/_common/lib/guide.enjoyhint.js +1034 -0
  950. package/src/javascript/_common/lib/jquery.sparkline.js +3085 -0
  951. package/src/javascript/_common/lib/loadCSS.js +32 -0
  952. package/src/javascript/_common/lib/loadJS.js +13 -0
  953. package/src/javascript/_common/lib/mmenu/jquery.mmenu.min.all.js +84 -0
  954. package/src/javascript/_common/lib/plugins.js +55 -0
  955. package/src/javascript/_common/lib/polyfills/array.includes.js +28 -0
  956. package/src/javascript/_common/lib/polyfills/element.closest.js +11 -0
  957. package/src/javascript/_common/lib/polyfills/element.matches.js +14 -0
  958. package/src/javascript/_common/lib/polyfills/nodelist.foreach.js +8 -0
  959. package/src/javascript/_common/lib/polyfills/string.includes.js +6 -0
  960. package/src/javascript/_common/lib/zxcvbn/zxcvbn.js +30 -0
  961. package/src/javascript/_common/lib/zxcvbn/zxcvbn.js.map +27 -0
  962. package/src/javascript/_common/localize.js +55 -0
  963. package/src/javascript/_common/menu_selector.js +69 -0
  964. package/src/javascript/_common/os_detect.js +72 -0
  965. package/src/javascript/_common/remote_config.json +2 -0
  966. package/src/javascript/_common/scroll.js +124 -0
  967. package/src/javascript/_common/scroll_to_anchor.js +99 -0
  968. package/src/javascript/_common/storage.js +274 -0
  969. package/src/javascript/_common/string_util.js +50 -0
  970. package/src/javascript/_common/tab_selector.js +196 -0
  971. package/src/javascript/_common/third_party_links.js +96 -0
  972. package/src/javascript/_common/url.js +199 -0
  973. package/src/javascript/_common/utility.js +317 -0
  974. package/src/javascript/app/base/__tests__/client.js +49 -0
  975. package/src/javascript/app/base/binary_loader.js +290 -0
  976. package/src/javascript/app/base/binary_pages.js +151 -0
  977. package/src/javascript/app/base/binary_pjax.js +231 -0
  978. package/src/javascript/app/base/callback.js +16 -0
  979. package/src/javascript/app/base/client.js +207 -0
  980. package/src/javascript/app/base/clock.js +53 -0
  981. package/src/javascript/app/base/contents.js +16 -0
  982. package/src/javascript/app/base/header.js +1572 -0
  983. package/src/javascript/app/base/logged_in.js +338 -0
  984. package/src/javascript/app/base/menu.js +66 -0
  985. package/src/javascript/app/base/network_monitor.js +32 -0
  986. package/src/javascript/app/base/page.js +307 -0
  987. package/src/javascript/app/base/redirect.js +27 -0
  988. package/src/javascript/app/base/socket.js +4 -0
  989. package/src/javascript/app/base/socket_general.js +181 -0
  990. package/src/javascript/app/common/__tests__/active_symbols.js +166 -0
  991. package/src/javascript/app/common/__tests__/content_visibility.js +127 -0
  992. package/src/javascript/app/common/__tests__/get_app_details.js +29 -0
  993. package/src/javascript/app/common/account_opening.js +333 -0
  994. package/src/javascript/app/common/active_symbols.js +273 -0
  995. package/src/javascript/app/common/attach_dom/birth_date_picker.js +25 -0
  996. package/src/javascript/app/common/attach_dom/date_to.js +87 -0
  997. package/src/javascript/app/common/attach_dom/dialog.js +97 -0
  998. package/src/javascript/app/common/attach_dom/flextable.js +71 -0
  999. package/src/javascript/app/common/attach_dom/language_dropdown.js +36 -0
  1000. package/src/javascript/app/common/attach_dom/popup.js +77 -0
  1001. package/src/javascript/app/common/attach_dom/table.js +120 -0
  1002. package/src/javascript/app/common/cashier_modal.js +795 -0
  1003. package/src/javascript/app/common/chart_settings.js +254 -0
  1004. package/src/javascript/app/common/content_visibility.js +194 -0
  1005. package/src/javascript/app/common/contract_type_icons.js +76 -0
  1006. package/src/javascript/app/common/country_base.js +36 -0
  1007. package/src/javascript/app/common/currency.js +46 -0
  1008. package/src/javascript/app/common/data_manager.js +165 -0
  1009. package/src/javascript/app/common/deriv_banner.js +67 -0
  1010. package/src/javascript/app/common/deriv_cashier_service.js +124 -0
  1011. package/src/javascript/app/common/disclaimer.js +74 -0
  1012. package/src/javascript/app/common/event_handler.js +16 -0
  1013. package/src/javascript/app/common/form_manager.js +164 -0
  1014. package/src/javascript/app/common/form_validation.js +397 -0
  1015. package/src/javascript/app/common/getFeatureFlag.js +18 -0
  1016. package/src/javascript/app/common/get_app_details.js +37 -0
  1017. package/src/javascript/app/common/guide.js +136 -0
  1018. package/src/javascript/app/common/helpers.js +151 -0
  1019. package/src/javascript/app/common/open_positions_modal.js +160 -0
  1020. package/src/javascript/app/common/request_middleware.js +89 -0
  1021. package/src/javascript/app/common/session_duration_limit.js +66 -0
  1022. package/src/javascript/app/common/statements_modal.js +197 -0
  1023. package/src/javascript/app/common/telegram_auth.js +682 -0
  1024. package/src/javascript/app/common/trade_reports_modal.js +665 -0
  1025. package/src/javascript/app/common/traffic_source.js +88 -0
  1026. package/src/javascript/app/components/date_picker.js +156 -0
  1027. package/src/javascript/app/components/loading-spinner.js +46 -0
  1028. package/src/javascript/app/components/time_picker.js +146 -0
  1029. package/src/javascript/app/hooks/events.js +88 -0
  1030. package/src/javascript/app/hooks/useFreshChat.js +42 -0
  1031. package/src/javascript/app/hooks/useGrowthbookGetFeatureValue.js +36 -0
  1032. package/src/javascript/app/hooks/useInterComChat.js +22 -0
  1033. package/src/javascript/app/hooks/useRemoteConfig.js +59 -0
  1034. package/src/javascript/app/pages/bottom/data/explanation.js +347 -0
  1035. package/src/javascript/app/pages/bottom/explanation.jsx +231 -0
  1036. package/src/javascript/app/pages/bottom/graph.jsx +35 -0
  1037. package/src/javascript/app/pages/bottom/tabs.jsx +71 -0
  1038. package/src/javascript/app/pages/callback/callback.jsx +145 -0
  1039. package/src/javascript/app/pages/endpoint.js +32 -0
  1040. package/src/javascript/app/pages/form/barrier-fields.jsx +136 -0
  1041. package/src/javascript/app/pages/form/contract-form-wrapper.jsx +10 -0
  1042. package/src/javascript/app/pages/form/currency-dropdown.jsx +49 -0
  1043. package/src/javascript/app/pages/form/dropdown-component.jsx +47 -0
  1044. package/src/javascript/app/pages/form/form-component.jsx +786 -0
  1045. package/src/javascript/app/pages/form/numbers-dropdown.jsx +75 -0
  1046. package/src/javascript/app/pages/form/time-selection.jsx +102 -0
  1047. package/src/javascript/app/pages/livechat.jsx +61 -0
  1048. package/src/javascript/app/pages/loader.jsx +15 -0
  1049. package/src/javascript/app/pages/portal.jsx +24 -0
  1050. package/src/javascript/app/pages/trade/__tests__/common.test.js +244 -0
  1051. package/src/javascript/app/pages/trade/analysis.js +231 -0
  1052. package/src/javascript/app/pages/trade/barriers.js +244 -0
  1053. package/src/javascript/app/pages/trade/callputspread.js +241 -0
  1054. package/src/javascript/app/pages/trade/charts/digit_info.js +274 -0
  1055. package/src/javascript/app/pages/trade/charts/highchart.js +781 -0
  1056. package/src/javascript/app/pages/trade/charts/highchart.ui.js +66 -0
  1057. package/src/javascript/app/pages/trade/charts/webtrader_chart.js +278 -0
  1058. package/src/javascript/app/pages/trade/common.js +4501 -0
  1059. package/src/javascript/app/pages/trade/common_independent.js +160 -0
  1060. package/src/javascript/app/pages/trade/contract.js +263 -0
  1061. package/src/javascript/app/pages/trade/contracts.jsx +195 -0
  1062. package/src/javascript/app/pages/trade/currency.js +29 -0
  1063. package/src/javascript/app/pages/trade/defaults.js +108 -0
  1064. package/src/javascript/app/pages/trade/digit_grid.js +119 -0
  1065. package/src/javascript/app/pages/trade/digit_ticker.js +457 -0
  1066. package/src/javascript/app/pages/trade/digit_trade.js +174 -0
  1067. package/src/javascript/app/pages/trade/duration.js +799 -0
  1068. package/src/javascript/app/pages/trade/event.js +475 -0
  1069. package/src/javascript/app/pages/trade/get_active_tab.js +25 -0
  1070. package/src/javascript/app/pages/trade/get_ticks.js +88 -0
  1071. package/src/javascript/app/pages/trade/guide.jsx +43 -0
  1072. package/src/javascript/app/pages/trade/last_digit.jsx +39 -0
  1073. package/src/javascript/app/pages/trade/lookback.js +59 -0
  1074. package/src/javascript/app/pages/trade/markets/contracts-dropdown.jsx +114 -0
  1075. package/src/javascript/app/pages/trade/markets/market-selector.jsx +97 -0
  1076. package/src/javascript/app/pages/trade/markets/markets-dropdown.jsx +671 -0
  1077. package/src/javascript/app/pages/trade/markets.jsx +705 -0
  1078. package/src/javascript/app/pages/trade/notifications.js +58 -0
  1079. package/src/javascript/app/pages/trade/price.js +521 -0
  1080. package/src/javascript/app/pages/trade/process.js +454 -0
  1081. package/src/javascript/app/pages/trade/purchase/contract-details.jsx +280 -0
  1082. package/src/javascript/app/pages/trade/purchase/contract-table.jsx +256 -0
  1083. package/src/javascript/app/pages/trade/purchase/purchase.jsx +1806 -0
  1084. package/src/javascript/app/pages/trade/purchase.js +429 -0
  1085. package/src/javascript/app/pages/trade/reset.js +87 -0
  1086. package/src/javascript/app/pages/trade/starttime.js +146 -0
  1087. package/src/javascript/app/pages/trade/symbols.js +116 -0
  1088. package/src/javascript/app/pages/trade/tick.js +218 -0
  1089. package/src/javascript/app/pages/trade/tick_trade.js +415 -0
  1090. package/src/javascript/app/pages/trade/tradepage.js +125 -0
  1091. package/src/javascript/app/pages/trade/update_values.js +78 -0
  1092. package/src/javascript/app/pages/user/account/__tests__/portfolio.js +91 -0
  1093. package/src/javascript/app/pages/user/account/portfolio/portfolio.init.js +243 -0
  1094. package/src/javascript/app/pages/user/account/portfolio/portfolio.js +57 -0
  1095. package/src/javascript/app/pages/user/account/settings/professional_client.js +140 -0
  1096. package/src/javascript/app/pages/user/account/settings/self_exclusion.js +408 -0
  1097. package/src/javascript/app/pages/user/account/top_up_virtual/pop_up.js +118 -0
  1098. package/src/javascript/app/pages/user/account/top_up_virtual/top_up_virtual.js +44 -0
  1099. package/src/javascript/app/pages/user/get_currency.js +110 -0
  1100. package/src/javascript/app/pages/user/reality_check/reality_check.data.js +87 -0
  1101. package/src/javascript/app/pages/user/reality_check/reality_check.js +43 -0
  1102. package/src/javascript/app/pages/user/reality_check/reality_check.ui.js +144 -0
  1103. package/src/javascript/app/pages/user/update_balance.js +109 -0
  1104. package/src/javascript/app/pages/user/update_total.js +39 -0
  1105. package/src/javascript/app/pages/user/view_popup/view_popup.js +1155 -0
  1106. package/src/javascript/app/pages/user/view_popup/view_popup.ui.js +194 -0
  1107. package/src/javascript/app/theme/palette.ts +71 -0
  1108. package/src/javascript/config.js +162 -0
  1109. package/src/javascript/index.js +114 -0
  1110. package/src/javascript/landing_pages/.eslintrc.js +11 -0
  1111. package/src/javascript/landing_pages/common.js +205 -0
  1112. package/src/javascript/manifest.json +66 -0
  1113. package/src/root_files/_common/404.html +105 -0
  1114. package/src/root_files/_common/robots.txt +2 -0
  1115. package/src/root_files/app/index.html +97 -0
  1116. package/src/root_files/app/sitemap.id.xml +37 -0
  1117. package/src/root_files/app/sitemap.xml +14 -0
  1118. package/src/sass/README.md +120 -0
  1119. package/src/sass/_common/base/animations.scss +48 -0
  1120. package/src/sass/_common/base/constants-deriv.scss +139 -0
  1121. package/src/sass/_common/base/constants.scss +66 -0
  1122. package/src/sass/_common/base/functions.scss +64 -0
  1123. package/src/sass/_common/base/language_base.scss +202 -0
  1124. package/src/sass/_common/base/media-queries.scss +72 -0
  1125. package/src/sass/_common/base/mixin.scss +175 -0
  1126. package/src/sass/_common/base/reset.scss +46 -0
  1127. package/src/sass/_common/base/theme.scss +348 -0
  1128. package/src/sass/_common/common.scss +1155 -0
  1129. package/src/sass/_common/common_import.scss +7 -0
  1130. package/src/sass/_common/components.scss +562 -0
  1131. package/src/sass/_common/external/_grid-settings-flex.scss +57 -0
  1132. package/src/sass/_common/external/_grid-settings.scss +60 -0
  1133. package/src/sass/_common/external/_variables.scss +28 -0
  1134. package/src/sass/_common/external/grid-flex.scss +42 -0
  1135. package/src/sass/_common/external/grid-mixins.scss +64 -0
  1136. package/src/sass/_common/external/grid.scss +63 -0
  1137. package/src/sass/_common/external/gridle/_api.scss +814 -0
  1138. package/src/sass/_common/external/gridle/_default-states.scss +37 -0
  1139. package/src/sass/_common/external/gridle/_driver-default.scss +432 -0
  1140. package/src/sass/_common/external/gridle/_driver-flex.scss +378 -0
  1141. package/src/sass/_common/external/gridle/_flexbox.scss +422 -0
  1142. package/src/sass/_common/external/gridle/_functions.scss +1108 -0
  1143. package/src/sass/_common/external/gridle/_generate-mixins.scss +645 -0
  1144. package/src/sass/_common/external/gridle/_gridle-flex.scss +60 -0
  1145. package/src/sass/_common/external/gridle/_gridle.scss +59 -0
  1146. package/src/sass/_common/external/gridle/_init.scss +147 -0
  1147. package/src/sass/_common/external/gridle/_mixins.scss +469 -0
  1148. package/src/sass/_common/external/gridle/_settings-mixins.scss +387 -0
  1149. package/src/sass/_common/external/gridle/_settings.scss +127 -0
  1150. package/src/sass/_common/external/mmenu/jquery.mmenu.all.scss +1276 -0
  1151. package/src/sass/_common/external/style.scss +361 -0
  1152. package/src/sass/_common/external/tests.scss +519 -0
  1153. package/src/sass/_common/external/third-party.scss +57 -0
  1154. package/src/sass/_common/external/tools/_reset.scss +47 -0
  1155. package/src/sass/_common/footer.scss +188 -0
  1156. package/src/sass/_common/header.scss +1799 -0
  1157. package/src/sass/_common/icons.scss +29 -0
  1158. package/src/sass/_common/img_lightbox.scss +59 -0
  1159. package/src/sass/_common/jquery_elements.scss +117 -0
  1160. package/src/sass/_common/reskin.scss +3928 -0
  1161. package/src/sass/_common/table.scss +104 -0
  1162. package/src/sass/_common/wallet_header.scss +224 -0
  1163. package/src/sass/app/components/account_transfer.scss +93 -0
  1164. package/src/sass/app/components/cashier-modal.scss +614 -0
  1165. package/src/sass/app/components/contract.scss +166 -0
  1166. package/src/sass/app/components/market.scss +442 -0
  1167. package/src/sass/app/components/peek_box.scss +391 -0
  1168. package/src/sass/app/components/stats-dialog.scss +46 -0
  1169. package/src/sass/app/components/trade-reports-modal.scss +771 -0
  1170. package/src/sass/app/reality_check.scss +99 -0
  1171. package/src/sass/app/sell_popup.scss +387 -0
  1172. package/src/sass/app/trade.scss +5012 -0
  1173. package/src/sass/app/trading.scss +127 -0
  1174. package/src/sass/app/websocket_pages.scss +210 -0
  1175. package/src/sass/app.scss +16 -0
  1176. package/src/sass/common.scss +27 -0
  1177. package/src/sass/reset.scss +27 -0
  1178. package/src/sass/static/animate-ui.css +215 -0
  1179. package/src/sass/static/guide.enjoyhint.scss +308 -0
  1180. package/src/sass/static/guide.scss +31 -0
  1181. package/src/sass/static/pages.scss +299 -0
  1182. package/src/sass/static.scss +5 -0
  1183. package/src/templates/.eslintrc.js +6 -0
  1184. package/src/templates/README.md +105 -0
  1185. package/src/templates/_common/_layout/head.jsx +61 -0
  1186. package/src/templates/_common/_layout/header.jsx +182 -0
  1187. package/src/templates/_common/_layout/layout.jsx +212 -0
  1188. package/src/templates/_common/_layout/wallet-header.jsx +121 -0
  1189. package/src/templates/_common/brand.config.js +25 -0
  1190. package/src/templates/_common/components/box_row.jsx +45 -0
  1191. package/src/templates/_common/components/cashier_modal.jsx +486 -0
  1192. package/src/templates/_common/components/elements.jsx +294 -0
  1193. package/src/templates/_common/components/forms.jsx +241 -0
  1194. package/src/templates/_common/components/html_comment.jsx +7 -0
  1195. package/src/templates/_common/components/language-menu-modal.jsx +17 -0
  1196. package/src/templates/_common/components/list_multiline.jsx +22 -0
  1197. package/src/templates/_common/components/list_nested.jsx +17 -0
  1198. package/src/templates/_common/components/loading.jsx +28 -0
  1199. package/src/templates/_common/components/mobile_menu.jsx +164 -0
  1200. package/src/templates/_common/components/notification.jsx +26 -0
  1201. package/src/templates/_common/components/open_positions_modal.jsx +55 -0
  1202. package/src/templates/_common/components/separator_line.jsx +27 -0
  1203. package/src/templates/_common/components/sidebar.jsx +42 -0
  1204. package/src/templates/_common/components/statements_modal.jsx +65 -0
  1205. package/src/templates/_common/components/step.jsx +15 -0
  1206. package/src/templates/_common/components/tabs.jsx +67 -0
  1207. package/src/templates/_common/components/title.jsx +8 -0
  1208. package/src/templates/_common/components/trade_reports_modal.jsx +213 -0
  1209. package/src/templates/_common/includes/anti_clickjack.jsx +20 -0
  1210. package/src/templates/_common/includes/elevio.jsx +23 -0
  1211. package/src/templates/_common/includes/favicons.jsx +42 -0
  1212. package/src/templates/_common/includes/google_optimizer.jsx +7 -0
  1213. package/src/templates/_common/includes/gtm.jsx +8 -0
  1214. package/src/templates/_common/includes/livechat.jsx +21 -0
  1215. package/src/templates/app/callback.jsx +30 -0
  1216. package/src/templates/app/dialog.jsx +23 -0
  1217. package/src/templates/app/endpoint.jsx +50 -0
  1218. package/src/templates/app/logged_in.jsx +337 -0
  1219. package/src/templates/app/trade/analysis.jsx +51 -0
  1220. package/src/templates/app/trade/explanation.jsx +336 -0
  1221. package/src/templates/app/trade/price-chart.jsx +103 -0
  1222. package/src/templates/app/trade/trading.jsx +1829 -0
  1223. package/src/templates/app/user/portfolio.jsx +59 -0
  1224. package/src/templates/app/user/reality_check/deriv_summary.jsx +77 -0
  1225. package/src/templates/app/user/reality_check/form.jsx +22 -0
  1226. package/src/templates/app/user/reality_check/frequency.jsx +13 -0
  1227. package/src/templates/app/user/reality_check/summary.jsx +53 -0
  1228. package/src/templates/app/user/reality_check/wrapper.jsx +15 -0
  1229. package/src/templates/static/404.jsx +22 -0
  1230. package/src/translations/ach_UG.po +1860 -0
  1231. package/src/translations/ar_SA.po +1860 -0
  1232. package/src/translations/bn_BD.po +1860 -0
  1233. package/src/translations/de_DE.po +1860 -0
  1234. package/src/translations/en.po +14817 -0
  1235. package/src/translations/es_ES.po +1860 -0
  1236. package/src/translations/fr_FR.po +1860 -0
  1237. package/src/translations/id_ID.po +3069 -0
  1238. package/src/translations/it_IT.po +1860 -0
  1239. package/src/translations/km_KH.po +1860 -0
  1240. package/src/translations/ko_KR.po +1860 -0
  1241. package/src/translations/messages.pot +1901 -0
  1242. package/src/translations/mn_MN.po +1860 -0
  1243. package/src/translations/pl_PL.po +1860 -0
  1244. package/src/translations/pt_PT.po +1860 -0
  1245. package/src/translations/ru_RU.po +1917 -0
  1246. package/src/translations/si_LK.po +1860 -0
  1247. package/src/translations/sw_KE.po +1860 -0
  1248. package/src/translations/th_TH.po +1860 -0
  1249. package/src/translations/tr_TR.po +1860 -0
  1250. package/src/translations/uz_UZ.po +1860 -0
  1251. package/src/translations/vi_VN.po +1860 -0
  1252. package/src/translations/zh_CN.po +1860 -0
  1253. package/src/translations/zh_TW.po +1860 -0
  1254. package/stagewise.json +6 -0
  1255. package/styles.scss +8 -0
  1256. package/vendor/deriv-com-analytics/LICENSE +21 -0
  1257. package/vendor/deriv-com-analytics/README.md +112 -0
  1258. package/vendor/deriv-com-analytics/lib/analytics.d.ts +58 -0
  1259. package/vendor/deriv-com-analytics/lib/analytics.js +258 -0
  1260. package/vendor/deriv-com-analytics/lib/growthbook.d.ts +29 -0
  1261. package/vendor/deriv-com-analytics/lib/growthbook.js +144 -0
  1262. package/vendor/deriv-com-analytics/lib/index.d.ts +2 -0
  1263. package/vendor/deriv-com-analytics/lib/index.js +5 -0
  1264. package/vendor/deriv-com-analytics/lib/rudderstack.d.ts +52 -0
  1265. package/vendor/deriv-com-analytics/lib/rudderstack.js +162 -0
  1266. package/vendor/deriv-com-analytics/lib/types.d.ts +334 -0
  1267. package/vendor/deriv-com-analytics/lib/types.js +2 -0
  1268. package/vendor/deriv-com-analytics/package.json +42 -0
  1269. package/vercel.dr.json +5 -0
  1270. package/vercel.json +8 -0
@@ -0,0 +1,2138 @@
1
+ export const config = {
2
+ atr: {
3
+ id: "atr",
4
+ long_display_name: "Average True Range",
5
+ short_display_name: "ATR",
6
+ editable: true,
7
+ fields: [
8
+ {title: "Period", key: "period", min: 1, max: 100, value: 14, type: "slider"},
9
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
10
+ {title: "Stroke", key: "stroke", value: "#FA6B0D", type: "colorpicker"},
11
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
12
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
13
+ ],
14
+ levels:{
15
+ fields: [
16
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
17
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
18
+ {title: "Stroke", key: "color", value: "#FA6B0D", type: "colorpicker"},
19
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
20
+ ],
21
+ values: [
22
+ {color: "#FA6B0D", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
23
+ {color: "#FA6B0D", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
24
+ ]
25
+ },
26
+ category: [
27
+ "Volatility Indicators"
28
+ ],
29
+ description: "The Average Directional Movement Index index (ADX) was developed in 1978 by J. Welles Wilder as an indicator of trend strength in a series of prices of a financial instrument ADX will range between 0 and 100. Generally, ADX readings below 20 indicate trend weakness, and readings above 40 indicate trend strength."
30
+ },
31
+ ema: {
32
+ id: "ema",
33
+ long_display_name: "Exponential Moving Average",
34
+ short_display_name: "EMA",
35
+ onChartIndicator: true,
36
+ editable: true,
37
+ fields: [
38
+ {title: "Period", key: "period", min: 1, max: 100, value: 21, type: "slider"},
39
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
40
+ {title: "Stroke", key: "stroke", value: "#E14906", type: "colorpicker"},
41
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
42
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
43
+ ],
44
+ category: [
45
+ "Overlap Studies"
46
+ ],
47
+ description: "The Exponential Moving Average (EMA) represents an average of prices, but places more weight on recent prices. The weighting applied to the most recent price depends on the selected period of the moving average. The shorter the period for the EMA, the more weight that will be applied to the most recent price."
48
+ },
49
+ rsi: {
50
+ id: "rsi",
51
+ long_display_name: "Relative Strength Index",
52
+ short_display_name: "RSI",
53
+ editable: true,
54
+ fields: [
55
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
56
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
57
+ {title: "Stroke", key: "stroke", value: "#806C3D", type: "colorpicker"},
58
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
59
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
60
+ ],
61
+ levels:{
62
+ fields: [
63
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
64
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
65
+ {title: "Stroke", key: "color", value: "#806C3D", type: "colorpicker"},
66
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
67
+ ],
68
+ values: [
69
+ {color: "#806C3D", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
70
+ {color: "#806C3D", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
71
+ ]
72
+ },
73
+ category: [
74
+ "Momentum Indicators"
75
+ ],
76
+ description: "The Relative Strength Index (RSI) was published by J. Welles Wilder. The current price is normalized as a percentage between 0 and 100. The name of this oscillator is misleading because it does not compare the instrument relative to another instrument or set of instruments, but rather represents the current price relative to other recent pieces within the selected lookback window length."
77
+ },
78
+ sma: {
79
+ id: "sma",
80
+ long_display_name: "Simple Moving Average",
81
+ short_display_name: "SMA",
82
+ onChartIndicator: true,
83
+ editable: true,
84
+ fields: [
85
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
86
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
87
+ {title: "Stroke", key: "stroke", value: "#50B3AA", type: "colorpicker"},
88
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
89
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
90
+ ],
91
+ category: [
92
+ "Overlap Studies"
93
+ ],
94
+ description: "The Simple Moving Average (SMA) is calculated by adding the price of an instrument over a number of time periods and then dividing the sum by the number of time periods. The SMA is basically the average price of the given time period, with equal weighting given to the price of each period."
95
+ },
96
+ roc: {
97
+ id: "roc",
98
+ long_display_name: "Rate Of Change",
99
+ short_display_name: "ROC",
100
+ editable: true,
101
+ fields: [
102
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
103
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
104
+ {title: "Stroke", key: "stroke", value: "#319F67", type: "colorpicker"},
105
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
106
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
107
+ ],
108
+ levels:{
109
+ fields: [
110
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
111
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
112
+ {title: "Stroke", key: "color", value: "#319F67", type: "colorpicker"},
113
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
114
+ ],
115
+ values: [ ]
116
+ },
117
+ category: [
118
+ "Momentum Indicators"
119
+ ],
120
+ description: "The Price Rate-of-Change (ROC) indicator displays the difference between the current price and the price x-time periods ago. The difference can be displayed in either points or as a percentage."
121
+ },
122
+ typprice: {
123
+ id: "typprice",
124
+ long_display_name: "Typical Price",
125
+ short_display_name: "TYPPRICE",
126
+ onChartIndicator: true,
127
+ editable: true,
128
+ fields: [
129
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
130
+ {title: "Stroke", key: "stroke", value: "#ECD078", type: "colorpicker"},
131
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
132
+ ],
133
+ category: [
134
+ "Price Transformation"
135
+ ],
136
+ formula: "typprice",
137
+ description: "The Typical Price function measures the average of the high, low, and closing prices for the day using a simple, single-line plot. The ordinary price gives a simplified view of the day trading prices for as well as it happens with other price-adjustment functions. You can use it for smoothing out some of the inconstancy of the closing price because it comprises information for the whole trading day and not only the result of the day's end. The Typical Price indicator is measured by adding the high, low, and closing prices together, and then dividing by three."
138
+ },
139
+ willr: {
140
+ id: "willr",
141
+ long_display_name: "Williams' %R",
142
+ short_display_name: "WILLR",
143
+ editable: true,
144
+ fields: [
145
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
146
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
147
+ {title: "Stroke", key: "stroke", value: "#D95B43", type: "colorpicker"},
148
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
149
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
150
+ ],
151
+ levels:{
152
+ fields: [
153
+ {title: "Level", key: "value", min: -100, max: 0, value: -50, type: "slider"},
154
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
155
+ {title: "Stroke", key: "color", value: "#D95B43", type: "colorpicker"},
156
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
157
+ ],
158
+ values: [
159
+ {color: "#FA6B0D", dashStyle: "Dash", label: { text: -25}, value: -25, "width" : 1},
160
+ {color: "#FA6B0D", dashStyle: "Dash", label: { text: -75}, value: -75, "width" : 1}
161
+ ]
162
+ },
163
+ category: [
164
+ "Momentum Indicators"
165
+ ],
166
+ description: "Developed by Larry Williams, Williams %R is a momentum indicator that is the inverse of the Fast Stochastic Oscillator. Also referred to as %R, Williams %R reflects the level of the close relative to the highest high for the look-back period."
167
+ },
168
+ rocp: {
169
+ id: "rocp",
170
+ long_display_name: "Rate Of Change Percentage",
171
+ short_display_name: "ROCP",
172
+ editable: true,
173
+ fields: [
174
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
175
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
176
+ {title: "Stroke", key: "stroke", value: "#C02942", type: "colorpicker"},
177
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
178
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
179
+ ],
180
+ levels:{
181
+ fields: [
182
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
183
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
184
+ {title: "Stroke", key: "color", value: "#C02942", type: "colorpicker"},
185
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
186
+ ],
187
+ values: [ ]
188
+ },
189
+ category: [
190
+ "Momentum Indicators"
191
+ ],
192
+ description: "The Rate of Change Percentage (ROCP) indicator compares the current price with the previous price from a selected number of periods ago. The current price is divided by the previous price. ROCP does not express as a percentage. This indicator is also commonly known as a momentum indicator."
193
+ },
194
+ rocr: {
195
+ id: "rocr",
196
+ long_display_name: "Rate Of Change Ratio",
197
+ short_display_name: "ROCR",
198
+ editable: true,
199
+ fields: [
200
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
201
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
202
+ {title: "Stroke", key: "stroke", value: "#542437", type: "colorpicker"},
203
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
204
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
205
+ ],
206
+ levels:{
207
+ fields: [
208
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
209
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
210
+ {title: "Stroke", key: "color", value: "#542437", type: "colorpicker"},
211
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
212
+ ],
213
+ values: [ ]
214
+ },
215
+ category: [
216
+ "Momentum Indicators"
217
+ ],
218
+ description: "The Rate of Change Rate (ROCR) indicator compares the current price with the previous price from a selected number of periods ago. The current price is divided by the previous price. This indicator is also commonly known as a momentum indicator."
219
+ },
220
+ min: {
221
+ id: "min",
222
+ long_display_name: "Minimum",
223
+ short_display_name: "MIN",
224
+ onChartIndicator: true,
225
+ editable: true,
226
+ fields: [
227
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
228
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
229
+ {title: "Stroke", key: "stroke", value: "#53777A", type: "colorpicker"},
230
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
231
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
232
+ ],
233
+ category: [
234
+ "Statistical Functions"
235
+ ],
236
+ description: "Minimum price over selected period"
237
+ },
238
+ max: {
239
+ id: "max",
240
+ long_display_name: "Maximum",
241
+ short_display_name: "MAX",
242
+ onChartIndicator: true,
243
+ editable: true,
244
+ fields: [
245
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
246
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
247
+ {title: "Stroke", key: "stroke", value: "#556270", type: "colorpicker"},
248
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
249
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
250
+ ],
251
+ category: [
252
+ "Statistical Functions"
253
+ ],
254
+ description: "Maximum price over selected period"
255
+ },
256
+ sum: {
257
+ id: "sum",
258
+ long_display_name: "Summation",
259
+ short_display_name: "SUM",
260
+ editable: true,
261
+ fields: [
262
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
263
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
264
+ {title: "Stroke", key: "stroke", value: "#4ECDC4", type: "colorpicker"},
265
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
266
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
267
+ ],
268
+ levels:{
269
+ fields: [
270
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
271
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
272
+ {title: "Stroke", key: "color", value: "#4ECDC4", type: "colorpicker"},
273
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
274
+ ],
275
+ values: [ ]
276
+ },
277
+ category: [
278
+ "Statistical Functions"
279
+ ],
280
+ description: "The sum of price over selected period"
281
+ },
282
+ wma: {
283
+ id: "wma",
284
+ long_display_name: "Weighted Moving Average",
285
+ short_display_name: "WMA",
286
+ onChartIndicator: true,
287
+ editable: true,
288
+ fields: [
289
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
290
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
291
+ {title: "Stroke", key: "stroke", value: "#C7F464", type: "colorpicker"},
292
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
293
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
294
+ ],
295
+ category: [
296
+ "Overlap Studies"
297
+ ],
298
+ description: "WMA stands for weighted moving average. It helps to smooth the price curve for better trend identification. It places even greater importance on recent data than the EMA does."
299
+ },
300
+ tema: {
301
+ id: "tema",
302
+ long_display_name: "Triple Exponential Moving Average",
303
+ short_display_name: "TEMA",
304
+ onChartIndicator: true,
305
+ editable: true,
306
+ fields: [
307
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
308
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
309
+ {title: "Stroke", key: "stroke", value: "#FF6B6B", type: "colorpicker"},
310
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
311
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
312
+ ],
313
+ category: [
314
+ "Overlap Studies"
315
+ ],
316
+ description: "The Triple Exponential Moving Average (TEMA) by Patrick Mulloy offers a moving average with less lag then traditional exponential moving average."
317
+ },
318
+ trima: {
319
+ id: "trima",
320
+ long_display_name: "Triangular Moving Average",
321
+ short_display_name: "TRIMA",
322
+ onChartIndicator: true,
323
+ editable: true,
324
+ fields: [
325
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
326
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
327
+ {title: "Stroke", key: "stroke", value: "#C44D58", type: "colorpicker"},
328
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
329
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
330
+ ],
331
+ category: [
332
+ "Overlap Studies"
333
+ ],
334
+ description: "The Triangular Moving Average (TRIMA) represents an average of prices, but places weight on the middle prices of the time period. The calculations double-smooth the data using a window width that is one-half the length of the series."
335
+ },
336
+ natr: {
337
+ id: "natr",
338
+ long_display_name: "Normalized Average True Range",
339
+ short_display_name: "NATR",
340
+ editable: true,
341
+ fields: [
342
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
343
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
344
+ {title: "Stroke", key: "stroke", value: "#351330", type: "colorpicker"},
345
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
346
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
347
+ ],
348
+ levels:{
349
+ fields: [
350
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
351
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
352
+ {title: "Stroke", key: "color", value: "#351330", type: "colorpicker"},
353
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
354
+ ],
355
+ values: [
356
+ {color: "#351330", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
357
+ {color: "#351330", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
358
+ ]
359
+ },
360
+ category: [
361
+ "Volatility Indicators"
362
+ ],
363
+ description: "Normalized Average True Range (NATR) attempts to normalize the average true range values across instruments by using the formula below."
364
+ },
365
+ bop: {
366
+ id: "bop",
367
+ long_display_name: "Balance of Power",
368
+ short_display_name: "BOP",
369
+ editable: true,
370
+ fields: [
371
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
372
+ {title: "Stroke", key: "stroke", value: "#424254", type: "colorpicker"},
373
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
374
+ ],
375
+ levels:{
376
+ fields: [
377
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
378
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
379
+ {title: "Stroke", key: "color", value: "#424254", type: "colorpicker"},
380
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
381
+ ],
382
+ values: [ ]
383
+ },
384
+ category: [
385
+ "Momentum Indicators"
386
+ ],
387
+ description: "The balance of power (BOP) indicator measures the strength of the bulls vs. bears by assessing the ability of each to push price to an extreme level."
388
+ },
389
+ cdl2crows: {
390
+ id: "cdl2crows",
391
+ long_display_name: "Two Crows",
392
+ short_display_name: "CDL2CROWS",
393
+ fields: [ ],
394
+ cdl_indicator: {
395
+ image: "two_crows"
396
+ },
397
+ category: [
398
+ "Pattern Recognition"
399
+ ],
400
+ description: "Look for a tall white candle in an upward price trend. Following that, a black candle has a body that gaps above the prior candle's body. The last day is another black candle, but this one engulfs the previous bearish candle but closes above first bar's open."
401
+ },
402
+ cdl3blackcrows: {
403
+ id: "cdl3blackcrows",
404
+ long_display_name: "Three Black Crows",
405
+ short_display_name: "CDL3BLACKCROWS",
406
+ fields: [ ],
407
+ cdl_indicator: {
408
+ image: "three_black_crows"
409
+ },
410
+ category: [
411
+ "Pattern Recognition"
412
+ ],
413
+ description: "A bearish candlestick pattern that is used to predict the reversal of the current uptrend. This pattern consists of three consecutive long-bodied candlesticks that have closed lower than the previous day with each session's open occurring within the body of the previous candle."
414
+ },
415
+ cdl3inside: {
416
+ id: "cdl3inside",
417
+ long_display_name: "Three Inside Up/Down",
418
+ short_display_name: "CDL3INSIDE",
419
+ fields: [ ],
420
+ cdl_indicator: {
421
+ image: "three_inside_up_down"
422
+ },
423
+ category: [
424
+ "Pattern Recognition"
425
+ ],
426
+ description: "Price trends downward into the start of the pattern, a tall black candle. Following that, a white candle appears that fits inside the body of the prior candle. This completes the bullish harami candlestick. The final day of the pattern is the confirming candle, a white one that closes above the prior close, which it does. The combination suggests price has reversed trend."
427
+ },
428
+ cdl3linestrike: {
429
+ id: "cdl3linestrike",
430
+ long_display_name: "Three-Line Strike",
431
+ short_display_name: "CDL3LINESTRIKE",
432
+ fields: [ ],
433
+ cdl_indicator: {
434
+ image: "three_line_strike"
435
+ },
436
+ category: [
437
+ "Pattern Recognition"
438
+ ],
439
+ description: "Price forms three black candles, each with lower closes, in a downward price trend. A tall white candle engulfs the price action of the prior three days. The candle acts as a bullish reversal when price breaks out upward, and closes above the top of the candle pattern."
440
+ },
441
+ cdl3outside: {
442
+ id: "cdl3outside",
443
+ long_display_name: "Three Outside Up/Down",
444
+ short_display_name: "CDL3OUTSIDE",
445
+ fields: [ ],
446
+ cdl_indicator: {
447
+ image: "three_outside_up_down"
448
+ },
449
+ category: [
450
+ "Pattern Recognition"
451
+ ],
452
+ description: "In a downward price trend, a black candle appears followed by a white candle that opens below the prior body, but it may be difficult to see that from the chart. The white candle closes above the body, too. The last day of the three line candle is another white candle in this example. It shows a higher close."
453
+ },
454
+ cdl3starssouth: {
455
+ id: "cdl3starssouth",
456
+ long_display_name: "Three Stars In The South",
457
+ short_display_name: "CDL3STARSSOUTH",
458
+ fields: [ ],
459
+ cdl_indicator: {
460
+ image: "three_stars_in_the_south"
461
+ },
462
+ category: [
463
+ "Pattern Recognition"
464
+ ],
465
+ description: "Look for a tall black candle with a long lower shadow to appear in a downward price trend. The second day should be similar to the first day, but smaller and with a higher low. The last day is a black marubozu that squeezes inside the high-low range of the prior day."
466
+ },
467
+ cdl3whitesoldiers: {
468
+ id: "cdl3whitesoldiers",
469
+ long_display_name: "Three Advancing White Soldiers",
470
+ short_display_name: "CDL3WHITESOLDIERS",
471
+ fields: [ ],
472
+ cdl_indicator: {
473
+ image: "three_white_soldiers"
474
+ },
475
+ category: [
476
+ "Pattern Recognition"
477
+ ],
478
+ description: "Three tall white candles, each with higher closes, and bodies that overlap (an opening price within the prior candle's body)"
479
+ },
480
+ cdldoji: {
481
+ id: "cdldoji",
482
+ long_display_name: "Doji",
483
+ short_display_name: "CDLDOJI",
484
+ fields: [ ],
485
+ cdl_indicator: {
486
+ image: "doji"
487
+ },
488
+ category: [
489
+ "Pattern Recognition"
490
+ ],
491
+ description: "Doji form when a security's open and close are virtually equal. The length of the upper and lower shadows can vary and the resulting candlestick looks like a cross, inverted cross or plus sign."
492
+ },
493
+ cdlabandonedbaby: {
494
+ id: "cdlabandonedbaby",
495
+ long_display_name: "Abandoned Baby",
496
+ short_display_name: "CDLABANDONEDBABY",
497
+ fields: [ ],
498
+ cdl_indicator: {
499
+ image: "abandoned_baby"
500
+ },
501
+ category: [
502
+ "Pattern Recognition"
503
+ ],
504
+ description: "A white candle in an upward price trend followed by a doji whose lower shadow remains above the prior candle's high. The third day is a black candle with an upper shadow below the doji's low."
505
+ },
506
+ cdlclosingmarubozu: {
507
+ id: "cdlclosingmarubozu",
508
+ long_display_name: "Closing Marubozu",
509
+ short_display_name: "CDLCLOSINGMARUBOZU",
510
+ fields: [ ],
511
+ cdl_indicator: {
512
+ image: "closing_marubozu"
513
+ },
514
+ category: [
515
+ "Pattern Recognition"
516
+ ],
517
+ description: "The closing black marubozu candlestick is a tall black candle with an upper shadow but no lower one. The closing white marubozu candlestick is a tall white candle with an lower shadow but no upper shadow."
518
+ },
519
+ cdldojistar: {
520
+ id: "cdldojistar",
521
+ long_display_name: "Doji Star",
522
+ short_display_name: "CDLDOJISTAR",
523
+ fields: [ ],
524
+ cdl_indicator: {
525
+ image: "doji_star"
526
+ },
527
+ category: [
528
+ "Pattern Recognition"
529
+ ],
530
+ description: "A bullish or bearish candle followed by a doji with with a downward or uptrend gap."
531
+ },
532
+ cdlthrusting: {
533
+ id: "cdlthrusting",
534
+ long_display_name: "Thrusting Pattern",
535
+ short_display_name: "CDLTHRUSTING",
536
+ fields: [ ],
537
+ cdl_indicator: {
538
+ image: "thrusting_pattern"
539
+ },
540
+ category: [
541
+ "Pattern Recognition"
542
+ ],
543
+ description: "Look for a black candle in a downward price trend followed by a white candle that opens below the prior low but closes near but below the midpoint of the black candle's body."
544
+ },
545
+ bbands: {
546
+ id: "bbands",
547
+ long_display_name: "Bollinger Bands",
548
+ short_display_name: "BBANDS",
549
+ onChartIndicator: true,
550
+ editable: true,
551
+ fields: [
552
+ {title: "Price", key: "appliedTo", value: 3, type: "price"},
553
+ {title: "Time Period", key: "period", min: 1, max: 50, value: 20, type: "slider"},
554
+ {title: "NB Dev Up", key: "devUp", min: 1, max: 20, value: 2, type: "slider"},
555
+ {title: "NB Dev Down", key: "devDn", min: 1, max: 20, value: 2, type: "slider"},
556
+ {title: "MA Type", key: "maType", value: "SMA", type: "matype"},
557
+ {title: "Middle Band Stroke", key: "mdlBndStroke", value: "rgb(205, 10, 10)", type: "colorpicker"},
558
+ {title: "Upper Band Stroke", key: "uprBndStroke", value: "rgb(11, 88, 162)", type: "colorpicker"},
559
+ {title: "Lower Band Stroke", key: "lwrBndStroke", value: "rgb(11, 88, 162)", type: "colorpicker"},
560
+ {title: "Background Color", key: "backgroundColor", value: "rgba(178, 191, 217, 0.3)", type: "colorpicker"},
561
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
562
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
563
+ ],
564
+ category: [
565
+ "Momentum Indicators"
566
+ ],
567
+ description: "Bollinger Bands can be used to measure the highness or lowness of the price relative to previous trades."
568
+ },
569
+ cdlshootingstar: {
570
+ id: "cdlshootingstar",
571
+ long_display_name: "Shooting Star",
572
+ short_display_name: "CDLSHOOTINGSTAR",
573
+ fields: [ ],
574
+ cdl_indicator: {
575
+ image: "shooting_star"
576
+ },
577
+ category: [
578
+ "Pattern Recognition"
579
+ ],
580
+ description: "The Shooting formation is created when the open, low, and close are roughly the same price. There is a long upper shadow, generally defined as at least twice the length of the real body."
581
+ },
582
+ sar: {
583
+ id: "sar",
584
+ long_display_name: "Parabolic SAR",
585
+ short_display_name: "SAR",
586
+ onChartIndicator: true,
587
+ editable: true,
588
+ fields: [
589
+ {title: "Acceleration", key: "acceleration", value: 0.02, type: "numeric"},
590
+ {title: "Maximum", key: "maximum", value: 0.2, type: "numeric"},
591
+ {title: "Stroke", key: "stroke", value: "#413D3D", type: "colorpicker"}
592
+ ],
593
+ category: [
594
+ "Overlap Studies"
595
+ ],
596
+ description: "The parabolic SAR is calculated almost independently for each trend in the price. When the price is in an uptrend, the SAR emerges below the price and converges upwards towards it. Similarly, on a downtrend, the SAR emerges above the price and converges downwards. At each step within a trend, the SAR is calculated one period in advance."
597
+ },
598
+ macd: {
599
+ id: "macd",
600
+ long_display_name: "Moving Average Convergence/Divergence",
601
+ short_display_name: "MACD",
602
+ editable: true,
603
+ fields: [
604
+ {title: "Price", key: "appliedTo", value: 3, type: "price"},
605
+ {title: "Fast Period", key: "fastPeriod", min: 1, max: 50, value: 12, type: "slider"},
606
+ {title: "Slow Period", key: "slowPeriod", min: 1, max: 50, value: 26, type: "slider"},
607
+ {title: "Signal Period", key: "signalPeriod", min: 1, max: 50, value: 9, type: "slider"},
608
+ {title: "Fast MA Type", key: "fastMaType", value: "SMA", type: "matype"},
609
+ {title: "Slow MA Type", key: "slowMaType", value: "SMA", type: "matype"},
610
+ {title: "Signal MA Type", key: "signalMaType", value: "SMA", type: "matype"},
611
+ {title: "MACD Line Stroke", key: "macdStroke", value: "#2a277a", type: "colorpicker"},
612
+ {title: "Signal Line Stroke", key: "signalLineStroke", value: "#ff0000", type: "colorpicker"},
613
+ {title: "Histogram Color", key: "macdHstgrmColor", value: "#7e9fc9", type: "colorpicker"},
614
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
615
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
616
+ ],
617
+ category: [
618
+ "Momentum Indicators"
619
+ ],
620
+ description: "MACD is a trading indicator used in technical analysis of stock prices.It is supposed to reveal changes in the strength, direction, momentum, and duration of a trend in a stock's price."
621
+ },
622
+ cdlengulfing: {
623
+ id: "cdlengulfing",
624
+ long_display_name: "Engulfing Pattern",
625
+ short_display_name: "CDLENGULFING",
626
+ fields: [ ],
627
+ cdl_indicator: {
628
+ image: "engulfing_pattern"
629
+ },
630
+ category: [
631
+ "Pattern Recognition"
632
+ ],
633
+ description: "A chart pattern that consists of a small white candlestick with short shadows or tails followed by a large black candlestick that eclipses or 'engulfs' the small white one."
634
+ },
635
+ wclprice: {
636
+ id: "wclprice",
637
+ long_display_name: "Weighted Close Price",
638
+ short_display_name: "WCLPRICE",
639
+ onChartIndicator: true,
640
+ editable: true,
641
+ fields: [
642
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
643
+ {title: "Stroke", key: "stroke", value: "#FA023C", type: "colorpicker"},
644
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
645
+ ],
646
+ category: [
647
+ "Price Transformation"
648
+ ],
649
+ description: "The Weighted Close indicator is simply an average of each day's price. It can be used to smooth out some of the inconstancy of a chart of closing prices, as it comprises information for the whole trading day."
650
+ },
651
+ cci: {
652
+ id: "cci",
653
+ long_display_name: "Commodity Channel Index",
654
+ short_display_name: "CCI",
655
+ editable: true,
656
+ fields: [
657
+ {title: "Period", key: "period", min: 1, max: 50, value: 20, type: "slider"},
658
+ {title: "MA Type", key: "maType", value: "SMA", type: "matype"},
659
+ {title: "Stroke", key: "stroke", value: "#AAFF00", type: "colorpicker"},
660
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
661
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
662
+ ],
663
+ levels:{
664
+ fields: [
665
+ {title: "Level", key: "value", min: -200, max: 200, value: 0, type: "slider"},
666
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
667
+ {title: "Stroke", key: "color", value: "#FA6B0D", type: "colorpicker"},
668
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
669
+ ],
670
+ values: [
671
+ {color: "#FA6B0D", dashStyle: "Dash", label: { text: -100}, value: -100, "width" : 1},
672
+ {color: "#FA6B0D", dashStyle: "Dash", label: { text: 100}, value: 100, "width" : 1}
673
+ ]
674
+ },
675
+ category: [
676
+ "Momentum Indicators"
677
+ ],
678
+ description: "The Commodity Channel Index (CCI) is a versatile indicator that can be used to identify a new trend or warn of extreme conditions."
679
+ },
680
+ dema: {
681
+ id: "dema",
682
+ long_display_name: "Double Exponential Moving Average",
683
+ short_display_name: "DEMA",
684
+ onChartIndicator: true,
685
+ editable: true,
686
+ fields: [
687
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
688
+ {title: "Stroke", key: "stroke", value: "#FFAA00", type: "colorpicker"},
689
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
690
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
691
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
692
+ ],
693
+ category: [
694
+ "Overlap Studies"
695
+ ],
696
+ description: "The Double Exponential Moving Average (DEMA) by Patrick Mulloy attempts to remove the inherent lag associated to Moving Averages by placing more weight on recent values."
697
+ },
698
+ kama: {
699
+ id: "kama",
700
+ long_display_name: "Kaufman's Adaptive Moving Average",
701
+ short_display_name: "KAMA",
702
+ onChartIndicator: true,
703
+ editable: true,
704
+ fields: [
705
+ {title: "Period", key: "period", min: 1, max: 200, value: 10, type: "slider"},
706
+ {title: "Fast Period", key: "fastPeriod", min: 1, max: 200, value: 2, type: "slider"},
707
+ {title: "Slow Period", key: "slowPeriod", min: 1, max: 200, value: 30, type: "slider"},
708
+ {title: "Stroke", key: "stroke", value: "#FF00AA", type: "colorpicker"},
709
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
710
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
711
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
712
+ ],
713
+ category: [
714
+ "Overlap Studies"
715
+ ],
716
+ description: "The Kaufman's Adaptive Moving Average (KAMA) Developed by Perry Kaufman, is a moving average designed to account for market noise or volatility. This trend-following indicator can be used to identify the overall trend, time turning points and filter price movements."
717
+ },
718
+ t3: {
719
+ id: "t3",
720
+ long_display_name: "Triple Exponential Moving Average (T3)",
721
+ short_display_name: "T3",
722
+ onChartIndicator: true,
723
+ editable: true,
724
+ fields: [
725
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
726
+ {title: "Volume Factor", key: "vFactor", value: 0.7, min: 0, max: 1, step: 0.01, type: "slider"},
727
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
728
+ {title: "Stroke", key: "stroke", value: "#FFAA00", type: "colorpicker"},
729
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
730
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
731
+ ],
732
+ category: [
733
+ "Overlap Studies"
734
+ ],
735
+ description: "The Triple Exponential Moving Average (T3) by Tim Tillson attempts to offers a moving average with better smoothing then traditional exponential moving average."
736
+ },
737
+ hma: {
738
+ id: "hma",
739
+ long_display_name: "Hull Moving Average",
740
+ short_display_name: "HMA",
741
+ onChartIndicator: true,
742
+ editable: true,
743
+ fields: [
744
+ {title: "Period", key: "period", min: 1, max: 50, value: 20, type: "slider"},
745
+ {title: "MA Type", key: "maType", value: "SMA", type: "matype"},
746
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
747
+ {title: "Stroke", key: "stroke", value: "#031634", type: "colorpicker"},
748
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
749
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
750
+ ],
751
+ category: [
752
+ "Overlap Studies"
753
+ ],
754
+ description: "The Hull Moving Average solves the age old dilemma of making a moving average more responsive to current price activity whilst maintaining curve smoothness. In fact the HMA almost eliminates lag altogether and manages to improve smoothing at the same time."
755
+ },
756
+ lwma: {
757
+ id: "lwma",
758
+ long_display_name: "Linearly Weighted Moving Average",
759
+ short_display_name: "LWMA",
760
+ onChartIndicator: true,
761
+ editable: true,
762
+ fields: [
763
+ {title: "Period", key: "period", min: 1, max: 50, value: 20, type: "slider"},
764
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
765
+ {title: "Stroke", key: "stroke", value: "#033649", type: "colorpicker"},
766
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
767
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
768
+ ],
769
+ category: [
770
+ "Overlap Studies"
771
+ ],
772
+ description: "Like the EMA, the LWMA assigns more meaning to the recent prices and less to the closing price from the period's beginning. Thus they are faster at detecting a trend reversal, though it they can be more prone to market noise."
773
+ },
774
+ smma: {
775
+ id: "smma",
776
+ long_display_name: "Smoothed Moving Average",
777
+ short_display_name: "SMMA",
778
+ onChartIndicator: true,
779
+ editable: true,
780
+ fields: [
781
+ {title: "Period", key: "period", min: 1, max: 50, value: 20, type: "slider"},
782
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
783
+ {title: "Stroke", key: "stroke", value: "#036564", type: "colorpicker"},
784
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
785
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
786
+ ],
787
+ category: [
788
+ "Overlap Studies"
789
+ ],
790
+ description: "A Smoothed Moving Average is sort of a blend between a Simple Moving Average and an Exponential Moving Average, only with a longer period applied."
791
+ },
792
+ mama: {
793
+ id: "mama",
794
+ long_display_name: "Mesa Adaptive Moving Average",
795
+ short_display_name: "MAMA",
796
+ onChartIndicator: true,
797
+ editable: true,
798
+ fields: [
799
+ {title: "Fast Limit", key: "fastLimit", value: 0.5, min: 0, max: 1, step: 0.01, type: "slider"},
800
+ {title: "Slow Limit", key: "slowLimit", value: 0.05, min: 0, max: 1, step: 0.01, type: "slider"},
801
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
802
+ {title: "Stroke", key: "stroke", value: "#CDB380", type: "colorpicker"},
803
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
804
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
805
+ ],
806
+ category: [
807
+ "Overlap Studies"
808
+ ],
809
+ description: "The MESA Adaptive Moving Average is developed by John Ehlers of Mesa Software. This trend-following indicator can be used to identify the overall trend, time turning points and filter price movements."
810
+ },
811
+ cdlupsidegap2crows: {
812
+ id: "cdlupsidegap2crows",
813
+ long_display_name: "Upside/Downside Gap Two Crows",
814
+ short_display_name: "CDLUPSIDEGAP2CROWS",
815
+ fields: [ ],
816
+ cdl_indicator: {
817
+ image: "upside_gap_two_crows"
818
+ },
819
+ category: [
820
+ "Pattern Recognition"
821
+ ],
822
+ description: "Look for a tall white candle in an upward price trend. Following that, a black candle has a body that gaps above the prior candle's body. The last day is another black candle, but this one engulfs the previous bearish candle but closes above first bar's open."
823
+ },
824
+ cdlxsidegap3methods: {
825
+ id: "cdlxsidegap3methods",
826
+ long_display_name: "Upside/Downside Gap Three Methods",
827
+ short_display_name: "CDLXSIDEGAP3METHODS",
828
+ fields: [ ],
829
+ cdl_indicator: {
830
+ image: "gap_three_methods"
831
+ },
832
+ category: [
833
+ "Pattern Recognition"
834
+ ],
835
+ description: "It has a long white candle, followed by another that opens above the first (gaps up), followed by a downward black candlestick that opens below the close of the second day (gaps down) and has a low below the close of the first day. The upward trend is expected to continue."
836
+ },
837
+ cdltasukigap: {
838
+ id: "cdltasukigap",
839
+ long_display_name: "Tasuki Gap",
840
+ short_display_name: "CDLTASUKIGAP",
841
+ fields: [ ],
842
+ cdl_indicator: {
843
+ image: "tasuki_gap"
844
+ },
845
+ category: [
846
+ "Pattern Recognition"
847
+ ],
848
+ description: "The Tasuki Gap pattern is made up of three candlesticks, the first bar is a red candlestick within a defined downtrend, the second bar is another red candlestick that has gapped below the close of the previous bar and the last bar is a white candlestick that closes within the gap of the first two bars."
849
+ },
850
+ cdlpiercing: {
851
+ id: "cdlpiercing",
852
+ long_display_name: "Piercing Pattern",
853
+ short_display_name: "CDLPIERCING",
854
+ fields: [ ],
855
+ cdl_indicator: {
856
+ image: "piercing_pattern"
857
+ },
858
+ category: [
859
+ "Pattern Recognition"
860
+ ],
861
+ description: "The piercing pattern is made up of two candlesticks, the first black and the second white.Both candlesticks should have fairly large bodies and the shadows are usually, but not necessarily, small or nonexistent. The white candlestick must open below the previous close and close above the midpoint of the black candlestick's body. A close below the midpoint might qualify as a reversal, but would not be considered as bullish."
862
+ },
863
+ cdlbelthold: {
864
+ id: "cdlbelthold",
865
+ long_display_name: "Belt-hold ",
866
+ short_display_name: "CDLBELTHOLD",
867
+ fields: [ ],
868
+ cdl_indicator: {
869
+ image: "belt_hold"
870
+ },
871
+ category: [
872
+ "Pattern Recognition"
873
+ ],
874
+ description: "In Bullish Belt Hold After a stretch of bearish candlesticks, a bullish or white candlestick forms. The opening price, which becomes the low for the day, is significantly lower then the closing price. This results in a long white candlestick with a short upper shadow and no lower shadow. In Berish Belt Hold, a bearish or black candlestick occurs, the opening price, which becomes the high for the day, is higher than the close of the previous day, resulting in a long black candlestick with a short lower shadow and no upper shadow."
875
+ },
876
+ cdldarkcloudcover: {
877
+ id: "cdldarkcloudcover",
878
+ long_display_name: "Dark Cloud Cover ",
879
+ short_display_name: "CDLDARKCLOUDCOVER",
880
+ fields: [ ],
881
+ cdl_indicator: {
882
+ image: "dark_cloud_cover"
883
+ },
884
+ category: [
885
+ "Pattern Recognition"
886
+ ],
887
+ description: "Dark Cloud Cover is a bearish candlestick reversal pattern that occurs when a red bearish candlestick (close price below open price) on day 2 closes below the middle of day 1 bullish candlestick (close price above open price). We will be using this pattern to sell rallies in a bearish currency market."
888
+ },
889
+ cdlgapsidesidewhite: {
890
+ id: "cdlgapsidesidewhite",
891
+ long_display_name: "Up/Down-Gap Side-By-Side White Lines",
892
+ short_display_name: "CDLGAPSIDESIDEWHITE",
893
+ fields: [ ],
894
+ cdl_indicator: {
895
+ image: "side_by_side_white_line"
896
+ },
897
+ category: [
898
+ "Pattern Recognition"
899
+ ],
900
+ description: "Side by side white lines candlestick pattern is a triple pattern. Bullish pattern: In an upward trend, the first candlestick is followed by another upward that opens above the close of the first (gap up), that is followed by a third upward candlestick that opens below the close of the second (gap down). Bearish pattern: During a downtrend, the first candlestick is downward, followed by an upward candlestick that opens below the close of the first one (gap down), followed by an upward candlestick that opens below the close of the second one. This pattern indicates the continuation of a downtrend."
901
+ },
902
+ cdltakuri: {
903
+ id: "cdltakuri",
904
+ long_display_name: "Takuri (Dragonfly Doji with very long lower shadow)",
905
+ short_display_name: "CDLTAKURI",
906
+ fields: [ ],
907
+ cdl_indicator: {
908
+ image: "takuri_line"
909
+ },
910
+ category: [
911
+ "Pattern Recognition"
912
+ ],
913
+ description: "In a downtrend, one small short body candlestick has a long lower shadow at least three times the real body, and little or no upper shadow. Confirmation from prices closing higher the next day."
914
+ },
915
+ cdlharami: {
916
+ id: "cdlharami",
917
+ long_display_name: "Harami Pattern",
918
+ short_display_name: "CDLHARAMI",
919
+ fields: [ ],
920
+ cdl_indicator: {
921
+ image: "harami_pattern"
922
+ },
923
+ category: [
924
+ "Pattern Recognition"
925
+ ],
926
+ description: "A candlestick chart pattern in which a large candlestick is followed by a smaller candlestick whose body is located within the vertical range of the larger body. In terms of candlestick colors, the bullish harami is a downtrend of negative-colored (black) candlesticks engulfing a small positive (white) candlestick, giving a sign of a reversal of the downward trend."
927
+ },
928
+ cdlhammer: {
929
+ id: "cdlhammer",
930
+ long_display_name: "Hammer",
931
+ short_display_name: "CDLHAMMER",
932
+ fields: [ ],
933
+ cdl_indicator: {
934
+ image: "hammer"
935
+ },
936
+ category: [
937
+ "Pattern Recognition"
938
+ ],
939
+ description: "The Hammer formation is created when the open, high, and close are roughly the same price.Also, there is a long lower shadow, twice the length as the real body."
940
+ },
941
+ cdlhangingman: {
942
+ id: "cdlhangingman",
943
+ long_display_name: "Hanging Man",
944
+ short_display_name: "CDLHANGINGMAN",
945
+ fields: [ ],
946
+ cdl_indicator: {
947
+ image: "hanging_man"
948
+ },
949
+ category: [
950
+ "Pattern Recognition"
951
+ ],
952
+ description: "The Hanging Man formation, just like the Hammer, is created when the open, high, and close are roughly the same price. Also, there is a long lower shadow, which should be at least twice the length of the real body."
953
+ },
954
+ cdlinvertedhammer: {
955
+ id: "cdlinvertedhammer",
956
+ long_display_name: "Inverted Hammer",
957
+ short_display_name: "CDLINVERTEDHAMMER",
958
+ fields: [ ],
959
+ cdl_indicator: {
960
+ image: "inverted_hammer"
961
+ },
962
+ category: [
963
+ "Pattern Recognition"
964
+ ],
965
+ description: "The Inverted Hammer occurs mainly at the bottom of downtrends when the open, low, and close are roughly the same price. Also, there is a long upper shadow, which should be at least twice the length of the real body."
966
+ },
967
+ cdlgravestonedoji: {
968
+ id: "cdlgravestonedoji",
969
+ long_display_name: "Gravestone Doji",
970
+ short_display_name: "CDLGRAVESTONEDOJI",
971
+ fields: [ ],
972
+ cdl_indicator: {
973
+ image: "gravestone_doji"
974
+ },
975
+ category: [
976
+ "Pattern Recognition"
977
+ ],
978
+ description: "The Gravestone Doji is created when the open, low, and close are the same or about the same price (Where the open, low, and close are exactly the same price is quite rare). The most important part of the Graveston Doji is the long upper shadow."
979
+ },
980
+ cdlharamicross: {
981
+ id: "cdlharamicross",
982
+ long_display_name: "Harami Cross Pattern",
983
+ short_display_name: "CDLHARAMICROSS",
984
+ fields: [ ],
985
+ cdl_indicator: {
986
+ image: "harami_cross"
987
+ },
988
+ category: [
989
+ "Pattern Recognition"
990
+ ],
991
+ description: "A trend indicated by a large candlestick followed by a doji that is located within the top and bottom of the candlestick's body. This indicates that the previous trend is about to reverse."
992
+ },
993
+ cdlstalledpattern: {
994
+ id: "cdlstalledpattern",
995
+ long_display_name: "Stalled Pattern",
996
+ short_display_name: "CDLSTALLEDPATTERN",
997
+ fields: [ ],
998
+ cdl_indicator: {
999
+ image: "stalled_pattern"
1000
+ },
1001
+ category: [
1002
+ "Pattern Recognition"
1003
+ ],
1004
+ description: "Bearish: This is an end-of-trend pattern composed of three candlesticks in an uptrend. The second candlestick must open close to the close of the previous day. The last candlestick should be short and can form an upside gap. There could also be a selling shadow.The pattern represents a weakness in a rise with a risk of consolidation and possible reversal. Bullish: This is an end-of-trend pattern composed of three candlesticks in a downtrend. The second candlestick must open close to the close of the previous day. the last candlestick must be shore. The pattern represents a weakness and consolidation and a possible reversal in trend."
1005
+ },
1006
+ cdleveningstar: {
1007
+ id: "cdleveningstar",
1008
+ long_display_name: "Evening Star",
1009
+ short_display_name: "CDLEVENINGSTAR",
1010
+ fields: [ ],
1011
+ cdl_indicator: {
1012
+ image: "evening_star"
1013
+ },
1014
+ category: [
1015
+ "Pattern Recognition"
1016
+ ],
1017
+ description: "A bearish candlestick pattern consisting of three candles that have demonstrated the following characteristics, the first bar is a large white candlestick located within an uptrend, the middle bar is a small-bodied candle (red or white) that closes above the first white bar, the last bar is a large red candle that opens below the middle candle and closes near the center of the first bar's body."
1018
+ },
1019
+ cdlhighwave: {
1020
+ id: "cdlhighwave",
1021
+ long_display_name: "High-Wave Candle",
1022
+ short_display_name: "CDLHIGHWAVE",
1023
+ fields: [ ],
1024
+ cdl_indicator: {
1025
+ image: "high_wave"
1026
+ },
1027
+ category: [
1028
+ "Pattern Recognition"
1029
+ ],
1030
+ description: "A candlestick with very long upper and lower shadows and a small real body on a Japanese candlestick chart. It shows that the market is losing its direction bias that it had before this candle appeared."
1031
+ },
1032
+ cdlhikkake: {
1033
+ id: "cdlhikkake",
1034
+ long_display_name: "Hikkake Pattern",
1035
+ short_display_name: "CDLHIKKAKE",
1036
+ fields: [ ],
1037
+ cdl_indicator: {
1038
+ image: "hikkake"
1039
+ },
1040
+ category: [
1041
+ "Pattern Recognition"
1042
+ ],
1043
+ description: "In Bullish Hikkake Pattern After the downward move, the bullish candle reaches above the range of the three preceding candles and most likely triggers a number of stop loss orders. This additional buying leads to a more distinct upward movement. In Bearish Hikkake Pattern After an upward move, the bearish candle reaches below the range of the three preceding , which most likely triggers a number of stop loss orders. This additional selling leads to a more distinct downward move."
1044
+ },
1045
+ cdlhomingpigeon: {
1046
+ id: "cdlhomingpigeon",
1047
+ long_display_name: "Homing Pigeon",
1048
+ short_display_name: "CDLHOMINGPIGEON",
1049
+ fields: [ ],
1050
+ cdl_indicator: {
1051
+ image: "homing_pigeon"
1052
+ },
1053
+ category: [
1054
+ "Pattern Recognition"
1055
+ ],
1056
+ description: "The homing pigeon is a bullish candlestick reversal pattern comprised of two red candlesticks. The first candle is a tall black one that appears in a downward price trend. The second day is also a black candle, but it is smaller and fits inside the body of the first black candle."
1057
+ },
1058
+ cdltristar: {
1059
+ id: "cdltristar",
1060
+ long_display_name: "Tristar Pattern",
1061
+ short_display_name: "CDLTRISTAR",
1062
+ fields: [ ],
1063
+ cdl_indicator: {
1064
+ image: "tristar"
1065
+ },
1066
+ category: [
1067
+ "Pattern Recognition"
1068
+ ],
1069
+ description: "The Bullish Three Star appears after a downtrend and it consists of three consecutive Doji, in which the second Doji gaps below the other two Doji. The Bearish Three Star appears after a uptrend and it consists of three consecutive Doji, in which the second Doji gaps above the other two Doji."
1070
+ },
1071
+ cdllongline: {
1072
+ id: "cdllongline",
1073
+ long_display_name: "Long Line Candle",
1074
+ short_display_name: "CDLLONGLINE",
1075
+ fields: [ ],
1076
+ cdl_indicator: {
1077
+ image: "long_line_candle"
1078
+ },
1079
+ category: [
1080
+ "Pattern Recognition"
1081
+ ],
1082
+ description: "A candlestick with a long black body (long line) represents a bearish force in the market. The price of the stock was up and down in a wide range, opening near the high and closing near the low of the day. One with a long white line represents a bullish force in the market. The price of the stock was up and down in a wide range, opening near the low of the day and closing near the high."
1083
+ },
1084
+ cdlmarubozu: {
1085
+ id: "cdlmarubozu",
1086
+ long_display_name: "Marubozu",
1087
+ short_display_name: "CDLMARUBOZU",
1088
+ fields: [ ],
1089
+ cdl_indicator: {
1090
+ image: "marubozu"
1091
+ },
1092
+ category: [
1093
+ "Pattern Recognition"
1094
+ ],
1095
+ description: "A medium to long bullish or bearish candlestick with the key defining trait being no head or tail shadows."
1096
+ },
1097
+ cdlkicking: {
1098
+ id: "cdlkicking",
1099
+ long_display_name: "Kicking",
1100
+ short_display_name: "CDLKICKING",
1101
+ fields: [ ],
1102
+ cdl_indicator: {
1103
+ image: "kicking"
1104
+ },
1105
+ category: [
1106
+ "Pattern Recognition"
1107
+ ],
1108
+ description: "Kicking patterns on a candlestick chart are formed when there are two marubozu - one white and one black - with a gap between them. Bullish kicking patterns would present as a black or filled candlestick without any wicks (shadows) followed by a gap higher with a white or hollow candlestick that is also without wicks."
1109
+ },
1110
+ cdlmatchinglow: {
1111
+ id: "cdlmatchinglow",
1112
+ long_display_name: "Matching Low",
1113
+ short_display_name: "CDLMATCHINGLOW",
1114
+ fields: [ ],
1115
+ cdl_indicator: {
1116
+ image: "matching_low"
1117
+ },
1118
+ category: [
1119
+ "Pattern Recognition"
1120
+ ],
1121
+ description: "This pattern occurs when two black days appear with equal closes in a downtrend. Matching Low indicates a bottom has been made, even though the new low was tested and there was no follow through, which is indicative of a good support price."
1122
+ },
1123
+ cdlladderbottom: {
1124
+ id: "cdlladderbottom",
1125
+ long_display_name: "Ladder Bottom",
1126
+ short_display_name: "CDLLADDERBOTTOM",
1127
+ fields: [ ],
1128
+ cdl_indicator: {
1129
+ image: "ladder_bottom"
1130
+ },
1131
+ category: [
1132
+ "Pattern Recognition"
1133
+ ],
1134
+ description: "The first three days of the Bullish Ladder Bottom are strong black candlesticks with consecutive lower opens and lower closes. The fourth day is a short black candlestick, but it opens higher and trades higher, leaving a long upper shadow, then closes making a new low. The fifth day is a strong white candlestick that makes a body gap with the fourth day."
1135
+ },
1136
+ cdlrisefall3methods: {
1137
+ id: "cdlrisefall3methods",
1138
+ long_display_name: "Rising/Falling Three Methods",
1139
+ short_display_name: "CDLRISEFALL3METHODS",
1140
+ fields: [ ],
1141
+ cdl_indicator: {
1142
+ image: "rising_falling_three_methods"
1143
+ },
1144
+ category: [
1145
+ "Pattern Recognition"
1146
+ ],
1147
+ description: "The Three Methods pattern is a trend continuation pattern that can appear in an uptrend or a down trend. In an uptrend it is called the rising three methods pattern and in a downtrend it is called the falling three methods pattern. The three methods pattern consists of at least five candlesticks."
1148
+ },
1149
+ cdlidentical3crows: {
1150
+ id: "cdlidentical3crows",
1151
+ long_display_name: "Identical Three Crows",
1152
+ short_display_name: "CDLIDENTICAL3CROWS",
1153
+ fields: [ ],
1154
+ cdl_indicator: {
1155
+ image: "identical_three_crows"
1156
+ },
1157
+ category: [
1158
+ "Pattern Recognition"
1159
+ ],
1160
+ description: "In an uptrend three successive days opens at or near the previous day's close and close down on the day. This pattern is more severe than the Three Black Crows pattern and thus has a higher reliability as a reversal pattern."
1161
+ },
1162
+ cdlmorningstar: {
1163
+ id: "cdlmorningstar",
1164
+ long_display_name: "Morning Star",
1165
+ short_display_name: "CDLMORNINGSTAR",
1166
+ fields: [ ],
1167
+ cdl_indicator: {
1168
+ image: "morning_star"
1169
+ },
1170
+ category: [
1171
+ "Pattern Recognition"
1172
+ ],
1173
+ description: "A bullish candlestick pattern that consists of three candles, the first bar is a large red candlestick located within a defined downtrend, the second bar is a small-bodied candle (either red or white) that closes below the first red bar and the last bar is a large white candle that opens above the middle candle and closes near the center of the first bar's body."
1174
+ },
1175
+ cdlspinningtop: {
1176
+ id: "cdlspinningtop",
1177
+ long_display_name: "Spinning Top",
1178
+ short_display_name: "CDLSPINNINGTOP",
1179
+ fields: [ ],
1180
+ cdl_indicator: {
1181
+ image: "spinning_top"
1182
+ },
1183
+ category: [
1184
+ "Pattern Recognition"
1185
+ ],
1186
+ description: "A Spinning Top Candlestick is a bullish or bearish candlestick with a small body. The length of the head and tail shadows can vary. Like a Doji Candlestick it represents a point of indecision with buyers and seller matched."
1187
+ },
1188
+ cdldragonflydoji: {
1189
+ id: "cdldragonflydoji",
1190
+ long_display_name: "Dragonfly Doji",
1191
+ short_display_name: "CDLDRAGONFLYDOJI",
1192
+ fields: [ ],
1193
+ cdl_indicator: {
1194
+ image: "dragonfly_doji"
1195
+ },
1196
+ category: [
1197
+ "Pattern Recognition"
1198
+ ],
1199
+ description: "The Dragonfly Doji is created when the open, high, and close are the same or about the same price (Where the open, high, and close are exactly the same price is quite rare).The most important part of the Dragonfly Doji is the long lower shadow."
1200
+ },
1201
+ cdllongleggeddoji: {
1202
+ id: "cdllongleggeddoji",
1203
+ long_display_name: "Long Legged Doji",
1204
+ short_display_name: "CDLLONGLEGGEDDOJI",
1205
+ fields: [ ],
1206
+ cdl_indicator: {
1207
+ image: "long_legged_doji"
1208
+ },
1209
+ category: [
1210
+ "Pattern Recognition"
1211
+ ],
1212
+ description: "Long-legged doji have long upper and lower shadows that are almost equal in length. These doji reflect a great amount of indecision in the market. Long-legged doji indicate that prices traded well above and below the session's opening level, but closed virtually even with the open. After a whole lot of yelling and screaming, the end result showed little change from the initial open."
1213
+ },
1214
+ cdleveningdojistar: {
1215
+ id: "cdleveningdojistar",
1216
+ long_display_name: "Evening Doji Star",
1217
+ short_display_name: "CDLEVENINGDOJISTAR",
1218
+ fields: [ ],
1219
+ cdl_indicator: {
1220
+ image: "evening_doji_star"
1221
+ },
1222
+ category: [
1223
+ "Pattern Recognition"
1224
+ ],
1225
+ description: "A Evening Doji Star consists of a long bullish candle, followed by a Doji that has gapped above it, then a third bearish candle that closes well within the body of the first candle and in doing so confirming the reversal. It is considered a strong bearish price reversal candlestick pattern."
1226
+ },
1227
+ cdlbreakaway: {
1228
+ id: "cdlbreakaway",
1229
+ long_display_name: "Breakaway",
1230
+ short_display_name: "CDLBREAKAWAY",
1231
+ fields: [ ],
1232
+ cdl_indicator: {
1233
+ image: "breakaway_pattern"
1234
+ },
1235
+ category: [
1236
+ "Pattern Recognition"
1237
+ ],
1238
+ description: "The breakaway pattern begins with a long candle representing the current trend. The following candle is the same color and it gaps away from that first long candle. While the third day’s candle can be either color, it will not show a change in the current trend. The fourth day continues the trend and therefore continues to produce the same color candles. The fifth day however, reverses the trend. Please note that it only opens slightly the opposite of the current trend and it continues in the same direction to where it then closes in the gap area."
1239
+ },
1240
+ cdladvanceblock: {
1241
+ id: "cdladvanceblock",
1242
+ long_display_name: "Advance Block",
1243
+ short_display_name: "CDLADVANCEBLOCK",
1244
+ fields: [ ],
1245
+ cdl_indicator: {
1246
+ image: "advance_block"
1247
+ },
1248
+ category: [
1249
+ "Pattern Recognition"
1250
+ ],
1251
+ description: "Three white days occur. Each successive day opens within the body of the previous day and closes above the previous day. The bodies of the candles get progressively smaller with the upper shadows of day 2 and 3 getting progressively longer."
1252
+ },
1253
+ cdlcounterattack: {
1254
+ id: "cdlcounterattack",
1255
+ long_display_name: "Counterattack",
1256
+ short_display_name: "CDLCOUNTERATTACK",
1257
+ fields: [ ],
1258
+ cdl_indicator: {
1259
+ image: "counterattack"
1260
+ },
1261
+ category: [
1262
+ "Pattern Recognition"
1263
+ ],
1264
+ description: "A bearish counterattack is a long white candle in an uptrend, followed by a long black candle. Closing prices of both candles are at the same price level. A bullish counterattack is a long black candle in an downtrend, followed by a long white candle. Closing prices of both candles are at the same price level."
1265
+ },
1266
+ cdlmorningdojistar: {
1267
+ id: "cdlmorningdojistar",
1268
+ long_display_name: "Morning Doji Star",
1269
+ short_display_name: "CDLMORNINGDOJISTAR",
1270
+ fields: [ ],
1271
+ cdl_indicator: {
1272
+ image: "morning_doji_star"
1273
+ },
1274
+ category: [
1275
+ "Pattern Recognition"
1276
+ ],
1277
+ description: "A bullish candlestick pattern that consists of three candles, the first bar is a large red candlestick located within a defined downtrend, the second bar is a small-bodied candle (either red or white) that closes below the first red bar., he last bar is a large white candle that opens above the middle candle and closes near the center of the first bar's body."
1278
+ },
1279
+ cdlinneck: {
1280
+ id: "cdlinneck",
1281
+ long_display_name: "In-Neck Pattern",
1282
+ short_display_name: "CDLINNECK",
1283
+ fields: [ ],
1284
+ cdl_indicator: {
1285
+ image: "in_neck"
1286
+ },
1287
+ category: [
1288
+ "Pattern Recognition"
1289
+ ],
1290
+ description: "The Bearish I-Neck Pattern occurs after a downtrend when first day is a long red candle and the second day is a blue day, opening below the low of the first day and closing barely into the body of the first day."
1291
+ },
1292
+ cdlonneck: {
1293
+ id: "cdlonneck",
1294
+ long_display_name: "On-Neck Pattern",
1295
+ short_display_name: "CDLONNECK",
1296
+ fields: [ ],
1297
+ cdl_indicator: {
1298
+ image: "on_neck"
1299
+ },
1300
+ category: [
1301
+ "Pattern Recognition"
1302
+ ],
1303
+ description: "The Bearish On-Neck Pattern occurs after a downtrend when a long black day is followed by a long white day that gaps down at the open and closes below the close of the black day."
1304
+ },
1305
+ cdlrickshawman: {
1306
+ id: "cdlrickshawman",
1307
+ long_display_name: "Rickshaw Man",
1308
+ short_display_name: "CDLRICKSHAWMAN",
1309
+ fields: [ ],
1310
+ cdl_indicator: {
1311
+ image: "rickshaw_man"
1312
+ },
1313
+ category: [
1314
+ "Pattern Recognition"
1315
+ ],
1316
+ description: "The Rickshaw Man has unusually tall upper and lower shadows, a body in which the opening and closing prices are about the same, and the body is near the middle of the candlestick."
1317
+ },
1318
+ cdlunique3river: {
1319
+ id: "cdlunique3river",
1320
+ long_display_name: "Unique 3 River",
1321
+ short_display_name: "CDLUNIQUE3RIVER",
1322
+ fields: [ ],
1323
+ cdl_indicator: {
1324
+ image: "three_river"
1325
+ },
1326
+ category: [
1327
+ "Pattern Recognition"
1328
+ ],
1329
+ description: "Unique Three River Bottom is a bullish candlestick pattern made up of three candles: The 1st candle has a long and bearish body, the 2nd candle is a hammer, and its body is inside the 1st bar's body, the 3rd candle is small and bullish, its Close price is lower than 2nd bar's."
1330
+ },
1331
+ cdlseparatinglines: {
1332
+ id: "cdlseparatinglines",
1333
+ long_display_name: "Separating Lines",
1334
+ short_display_name: "CDLSEPARATINGLINES",
1335
+ fields: [ ],
1336
+ cdl_indicator: {
1337
+ image: "separating_lines"
1338
+ },
1339
+ category: [
1340
+ "Pattern Recognition"
1341
+ ],
1342
+ description: "A bearish separating line is a bearish continuation pattern. It is the exact opposite of the bullish separating line. There are two components to the bearish separating line: The first day is a green candlestick and the second day gaps down, opens at the first candlestick's open and closes weakly."
1343
+ },
1344
+ cdlmathold: {
1345
+ id: "cdlmathold",
1346
+ long_display_name: "Mat Hold",
1347
+ short_display_name: "CDLMATHOLD",
1348
+ fields: [ ],
1349
+ cdl_indicator: {
1350
+ image: "mat_hold"
1351
+ },
1352
+ category: [
1353
+ "Pattern Recognition"
1354
+ ],
1355
+ description: "A bullish candlestick pattern that consists of five candles, the first day is a long white day, the second day gaps up and is a black day, the second, third, and fourth days have small real bodies and follow a brief downtrend pattern, but stay within the range of the first day and the fifth day is a long white day that closes above the close of the first day."
1356
+ },
1357
+ cdlsticksandwich: {
1358
+ id: "cdlsticksandwich",
1359
+ long_display_name: "Stick Sandwich",
1360
+ short_display_name: "CDLSTICKSANDWICH",
1361
+ fields: [ ],
1362
+ cdl_indicator: {
1363
+ image: "stick_sandwich"
1364
+ },
1365
+ category: [
1366
+ "Pattern Recognition"
1367
+ ],
1368
+ description: "A technical trading pattern in which three candlesticks form what appears to be a sandwich on the trader's screen. Stick sandwiches will have the middle candlestick oppositely colored of the candlesticks on either side of it, both of which will have a larger trading range than the middle candlestick. Stick sandwich patterns can occur in both bearish and bullish indications."
1369
+ },
1370
+ cdlkickingbylength: {
1371
+ id: "cdlkickingbylength",
1372
+ long_display_name: "Kicking - bull/bear determined by the longer marubozu",
1373
+ short_display_name: "CDLKICKINGBYLENGTH",
1374
+ fields: [ ],
1375
+ cdl_indicator: {
1376
+ image: "kicking"
1377
+ },
1378
+ category: [
1379
+ "Pattern Recognition"
1380
+ ],
1381
+ description: "Kicking patterns on a candlestick chart are formed when there are two long marubozu - one white and one black - with a gap between them. Bullish kicking patterns would present as a black or filled candlestick without any wicks (shadows) followed by a gap higher with a white or hollow candlestick that is also without wicks."
1382
+ },
1383
+ stddev: {
1384
+ id: "stddev",
1385
+ long_display_name: "Standard Deviation",
1386
+ short_display_name: "STDDEV",
1387
+ editable: true,
1388
+ fields: [
1389
+ {title: "Period", key: "period", min: 1, max: 200, value: 20, type: "slider"},
1390
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1391
+ {title: "Stroke", key: "stroke", value: "#5A0397", type: "colorpicker"},
1392
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
1393
+ ],
1394
+ levels:{
1395
+ fields: [
1396
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1397
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1398
+ {title: "Stroke", key: "color", value: "#5A0397", type: "colorpicker"},
1399
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1400
+ ],
1401
+ values: [ ]
1402
+ },
1403
+ category: [
1404
+ "Statistical Functions"
1405
+ ],
1406
+ description: "Standard Deviation is a statistical calculation used to measure the variability. In trading this value is known as volatility. A low standard deviation indicates that the data points tend to be very close to the mean, whereas high standard deviation indicates that the data points are spread out over a large range of values."
1407
+ },
1408
+ ppo: {
1409
+ id: "ppo",
1410
+ long_display_name: "Percentage Price Oscillator",
1411
+ short_display_name: "PPO",
1412
+ editable: true,
1413
+ fields: [
1414
+ {title: "Price", key: "appliedTo", value: 3, type: "price"},
1415
+ {title: "Fast Period", key: "fastPeriod", min: 1, max: 50, value: 12, type: "slider"},
1416
+ {title: "Slow Period", key: "slowPeriod", min: 1, max: 50, value: 26, type: "slider"},
1417
+ {title: "Signal Period", key: "signalPeriod", min: 1, max: 50, value: 9, type: "slider"},
1418
+ {title: "Fast MA Type", key: "fastMaType", value: "SMA", type: "matype"},
1419
+ {title: "Slow MA Type", key: "slowMaType", value: "SMA", type: "matype"},
1420
+ {title: "Signal MA Type", key: "signalMaType", value: "SMA", type: "matype"},
1421
+ {title: "PPO Line Stroke", key: "ppoStroke", value: "#2a277a", type: "colorpicker"},
1422
+ {title: "Signal Line Stroke", key: "signalLineStroke", value: "#ff0000", type: "colorpicker"},
1423
+ {title: "Histogram Color", key: "ppoHstgrmColor", value: "#7e9fc9", type: "colorpicker"},
1424
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1425
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
1426
+ ],
1427
+ category: [
1428
+ "Momentum Indicators"
1429
+ ],
1430
+ description: "The Percentage Price Oscillator (PPO) is a momentum oscillator that measures the difference between two moving averages as a percentage of the larger moving average."
1431
+ },
1432
+ trange: {
1433
+ id: "trange",
1434
+ long_display_name: "True Range",
1435
+ short_display_name: "TRANGE",
1436
+ editable: true,
1437
+ fields: [
1438
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
1439
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1440
+ {title: "Stroke", key: "stroke", value: "#890357", type: "colorpicker"},
1441
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1442
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1443
+ ],
1444
+ levels:{
1445
+ fields: [
1446
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1447
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1448
+ {title: "Stroke", key: "color", value: "#890357", type: "colorpicker"},
1449
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1450
+ ],
1451
+ values: [
1452
+ {color: "#890357", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1453
+ {color: "#890357", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1454
+ ]
1455
+ },
1456
+ category: [
1457
+ "Volatility Indicators"
1458
+ ],
1459
+ description: "The Average True Range (TRANGE) study measures the size of the period’s range, and takes into account any gap from the close of the previous period."
1460
+ },
1461
+ stochrsi: {
1462
+ id: "stochrsi",
1463
+ long_display_name: "Stochastic Relative Strength Index",
1464
+ short_display_name: "STOCHRSI",
1465
+ editable: true,
1466
+ fields: [
1467
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
1468
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1469
+ {title: "Stroke", key: "stroke", value: "#DEA02D", type: "colorpicker"},
1470
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1471
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1472
+ ],
1473
+ levels:{
1474
+ fields: [
1475
+ {title: "Level", key: "value", min: 0, max: 2, value: 1, step: 0.01, type: "slider"},
1476
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1477
+ {title: "Stroke", key: "color", value: "#DEA02D", type: "colorpicker"},
1478
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1479
+ ],
1480
+ values: [
1481
+ {color: "#DEA02D", dashStyle: "Dash", label: { text: 0.3}, value: 0.3, "width" : 1},
1482
+ {color: "#DEA02D", dashStyle: "Dash", label: { text: 0.7}, value: 0.7, "width" : 1}
1483
+ ]
1484
+ },
1485
+ category: [
1486
+ "Momentum Indicators"
1487
+ ],
1488
+ description: "The Stochastic Relative Strength Index (STOCHRSI) was developed by Tushar Chande and Stanley Kroll, StochRSI is an oscillator that measures the level of RSI relative to its high-low range over a set time period. StochRSI applies the Stochastics formula to RSI values, instead of price values. This makes it an indicator of an indicator. The result is an oscillator that fluctuates between 0 and 1."
1489
+ },
1490
+ mom: {
1491
+ id: "mom",
1492
+ long_display_name: "Momentum",
1493
+ short_display_name: "MOM",
1494
+ editable: true,
1495
+ fields: [
1496
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
1497
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1498
+ {title: "Stroke", key: "stroke", value: "#6299FD", type: "colorpicker"},
1499
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1500
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1501
+ ],
1502
+ levels:{
1503
+ fields: [
1504
+ {title: "Level", key: "value", min: -40, max: 20, value: 0, type: "slider"},
1505
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1506
+ {title: "Stroke", key: "color", value: "#6299FD", type: "colorpicker"},
1507
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1508
+ ],
1509
+ values: [ ]
1510
+ },
1511
+ category: [
1512
+ "Momentum Indicators"
1513
+ ],
1514
+ description: "The Momentum indicator compares where the current price is in relation to where the price was in the past. How far in the past the comparison is made is up to the technical analysis trader. The calculation of Momentum is quite simple (n is the number of periods the technical trader selects): The current price minus the price n-periods ago"
1515
+ },
1516
+ alma: {
1517
+ id: "alma",
1518
+ long_display_name: "Arnaud Legoux Moving Average",
1519
+ short_display_name: "ALMA",
1520
+ editable: true,
1521
+ fields: [
1522
+ {title: "Period", key: "period", min: 1, max: 200, value: 9, type: "slider"},
1523
+ {title: "Offset", key: "offset", min: 0, max: 1, value: 0.85, step: 0.01, type: "slider"},
1524
+ {title: "Sigma", key: "sigma", min: 1, max: 200, value: 6, type: "slider"},
1525
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1526
+ {title: "Stroke", key: "stroke", value: "#1693A5", type: "colorpicker"},
1527
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1528
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1529
+ ],
1530
+ onChartIndicator: true,
1531
+ category: [
1532
+ "Overlap Studies"
1533
+ ],
1534
+ description: "This Moving Average uses curve of the Normal (Gauss) distribution which can be placed by Offset parameter from 0 to 1. This parameter allows regulating the smoothness and high sensitivity of the Moving Average. Sigma is another parameter that is responsible for the shape of the curve coefficients."
1535
+ },
1536
+ aroon: {
1537
+ id: "aroon",
1538
+ long_display_name: "Aroon",
1539
+ short_display_name: "AROON",
1540
+ editable: true,
1541
+ fields: [
1542
+ {title: "Period", key: "period", min: 1, max: 200, value: 25, type: "slider"},
1543
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1544
+ {title: "Aroon Up Stroke", key: "aroonUpStroke", value: "#02AAB0", type: "colorpicker"},
1545
+ {title: "Aroon Down Stroke", key: "aroonDownStroke", value: "#00CDAC", type: "colorpicker"},
1546
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
1547
+ ],
1548
+ levels:{
1549
+ fields: [
1550
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1551
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1552
+ {title: "Stroke", key: "color", value: "#DEA02D", type: "colorpicker"},
1553
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1554
+ ],
1555
+ values: [
1556
+ {color: "#02AAB0", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1557
+ {color: "#00CDAC", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1558
+ ]
1559
+ },
1560
+ category: [
1561
+ "Momentum Indicators"
1562
+ ],
1563
+ description: "Developed by Tushar Chande in 1995, Aroon is an indicator system that determines whether a stock is trending or not and how strong the trend is. There are two separate indicators: Aroon-Up and Aroon-Down. A 25-day Aroon-Up measures the number of days since a 25-day high. A 25-day Aroon-Down measures the number of days since a 25-day low."
1564
+ },
1565
+ aroonosc: {
1566
+ id: "aroonosc",
1567
+ long_display_name: "Aroon Oscillator",
1568
+ short_display_name: "AROONOSC",
1569
+ editable: true,
1570
+ fields: [
1571
+ {title: "Period", key: "period", min: 1, max: 200, value: 25, type: "slider"},
1572
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1573
+ {title: "Stroke", key: "stroke", value: "#7FFF24", type: "colorpicker"},
1574
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
1575
+ ],
1576
+ levels:{
1577
+ fields: [
1578
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1579
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1580
+ {title: "Stroke", key: "color", value: "#7FFF24", type: "colorpicker"},
1581
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1582
+ ],
1583
+ values: [
1584
+ {color: "#7FFF24", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1585
+ {color: "#7FFF24", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1586
+ ]
1587
+ },
1588
+ category: [
1589
+ "Momentum Indicators"
1590
+ ],
1591
+ description: "The Aroon Oscillator is the difference between Aroon-Up and Aroon-Down. These two indicators are usually plotted together for easy comparison, but chartists can also view the difference of these two indicators with the Aroon Oscillator. This indicator fluctuates between -100 and +100 with zero as the middle line."
1592
+ },
1593
+ ao: {
1594
+ id: "ao",
1595
+ long_display_name: "Awesome Oscillator",
1596
+ short_display_name: "AO",
1597
+ editable: true,
1598
+ fields: [
1599
+ {title: "Short Term Period", key: "shortPeriod", min: 5, max: 35, value: 5, type: "slider"},
1600
+ {title: "Long Term Period", key: "longPeriod", min: 5, max: 35, value: 35, type: "slider"},
1601
+ {title: "Short MA Type", key: "shortMaType", value: "SMA", type: "matype"},
1602
+ {title: "Long MA Type", key: "longMaType", value: "SMA", type: "matype"},
1603
+ {title: "Histogram Color For Higher Values", key: "aoHighStroke", value: "#00C176", type: "colorpicker"},
1604
+ {title: "Histogram Color For Lower Values", key: "aoLowStroke", value: "#FF003C", type: "colorpicker"}
1605
+ ],
1606
+ levels:{
1607
+ fields: [
1608
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1609
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1610
+ {title: "Stroke", key: "color", value: "#FF003C", type: "colorpicker"},
1611
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1612
+ ],
1613
+ values: [
1614
+ {color: "#FF003C", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1615
+ {color: "#00C176", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1616
+ ]
1617
+ },
1618
+ category: [
1619
+ "Bill Williams"
1620
+ ],
1621
+ description: "The Awesome Oscillator is an indicator used to measure market momentum. AO calculates the difference of a 34 Period and 5 Period Simple Moving Averages. The Simple Moving Averages that are used are not calculated using closing price but rather each bar's midpoints. AO is generally used to affirm trends or to anticipate possible reversals."
1622
+ },
1623
+ var: {
1624
+ id: "var",
1625
+ long_display_name: "Variance",
1626
+ short_display_name: "VAR",
1627
+ editable: true,
1628
+ fields: [
1629
+ {title: "Period", key: "period", min: 1, max: 200, value: 20, type: "slider"},
1630
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1631
+ {title: "Stroke", key: "stroke", value: "#058789", type: "colorpicker"},
1632
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
1633
+ ],
1634
+ levels:{
1635
+ fields: [
1636
+ {title: "Level", key: "value", min: 0, max: 0.005, value: 0.001, step: 0.0001, type: "slider"},
1637
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1638
+ {title: "Stroke", key: "color", value: "#058789", type: "colorpicker"},
1639
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1640
+ ],
1641
+ values: [ ]
1642
+ },
1643
+ category: [
1644
+ "Statistical Functions"
1645
+ ],
1646
+ description: "The variance and the closely-related standard deviation are measures of how spread out a distribution is. In other words, they are measures of variability. The variance is computed as the average squared deviation of each number from its mean."
1647
+ },
1648
+ cks: {
1649
+ id: "cks",
1650
+ long_display_name: "Chande Kroll Stop",
1651
+ short_display_name: "CKS",
1652
+ onChartIndicator: true,
1653
+ editable: true,
1654
+ fields: [
1655
+ {title: "Period", key: "period", min: 1, max: 200, value: 10, type: "slider"},
1656
+ {title: "Max/Min Period", key: "maxMinPeriod", min: 1, max: 200, value: 20, type: "slider"},
1657
+ {title: "Multiplier", key: "multiplier", min: 1, max: 50, value: 3, type: "slider"},
1658
+ {title: "Long Stop Line Stroke", key: "longStopStroke", value: "#00C176", type: "colorpicker"},
1659
+ {title: "Short Stop Line Stroke", key: "shortStopStroke", value: "#FF003C", type: "colorpicker"},
1660
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1661
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"}
1662
+ ],
1663
+ category: [
1664
+ "Volatility Indicators"
1665
+ ],
1666
+ description: "The Double Exponential Moving Average (CKS) by Patrick Mulloy attempts to remove the inherent lag associated to Moving Averages by placing more weight on recent values."
1667
+ },
1668
+ cc: {
1669
+ id: "cc",
1670
+ long_display_name: "Coppock Curve",
1671
+ short_display_name: "CC",
1672
+ editable: true,
1673
+ fields: [
1674
+ {title: "Short ROC Period", key: "shortRocPeriod", min: 1, max: 200, value: 11, type: "slider"},
1675
+ {title: "Long ROC Period", key: "longRocPeriod", min: 1, max: 200, value: 14, type: "slider"},
1676
+ {title: "WMA Period", key: "wmaPeriod", min: 1, max: 200, value: 10, type: "slider"},
1677
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1678
+ {title: "Stroke", key: "stroke", value: "#503D2E", type: "colorpicker"},
1679
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1680
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1681
+ ],
1682
+ levels:{
1683
+ fields: [
1684
+ {title: "Level", key: "value", min: -0.5, max: 0.5, value: 0, step: 0.01, type: "slider"},
1685
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1686
+ {title: "Stroke", key: "color", value: "#503D2E", type: "colorpicker"},
1687
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1688
+ ],
1689
+ values: [ ]
1690
+ },
1691
+ category: [
1692
+ "Momentum Indicators"
1693
+ ],
1694
+ description: "The indicator is designed for use on a monthly time scale. It is the sum of a 14-month rate of change and 11-month rate of change, smoothed by a 10-period weighted moving average."
1695
+ },
1696
+ chop: {
1697
+ id: "chop",
1698
+ long_display_name: "Choppiness Index",
1699
+ short_display_name: "CHOP",
1700
+ editable: true,
1701
+ fields: [
1702
+ {title: "Period", key: "period", min: 1, max: 200, value: 25, type: "slider"},
1703
+ {title: "ATR Period", key: "atrPeriod", min: 1, max: 200, value: 25, type: "slider"},
1704
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1705
+ {title: "Stroke", key: "stroke", value: "#D54B1A", type: "colorpicker"},
1706
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1707
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"},
1708
+ {title: "Plot Color", key: "plotBands", value: "rgba(178, 191, 217, 0.2)", type: "plotcolor"}
1709
+ ],
1710
+ levels:{
1711
+ fields: [
1712
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1713
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1714
+ {title: "Stroke", key: "color", value: "#D54B1A", type: "colorpicker"},
1715
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1716
+ ],
1717
+ values: [
1718
+ {color: "#D54B1A", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1719
+ {color: "#D54B1A", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1720
+ ]
1721
+ },
1722
+ category: [
1723
+ "Momentum Indicators"
1724
+ ],
1725
+ description: "The Choppiness Index (CHOP) is an indicator designed to determine if the market is choppy (trading sideways) or not choppy (trading within a trend in either direction). CHOP is not meant to predict future market direction, it is a metric to be used to for defining the market's trendiness only."
1726
+ },
1727
+ adx: {
1728
+ id: "adx",
1729
+ long_display_name: "Average Directional Movement Index",
1730
+ short_display_name: "ADX",
1731
+ editable: true,
1732
+ fields: [
1733
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
1734
+ {title: "ADX MA Type", key: "maType", value: "SMA", type: "matype"},
1735
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1736
+ {title: "Stroke", key: "stroke", value: "#E21B5A", type: "colorpicker"},
1737
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1738
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1739
+ ],
1740
+ levels:{
1741
+ fields: [
1742
+ {title: "Level", key: "value", min: 0, max: 1, value: 0.5, step: 0.01, type: "slider"},
1743
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1744
+ {title: "Stroke", key: "color", value: "#E21B5A", type: "colorpicker"},
1745
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1746
+ ],
1747
+ values: [
1748
+ {color: "#E21B5A", dashStyle: "Dash", label: { text: 0.3}, value: 0.3, "width" : 1},
1749
+ {color: "#E21B5A", dashStyle: "Dash", label: { text: 0.7}, value: 0.7, "width" : 1}
1750
+ ]
1751
+ },
1752
+ category: [
1753
+ "Momentum Indicators"
1754
+ ],
1755
+ description: "The Average Directional Movement Index index (ADX) was developed in 1978 by J. Welles Wilder as an indicator of trend strength in a series of prices of a financial instrument ADX will range between 0 and 100. Generally, ADX readings below 20 indicate trend weakness, and readings above 40 indicate trend strength."
1756
+ },
1757
+ dx: {
1758
+ id: "dx",
1759
+ long_display_name: "Directional Movement Index",
1760
+ short_display_name: "DX",
1761
+ editable: true,
1762
+ fields: [
1763
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
1764
+ {title: "DX MA Type", key: "maType", value: "SMA", type: "matype"},
1765
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1766
+ {title: "Stroke", key: "dxStroke", value: "#7B6ED6", type: "colorpicker"},
1767
+ {title: "+DI Stroke", key: "plusDIStroke", value: "#13CD4A", type: "colorpicker"},
1768
+ {title: "-DI Stroke", key: "minusDIStroke", value: "#EC4401", type: "colorpicker"},
1769
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1770
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1771
+ ],
1772
+ levels:{
1773
+ fields: [
1774
+ {title: "Level", key: "value", min: 0, max: 1, value: 0.5, step: 0.01, type: "slider"},
1775
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1776
+ {title: "Stroke", key: "color", value: "#13CD4A", type: "colorpicker"},
1777
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1778
+ ],
1779
+ values: [
1780
+ {color: "#7B6ED6", dashStyle: "Dash", label: { text: 0.3}, value: 0.3, "width" : 1},
1781
+ {color: "#EC4401", dashStyle: "Dash", label: { text: 0.7}, value: 0.7, "width" : 1}
1782
+ ]
1783
+ },
1784
+ category: [
1785
+ "Momentum Indicators"
1786
+ ],
1787
+ description: "Directional Movement (DMI) is actually a collection of three separate indicators combined into one. Directional Movement consists of the Average Directional Index (ADX), Plus Directional Indicator (+DI) and Minus Directional Indicator (-DI)."
1788
+ },
1789
+ adxr: {
1790
+ id: "adxr",
1791
+ long_display_name: "Average Directional Movement Index Rating",
1792
+ short_display_name: "ADXR",
1793
+ editable: true,
1794
+ fields: [
1795
+ {title: "Period", key: "period", min: 1, max: 200, value: 14, type: "slider"},
1796
+ {title: "MA Type", key: "maType", value: "SMA", type: "matype"},
1797
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1798
+ {title: "Stroke", key: "stroke", value: "#9B0D94", type: "colorpicker"},
1799
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1800
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1801
+ ],
1802
+ levels:{
1803
+ fields: [
1804
+ {title: "Level", key: "value", min: 0, max: 1, value: 0.5, step: 0.01, type: "slider"},
1805
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1806
+ {title: "Stroke", key: "color", value: "#9B0D94", type: "colorpicker"},
1807
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1808
+ ],
1809
+ values: [
1810
+ {color: "#9B0D94", dashStyle: "Dash", label: { text: 0.3}, value: 0.3, "width" : 1},
1811
+ {color: "#9B0D94", dashStyle: "Dash", label: { text: 0.7}, value: 0.7, "width" : 1}
1812
+ ]
1813
+ },
1814
+ category: [
1815
+ "Momentum Indicators"
1816
+ ],
1817
+ description: "Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two."
1818
+ },
1819
+ apo: {
1820
+ id: "apo",
1821
+ long_display_name: "Absolute Price Oscillator",
1822
+ short_display_name: "APO",
1823
+ editable: true,
1824
+ fields: [
1825
+ {title: "Fast Period", key: "fastPeriod", min: 1, max: 50, value: 12, type: "slider"},
1826
+ {title: "Slow Period", key: "slowPeriod", min: 1, max: 50, value: 26, type: "slider"},
1827
+ {title: "Fast MA Type", key: "fastMaType", value: "SMA", type: "matype"},
1828
+ {title: "Slow MA Type", key: "slowMaType", value: "SMA", type: "matype"},
1829
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1830
+ {title: "Stroke", key: "stroke", value: "#229BC6", type: "colorpicker"},
1831
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1832
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1833
+ ],
1834
+ levels:{
1835
+ fields: [
1836
+ {title: "Level", key: "value", min: -0.1, max: 0.2, value: 0, step: 0.01, type: "slider"},
1837
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1838
+ {title: "Stroke", key: "color", value: "#229BC6", type: "colorpicker"},
1839
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1840
+ ],
1841
+ values: [ ]
1842
+ },
1843
+ category: [
1844
+ "Momentum Indicators"
1845
+ ],
1846
+ description: "The Absolute Price Oscillator (APO) is based on the absolute differences between two moving averages of different lengths, a ‘Fast’ and a ‘Slow’ moving average."
1847
+ },
1848
+ stoch: {
1849
+ id: "stoch",
1850
+ long_display_name: "Stochastic",
1851
+ short_display_name: "STOCH ",
1852
+ editable: true,
1853
+ fields: [
1854
+ {title: "%K Period", key: "fastKPeriod", min: 1, max: 50, value: 14, type: "slider"},
1855
+ {title: "%D Period", key: "fastDPeriod", min: 1, max: 50, value: 3, type: "slider"},
1856
+ {title: "%D MA Type", key: "fastDMaType", value: "SMA", type: "matype"},
1857
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1858
+ {title: "%K Stroke", key: "stroke", value: "#060100", type: "colorpicker"},
1859
+ {title: "%D Stroke", key: "dStroke", value: "#DD061C", type: "colorpicker"},
1860
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1861
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1862
+ ],
1863
+ levels:{
1864
+ fields: [
1865
+ {title: "Level", key: "value", min: 0, max: 100, value: 50, type: "slider"},
1866
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1867
+ {title: "Stroke", key: "color", value: "#DD061C", type: "colorpicker"},
1868
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1869
+ ],
1870
+ values: [
1871
+ {color: "#060100", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1872
+ {color: "#DD061C", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1873
+ ]
1874
+ },
1875
+ category: [
1876
+ "Momentum Indicators"
1877
+ ],
1878
+ description: "A technical momentum indicator that compares a security's closing price to its price range over a given time period. The oscillator's sensitivity to market movements can be reduced by adjusting the time period or by taking a moving average of the result."
1879
+ },
1880
+ stochf: {
1881
+ id: "stochf",
1882
+ long_display_name: "Stochastic Fast",
1883
+ short_display_name: "STOCHF",
1884
+ editable: true,
1885
+ fields: [
1886
+ {title: "%K Period", key: "fastKPeriod", min: 1, max: 50, value: 14, type: "slider"},
1887
+ {title: "%D Period", key: "fastDPeriod", min: 1, max: 50, value: 3, type: "slider"},
1888
+ {title: "%K MA Type", key: "fastKMaType", value: "SMA", type: "matype"},
1889
+ {title: "%D MA Type", key: "fastDMaType", value: "SMA", type: "matype"},
1890
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1891
+ {title: "%K Stroke", key: "stroke", value: "#060100", type: "colorpicker"},
1892
+ {title: "%D Stroke", key: "dStroke", value: "#F2501A", type: "colorpicker"},
1893
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1894
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1895
+ ],
1896
+ levels:{
1897
+ fields: [
1898
+ {title: "Level", key: "value", min: 0, max: 100, value: 50, type: "slider"},
1899
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1900
+ {title: "Stroke", key: "color", value: "#F2501A", type: "colorpicker"},
1901
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1902
+ ],
1903
+ values: [
1904
+ {color: "#060100", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1905
+ {color: "#F2501A", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1906
+ ]
1907
+ },
1908
+ category: [
1909
+ "Momentum Indicators"
1910
+ ],
1911
+ description: "The Fast Stochastic Oscillator is based on George Lane's original formulas for %K and %D. %K in the fast version that appears rather choppy. %D is the 3-day SMA of %K."
1912
+ },
1913
+ stochs: {
1914
+ id: "stochs",
1915
+ long_display_name: "Stochastic Slow",
1916
+ short_display_name: "STOCHS",
1917
+ editable: true,
1918
+ fields: [
1919
+ {title: "Fast %K Period", key: "fastKPeriod", min: 1, max: 50, value: 14, type: "slider"},
1920
+ {title: "Slow %K Period", key: "slowKPeriod", min: 1, max: 50, value: 14, type: "slider"},
1921
+ {title: "Slow %D Period", key: "slowDPeriod", min: 1, max: 50, value: 3, type: "slider"},
1922
+ {title: "Fast %K MA Type", key: "fastKMaType", value: "SMA", type: "matype"},
1923
+ {title: "Slow %K MA Type", key: "slowKMaType", value: "SMA", type: "matype"},
1924
+ {title: "Slow %D MA Type", key: "slowDMaType", value: "SMA", type: "matype"},
1925
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1926
+ {title: "%K Stroke", key: "stroke", value: "#060100", type: "colorpicker"},
1927
+ {title: "%D Stroke", key: "dStroke", value: "#C10329", type: "colorpicker"},
1928
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1929
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1930
+ ],
1931
+ levels:{
1932
+ fields: [
1933
+ {title: "Level", key: "value", min: 0, max: 100, value: 50, type: "slider"},
1934
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1935
+ {title: "Stroke", key: "color", value: "#C10329", type: "colorpicker"},
1936
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1937
+ ],
1938
+ values: [
1939
+ {color: "#060100", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1940
+ {color: "#C10329", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1941
+ ]
1942
+ },
1943
+ category: [
1944
+ "Momentum Indicators"
1945
+ ],
1946
+ description: "The Fast Stochastic Oscillator is based on George Lane's original formulas for %K and %D. %K in the fast version that appears rather choppy. %D is the 3-day SMA of %K."
1947
+ },
1948
+ dc: {
1949
+ id: "dc",
1950
+ long_display_name: "Donchian Channel",
1951
+ short_display_name: "DC",
1952
+ editable: true,
1953
+ onChartIndicator: true,
1954
+ fields: [
1955
+ {title: "Period", key: "period", min: 1, max: 100, value: 21, type: "slider"},
1956
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1957
+ {title: "High Stroke", key: "highStroke", value: "#782BD6", type: "colorpicker"},
1958
+ {title: "Low Stroke", key: "lowStroke", value: "#F03B12", type: "colorpicker"},
1959
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1960
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1961
+ ],
1962
+ category: [
1963
+ "Overlap Studies"
1964
+ ],
1965
+ description: "The Donchian Channel is an indicator used in market trading developed by Richard Donchian. It is formed by taking the highest high and the lowest low of the last n periods. The area between the high and the low is the channel for the period chosen."
1966
+ },
1967
+ ultosc: {
1968
+ id: "ultosc",
1969
+ long_display_name: "Ultimate Oscillator",
1970
+ short_display_name: "ULTOSC",
1971
+ editable: true,
1972
+ fields: [
1973
+ {title: "Period 1", key: "firstPeriod", min: 1, max: 50, value: 7, type: "slider"},
1974
+ {title: "Period 2", key: "secondPeriod", min: 1, max: 50, value: 14, type: "slider"},
1975
+ {title: "Period 3", key: "thirdPeriod", min: 1, max: 50, value: 28, type: "slider"},
1976
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
1977
+ {title: "Stroke", key: "stroke", value: "#DCE53F", type: "colorpicker"},
1978
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
1979
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
1980
+ ],
1981
+ levels:{
1982
+ fields: [
1983
+ {title: "Level", key: "value", min: 1, max: 100, value: 50, type: "slider"},
1984
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
1985
+ {title: "Stroke", key: "color", value: "#DCE53F", type: "colorpicker"},
1986
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
1987
+ ],
1988
+ values: [
1989
+ {color: "#DCE53F", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
1990
+ {color: "#DCE53F", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
1991
+ ]
1992
+ },
1993
+ category: [
1994
+ "Momentum Indicators"
1995
+ ],
1996
+ description: "A technical indicator invented by Larry Williams that uses the weighted average of three different time periods to reduce the volatility and false transaction signals that are associated with many other indicators that mainly rely on a single time period."
1997
+ },
1998
+ lsma: {
1999
+ id: "lsma",
2000
+ long_display_name: "Least Squares Moving Average",
2001
+ short_display_name: "LSMA",
2002
+ editable: true,
2003
+ onChartIndicator: true,
2004
+ fields: [
2005
+ {title: "Period", key: "period", min: 1, max: 200, value: 21, type: "slider"},
2006
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
2007
+ {title: "Stroke", key: "stroke", value: "#3FDDE5", type: "colorpicker"},
2008
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
2009
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
2010
+ ],
2011
+ category: [
2012
+ "Momentum Indicators"
2013
+ ],
2014
+ description: "The Least Squares Moving Average first calculates a least squares regression line over the preceding time periods, then projects it forward to the current period. In essence, it calculates what the value would be if the regression line continued."
2015
+ },
2016
+ mass: {
2017
+ id: "mass",
2018
+ long_display_name: "Mass Index",
2019
+ short_display_name: "MASS",
2020
+ editable: true,
2021
+ fields: [
2022
+ {title: "Mass Period", key: "period", min: 1, max: 50, value: 25, type: "slider"},
2023
+ {title: "Single MA Period", key: "singlePeriod", min: 1, max: 50, value: 9, type: "slider"},
2024
+ {title: "Double MA Period", key: "doublePeriod", min: 1, max: 50, value: 9, type: "slider"},
2025
+ {title: "Single MA Type", key: "singleMaType", value: "SMA", type: "matype"},
2026
+ {title: "Double MA Type", key: "doubleMaType", value: "SMA", type: "matype"},
2027
+ {title: "Stroke", key: "stroke", value: "#E03FE5", type: "colorpicker"},
2028
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
2029
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
2030
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
2031
+ ],
2032
+ levels:{
2033
+ fields: [
2034
+ {title: "Level", key: "value", min: 0, max: 100, value: 25, type: "slider"},
2035
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
2036
+ {title: "Stroke", key: "color", value: "#E03FE5", type: "colorpicker"},
2037
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
2038
+ ],
2039
+ values: [
2040
+ {color: "#E03FE5", dashStyle: "Dash", label: { text: 23}, value: 23, "width" : 1},
2041
+ {color: "#E03FE5", dashStyle: "Dash", label: { text: 27}, value: 27, "width" : 1}
2042
+ ]
2043
+ },
2044
+ category: [
2045
+ "Volatility Indicators"
2046
+ ],
2047
+ description: "Developed by Donald Dorsey, the Mass Index uses the high-low range to identify trend reversals based on range expansions. In this sense, the Mass Index is a volatility indicator that does not have a directional bias. Instead, the Mass Index identifies range bulges that can foreshadow a reversal of the current trend."
2048
+ },
2049
+ cmo: {
2050
+ id: "cmo",
2051
+ long_display_name: "Chande Momentum Oscillator",
2052
+ short_display_name: "CMO",
2053
+ editable: true,
2054
+ fields: [
2055
+ {title: "Period", key: "period", min: 1, max: 50, value: 20, type: "slider"},
2056
+ {title: "Stroke width", key: "strokeWidth", min: 1, max: 10, value: 1, type: "slider"},
2057
+ {title: "Stroke", key: "stroke", value: "#76E53F", type: "colorpicker"},
2058
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
2059
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
2060
+ ],
2061
+ levels:{
2062
+ fields: [
2063
+ {title: "Level", key: "value", min: -100, max: 100, value: 50, type: "slider"},
2064
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
2065
+ {title: "Stroke", key: "color", value: "#76E53F", type: "colorpicker"},
2066
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"}
2067
+ ],
2068
+ values: [
2069
+ {color: "#76E53F", dashStyle: "Dash", label: { text: 30}, value: 30, "width" : 1},
2070
+ {color: "#76E53F", dashStyle: "Dash", label: { text: 70}, value: 70, "width" : 1}
2071
+ ]
2072
+ },
2073
+ category: [
2074
+ "Momentum Indicators"
2075
+ ],
2076
+ description: "The CMO indicator is created by calculating the difference between the sum of all recent higher closes and the sum of all recent lower closes and then dividing the result by the sum of all price movement over a given time period. The result is multiplied by 100 to give the -100 to +100 range."
2077
+ },
2078
+ fractal: {
2079
+ id: "fractal",
2080
+ long_display_name: "Fractal",
2081
+ short_display_name: "FRACTAL",
2082
+ onChartIndicator: true,
2083
+ editable: true,
2084
+ fields: [
2085
+ {title: "Number of bars on sides", key: "numberOfBars", min: 3, max: 9, value: 5, type: "slider"}
2086
+ ],
2087
+ category: [
2088
+ "Bill Williams"
2089
+ ],
2090
+ description: "Fractals are indicators on candlestick charts that identify reversal points in the market. Traders often use fractals to get an idea about the direction in which the price will develop. A fractal will form when a particular price pattern happens on a chart."
2091
+ },
2092
+ alligator: {
2093
+ id: "alligator",
2094
+ long_display_name: "Alligator",
2095
+ short_display_name: "ALLIGATOR",
2096
+ onChartIndicator: true,
2097
+ editable: true,
2098
+ fields: [
2099
+ {title: "Jaw Line Stroke", key: "jawStroke", value: "#0070ff", type: "colorpicker"},
2100
+ {title: "Teeth Line Stroke", key: "teethStroke", value: "#ff003c", type: "colorpicker"},
2101
+ {title: "Lips Line Stroke", key: "lipsStroke", value: "#00c176", type: "colorpicker"},
2102
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
2103
+ {title: "Dash style", key: "dashStyle", value: "Dash", type: "dashstyle"},
2104
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
2105
+ ],
2106
+ category: [
2107
+ "Bill Williams"
2108
+ ],
2109
+ description: "Bill Williams introduced the Alligator indicator in 1995. The Alligator is as much a metaphor as it is an indicator. It consists of three lines, overlaid on a pricing chart, that represent the jaw, the teeth and the lips of the beast, and was created to help the trader confirm the presence of a trend and its direction. The Alligator indicator can also help traders designate impulse and corrective wave formations, but the tool works best when combined with a momentum indicator."
2110
+ },
2111
+ ichimoku: {
2112
+ id: "ichimoku",
2113
+ long_display_name: "Ichimoku",
2114
+ short_display_name: "ICHIMOKU",
2115
+ onChartIndicator: true,
2116
+ editable: true,
2117
+ fields: [
2118
+ {title: "Tenkan Sen Stroke", key: "tenkanSenStroke", value: "#ff003c", type: "colorpicker"},
2119
+ {title: "Tenkan Sen Period", key: "tenkanSenPeriod", min: 1, max: 100, value: 7, type: "slider"},
2120
+ {title: "Kijun Sen Stroke", key: "kijunSenStroke", value: "#640e22", type: "colorpicker"},
2121
+ {title: "Kijun Sen Period", key: "kijunSenPeriod", min: 1, max: 100, value: 22, type: "slider"},
2122
+ {title: "Chikou Span Stroke", key: "chikouSpanStroke", value: "#ffabbf", type: "colorpicker"},
2123
+ {title: "Chikou Span Period", key: "chikouSpanPeriod", min: 1, max: 100, value: 22, type: "slider"},
2124
+ {title: "Senkou Span-A Stroke", key: "senkouSpanAStroke", value: "#73d351", type: "colorpicker"},
2125
+ {title: "Senkou Span-A Period", key: "senkouSpanAPeriod", min: 1, max: 100, value: 26, type: "slider"},
2126
+ {title: "Senkou Span-B Stroke", key: "senkouSpanBStroke", value: "#003fa1", type: "colorpicker"},
2127
+ {title: "Senkou Span-B Period", key: "senkouSpanBPeriod", min: 1, max: 100, value: 44, type: "slider"},
2128
+ {title: "Stroke width", key: "width", min: 1, max: 10, value: 1, type: "slider"},
2129
+ {title: "Dash style", key: "dashStyle", value: "Solid", type: "dashstyle"},
2130
+ {title: "Applied to", key: "appliedTo", value: 3, type: "appliedto"}
2131
+ ],
2132
+ category: [
2133
+ "Momentum Indicators"
2134
+ ],
2135
+ description: "The Ichimoku Cloud, also known as Ichimoku Kinko Hyo, is a versatile indicator that defines support and resistance, identifies trend direction, gauges momentum and provides trading signals. Ichimoku Kinko Hyo translates into “one look equilibrium chart”."
2136
+ }
2137
+ };
2138
+ export default config;