Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9edb9e9108 | ||
|
|
2383c8c6e8 | ||
|
|
12e363f65c |
150
changelog.md
150
changelog.md
@@ -4,9 +4,104 @@
|
||||
<!-- markdownlint-disable no-emphasis-as-header -->
|
||||
<!-- markdownlint-disable no-inline-html -->
|
||||
<!-- markdownlint-disable code-block-style -->
|
||||
|
||||
## Version 29.5.0
|
||||
|
||||
*Date: Tue Aug 05 2025*
|
||||
|
||||
**Improvements**
|
||||
|
||||
- **Improved crosshair movement in tracking mode on mobile.** Previously, the crosshair moved incorrectly in tracking mode when `vert_touch_drag_scroll` was disabled. Now, page scrolling is disabled in tracking mode, allowing the crosshair to move on touch.
|
||||
- **Added `setLayoutSizes` method to `IChartingLibraryWidget`.** The [`setLayoutSizes`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IChartingLibraryWidget#setlayoutsizes) method can be used to resize the charts in [multiple-chart layouts](https:/www.tradingview.com/charting-library-docs/latest/trading_terminal#multiple-chart-layout). (Trading Platform only)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- **Fixed an issue where setMinimumAdditionalDepth would be ignored.** Fixed an issue where custom studies would sometimes not request enough historic bars after calling [`setMinimumAdditionalDepth`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IContext/#setminimumadditionaldepth).
|
||||
- **Fixed an issue where pivot points could be drawn on the wrong bar for overnight sessions.** Fixed an issue where pivot points could be drawn on the wrong bars for symbols with overnight sessions when calculating with a daily timeframe.
|
||||
|
||||
---
|
||||
|
||||
## Version 29.4.0
|
||||
|
||||
*Date: Tue Jun 25 2025*
|
||||
|
||||
**New Features**
|
||||
|
||||
- **Added new legend property.** A new overrides property `paneProperties.legendProperties.showSeriesLegendCloseOnMobile` was added to hide/show the close value in the legend when on mobile. The default value is `true`.
|
||||
- **Support multiple tick resolution.** The library now supports multiple [tick resolutions](https:/www.tradingview.com/charting-library-docs/latest/core_concepts/Resolution#resolution-in-ticks). Previously, it was possible to set only `1T` resolution.<br/>
|
||||
Note that the library does not support tick multipliers. This means it is not possible to build a higher resolution (e.g., `10T`) from a lower one (e.g., `1T`). Therefore, your datafeed must explicitly provide each required resolution. (Trading Platform only)
|
||||
- **Enabled custom price formatting for Watchlist values.** `priceFormatterFactory` from [`custom_formatters`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#custom_formatters) can now be used to format values displayed in the Watchlist columns titled _Last_ and _Chg_. (Trading Platform only)
|
||||
|
||||
**Improvements**
|
||||
|
||||
- **Updated snapshots functionality in the top toolbar.** Now, handling and storing [snapshots](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/Snapshots) rely solely on the [`snapshot_url`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#snapshot_url) property.
|
||||
This means all server-side snapshot actions (*Copy link*, *Open in new tab*, *Tweet image*) must be implemented using your own server.
|
||||
For details on how to set up your own server, see our guide to [implementing a snapshot server](https:/www.tradingview.com/charting-library-docs/latest/tutorials/implement-snapshots-server).
|
||||
- **Added the `use_symbol_name_for_header_toolbar` featureset.** This featureset allows you to show the symbol name over the ticker in the _Symbol Search_ dialog.
|
||||
- **Added `searchSource` parameter to `searchSymbols`.** [`searchSymbols`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IDatafeedChartApi#searchsymbols) now receives a new parameter `searchSource` to indicate where the search was triggered from.
|
||||
- **Added a new property to the `BrokerCustomUI` interface.** [`showReversePositionDialog`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.BrokerCustomUI#showreversepositiondialog) allows overriding the default *Reverse position* dialog with a custom implementation.
|
||||
- **Added VWAP insufficient data warning.** Users will now see a warning icon and message in the legend if there isn't enough data loaded to calculate VWAP.
|
||||
- **Add featureset to display inactivity gaps on intraday charts.** The new `intraday_inactivity_gaps` featureset enables the display of inactivity gaps on intraday charts. These gaps represent periods within the trading session when there has been no trading activity, resulting in missing bars on the chart.<br/>
|
||||
When `intraday_inactivity_gaps` is enabled, a checkbox appears in the chart settings dialog, allowing users to toggle inactivity gaps on or off. The featureset also exposes the [`intradayInactivityGaps`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IChartWidgetApi#intradayinactivitygaps) watched value on the Widget API for programmatic control.
|
||||
- **Improved data loading efficiency by throttling data requests during user scrolling.** This significantly reduces the frequency of small, incremental requests to the Datafeed API.
|
||||
- **Order & Position lines display the same information on desktop and mobile.** Users can now benefit from the same design on both desktop and mobile when an order/position is displayed on the chart. (Trading Platform only)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- **Fixed indicator template favorite menu bug.** Fixed an issue where favoriting an indicator template with leading whitespace in its name caused the quick access button in the header menu to appear empty.
|
||||
- **Fixed Relative Strength Index indicator.** The Relative Strength Index indicator was broken in version 29.2.0 and has now been fixed.
|
||||
- **Fixed a bug where switching chart type to a Japanese one would lead to an error in the console.**
|
||||
|
||||
- **Fixed vertical line drawing bug.** Fixed an issue where it was impossible to move an existing vertical line drawing to the right of the most recent bar on the chart.
|
||||
- **Fixed an error when drawing execution shapes on the chart led to an invalid chart state.** Fixes [#9109](https://github.com/tradingview/charting_library/issues/9109)
|
||||
- **Fixed the spread operator issue in the Compare symbol dialog.** Spread operators now function correctly in the _Compare symbol_ dialog, ensuring consistency with the _Symbol Search_ dialog.
|
||||
- **Fix for sameorigin.html loading from relative path.** This fix ensures proper loading of the `sameorigin.html` file when using the `iframe_loading_same_origin` featureset and the current page is not the root page.
|
||||
- **The `_getStyleOverrides` error message.** Fixed a bug where the `_getStyleOverrides` error message could be seen in the console when instantiating the chart with pre-existing orders or positions. (Trading Platform only)
|
||||
- **Fix rendering of multiple execution shapes on a single bar.** Fixed an issue where adding multiple [execution shapes](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/drawings/drawings-api#createexecutionshape) to a single bar would only render the first shape. (Trading Platform only)
|
||||
|
||||
**Documentation**
|
||||
|
||||
- **New tutorial.** Check out our [new tutorial](https:/www.tradingview.com/charting-library-docs/latest/tutorials/implement-broker-api) on how to implement the required methods to enable basic trading functionality using the Broker API.
|
||||
By the end of this tutorial, you will learn how to enable trading UI and how to store, return, and update orders to make the trading flow functional.
|
||||
- **New troubleshooting article.** Explore a new article on common [customization issues](https:/www.tradingview.com/charting-library-docs/latest/customization/customization-issues) and potential solutions.
|
||||
- **Other enhancements.** Updated the [Custom themes API](https:/www.tradingview.com/charting-library-docs/latest/customization/styles/custom-themes) article and added a new [example](https://codepen.io/tradingview/pen/xbGRaKd) to demonstrate how chart colors can be adjusted using this API.
|
||||
|
||||
---
|
||||
|
||||
## Version 29.3.0
|
||||
|
||||
*Date: Thu May 08 2025*
|
||||
|
||||
**New Features**
|
||||
|
||||
- **Added HLC bars chart style.** The HLC bars chart style is the same as regular bars but doesn't display the open price. When exporting a series or [overlay](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/indicators#add-and-compare-new-series) indicator that uses the HLC bars chart style, open values are not included. Open values also do not appear in the data window or [legend](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/Legend) for series or overlay indicators using this style.
|
||||
|
||||
**Improvements**
|
||||
|
||||
- **Added price scale details to context menu event.** When invoking the [context menu](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/context-menu) on the price scale, it now returns the following details:
|
||||
- `id` of the price scale
|
||||
- `paneIndex` which is the index of the pane the price scale is linked to
|
||||
- `chartIndex` which is the index of the chart the price scale is linked to
|
||||
- **Added icon to dropdown items.** A new property `icon` was added to the [`DropdownItem`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.DropdownItem) interface.
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- **Empty context menu.** Fixed an issue where the [context menu](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/context-menu) would be partially empty on mobile
|
||||
- **onContextMenu callback received incorrect arguments.** Fixed a bug where the [`onContextMenu`](https:/www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IChartingLibraryWidget#oncontextmenu) callback received an object instead of the expected arguments.
|
||||
- **Autosave won't trigger with empty text box created during autosave delay.**
|
||||
- **Fixed an error where vertical lines would revert to their previous position when moved beyond latest bar.** Fixes [#8894](https://github.com/tradingview/charting_library/issues/8894)
|
||||
|
||||
**Documentation**
|
||||
|
||||
- **The following enhancements were made.**
|
||||
- Added a new section explaining how to [programmatically open and close Symbol Search](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/Symbol-Search#openclose-symbol-search).
|
||||
- Updated the [Customization overview](https:/www.tradingview.com/charting-library-docs/latest/customization) and [Time zones](https:/www.tradingview.com/charting-library-docs/latest/ui_elements/timezones) articles.
|
||||
|
||||
---
|
||||
|
||||
## Version 29.2.0
|
||||
|
||||
*Date: Mon Apr 07 2025*
|
||||
*Date: Tue Apr 08 2025*
|
||||
|
||||
**New Features**
|
||||
|
||||
@@ -24,18 +119,18 @@ To disable the cross-tab synchronization, use the `watchlist_cross_tab_sync` fea
|
||||
**Bug Fixes**
|
||||
|
||||
- **Save button tooltip still shows shortcut when `save_shortcut` is disabled.** Fixed a bug where the _Save_ button's tooltip still showed the shortcut when the `save_shortcut` featureset was disabled. Fixes [#8925](https://github.com/tradingview/charting_library/issues/8925)
|
||||
- **Compare Symbol search dialog behavior.** Fixed an issue where the library would try to resolve a symbol that may not exist when users pressed _Enter_ whenever the featureset `allow_arbitrary_symbol_search_input` would be enabled.
|
||||
- **Adding a custom interval could cause an error.** Adding a custom interval after enabling the [`custom_resolution`](https://www.tradingview.com/charting-library-docs/latest/customization/Featuresets#custom_resolutions) featureset used to cause a console error.
|
||||
- **Fixed an issue where on some occasions PineJS functions would not return the right values when internally comparing it to MIN_VALUE or MAX_VALUE.**
|
||||
|
||||
- **Adding a custom interval could cause an error.** Adding a custom interval after enabling the [`custom_resolution`](https://www.tradingview.com/charting-library-docs/latest/customization/Featuresets#custom_resolutions) featureset used to cause a console error.
|
||||
- **Future bar time extrapolation with `disable_resolution_rebuild`.** Fixed an issue where future bar times would be extrapolated incorrectly when the `disable_resolution_rebuild` featureset was enabled, and daily bars that do not consider the January 1 to be the first day of the year were provided to the library.
|
||||
- **Compare symbol legend context menu.** Fixed an issue where the context menu for compared symbols would show the _Add this indicator to favorites_ item.
|
||||
- **Main series context menu.** Fixed an issue where the [context menu](https://www.tradingview.com/charting-library-docs/latest/ui_elements/context-menu) for the main series would show a blank space instead of the _Add SYMBOL to watchlist_ item.
|
||||
- **Watchlist item counter.** Fixed an issue where the watchlist item count would include section titles in its calculation.
|
||||
- **Fixed an issue with time scale marks that couldn't contain any underscore character.**
|
||||
|
||||
- **Fixed a bug where `getBars` failed to display error messages containing semicolons.**
|
||||
|
||||
- **Future bar time extrapolation with `disable_resolution_rebuild`.** Fixed an issue where future bar times would be extrapolated incorrectly when the `disable_resolution_rebuild` featureset was enabled, and daily bars that do not consider the January 1 to be the first day of the year were provided to the library.
|
||||
- **Compare Symbol search dialog behavior.** Fixed an issue where the library would try to resolve a symbol that may not exist when users pressed _Enter_ whenever the featureset `allow_arbitrary_symbol_search_input` would be enabled.
|
||||
- **Compare symbol legend context menu.** Fixed an issue where the context menu for compared symbols would show the _Add this indicator to favorites_ item.
|
||||
- **Main series context menu.** Fixed an issue where the [context menu](https://www.tradingview.com/charting-library-docs/latest/ui_elements/context-menu) for the main series would show a blank space instead of the _Add SYMBOL to watchlist_ item.
|
||||
- **Watchlist item counter.** Fixed an issue where the watchlist item count would include section titles in its calculation.
|
||||
- **Fixed drawing keyboard shortcuts.** Fixed an issue where using keyboard shortcuts to add drawings would sometimes open the _Symbol Search_ dialog instead of adding the intended drawing.
|
||||
|
||||
**Documentation**
|
||||
@@ -47,7 +142,6 @@ To disable the cross-tab synchronization, use the `watchlist_cross_tab_sync` fea
|
||||
|
||||
---
|
||||
|
||||
|
||||
## Version 29.1.0
|
||||
|
||||
*Date: Fri Mar 07 2025*
|
||||
@@ -381,7 +475,7 @@ have been added or updated:
|
||||
**Improvements**
|
||||
|
||||
- **Update the Anchored AVWAP drawing.** Add bands settings to the Anchored VWAP drawing.
|
||||
- **Subscribe to widget bar visibility events.** A new [`study_event`](../api/interfaces/Charting_Library.SubscribeEventsMap.md#study_event) type was added: `widgetbar_visibility_changed`. It returns the visibility state of the widget bar.
|
||||
- **Subscribe to widget bar visibility events.** A new [`study_event`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.SubscribeEventsMap.md#study_event) type was added: `widgetbar_visibility_changed`. It returns the visibility state of the widget bar.
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
@@ -428,12 +522,12 @@ Fixes [#8413](https://github.com/tradingview/charting_library/issues/8413) [#832
|
||||
- **Added the unloadUnusedCharts method.** The [`unloadUnusedCharts`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IChartingLibraryWidget#unloadunusedcharts) method deletes non-visible charts from a multiple-chart layout. Use this method to
|
||||
prevent the library's inherent behavior to restore previously displayed charts instead of creating new
|
||||
charts when changing layouts. `Trading Platform Only`
|
||||
- **Added a new type that reflects the ID of the created indicator.** A new [`study_event`](../api/interfaces/Charting_Library.SubscribeEventsMap.md#study_event) type was added: `create`. It returns the `id` of the newly created indicator.
|
||||
- **Added a new type that reflects the ID of the created indicator.** A new [`study_event`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.SubscribeEventsMap.md#study_event) type was added: `create`. It returns the `id` of the newly created indicator.
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- **Displaying volume indicator on chart load when visible_plots_set is not specified.** The chart will now correctly display the volume indicator if the `create_volume_indicator_by_default` featureset is enabled even if the symbols [LibrarySymbolInfo](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.LibrarySymbolInfo) doesn't specify the optional [`visible_plots_set`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.LibrarySymbolInfo#visible_plots_set) property.
|
||||
- **Prioritise widget constructor symbol over saved state.** The [`symbol`](../api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#symbol) property in the widget constructor will now have priority over symbols loaded from saved chart states when using [`saved_data`](../api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#saved_data) or [`load_last_chart`](../api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#load_last_chart). Fixes [#7922](https://github.com/tradingview/charting_library/issues/7922) [#8473](https://github.com/tradingview/charting_library/issues/8473) [#7926](https://github.com/tradingview/charting_library/issues/7926) [#8168](https://github.com/tradingview/charting_library/issues/8168)
|
||||
- **Prioritise widget constructor symbol over saved state.** The [`symbol`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#symbol) property in the widget constructor will now have priority over symbols loaded from saved chart states when using [`saved_data`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#saved_data) or [`load_last_chart`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#load_last_chart). Fixes [#7922](https://github.com/tradingview/charting_library/issues/7922) [#8473](https://github.com/tradingview/charting_library/issues/8473) [#7926](https://github.com/tradingview/charting_library/issues/7926) [#8168](https://github.com/tradingview/charting_library/issues/8168)
|
||||
- **Fixed an issue where the time_frames description was ignored.**
|
||||
|
||||
## Version 27.002
|
||||
@@ -905,13 +999,13 @@ Please use [settings_adapter](https://www.tradingview.com/charting-library-docs/
|
||||
**New Features**
|
||||
|
||||
- **Added support for specifying custom timezones.**
|
||||
- Additional custom timezones can now be specified for use within the library. Please see the [Adding Custom Timezones](../ui_elements/timezones#adding-custom-time-zones) section within the Timezones page.
|
||||
- Additional custom timezones can now be specified for use within the library. Please see the [Adding Custom Timezones](../ui_elements/timezones#custom-time-zones) section within the Timezones page.
|
||||
- **Images within timescale marks.**
|
||||
- Timescale marks now support the rendering of images within the circular shape by specifying the `imageUrl` property. Please see the [TimescaleMark](../api/interfaces/Charting_Library.TimescaleMark) interface for more details.
|
||||
- Timescale marks now support the rendering of images within the circular shape by specifying the `imageUrl` property. Please see the [TimescaleMark](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.TimescaleMark) interface for more details.
|
||||
- **Support different margin rates for different order types.** [6607](https://github.com/tradingview/charting_library/issues/6607)
|
||||
- `marginRate` has been deprecated
|
||||
- A [`supportLeverageButton`](../api/interfaces/Broker.BrokerConfigFlags#supportleveragebutton) flag that displays a leverage button has been added to the Broker configuration.
|
||||
- The [`supportLeverage`](../api/interfaces/Broker.BrokerConfigFlags#supportleverage) flag enables leverage calculation by getting information from `leverageInfo`.
|
||||
- A [`supportLeverageButton`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.BrokerConfigFlags#supportleveragebutton) flag that displays a leverage button has been added to the Broker configuration.
|
||||
- The [`supportLeverage`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.BrokerConfigFlags#supportleverage) flag enables leverage calculation by getting information from `leverageInfo`.
|
||||
|
||||
**Enhancements**
|
||||
|
||||
@@ -919,7 +1013,7 @@ Please use [settings_adapter](https://www.tradingview.com/charting-library-docs/
|
||||
|
||||
**Bug fixes**
|
||||
|
||||
- [`setUserEditEnabled`](../api/interfaces/Charting_Library.IStudyApi#setusereditenabled) does not hide 3 dots in Legend. [6765](https://github.com/tradingview/charting_library/issues/6765) | [6165](https://github.com/tradingview/charting_library/issues/6165)
|
||||
- [`setUserEditEnabled`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.IStudyApi#setusereditenabled) does not hide 3 dots in Legend. [6765](https://github.com/tradingview/charting_library/issues/6765) | [6165](https://github.com/tradingview/charting_library/issues/6165)
|
||||
|
||||
widget.activeChart().getAllStudies().forEach(({ id }) => {
|
||||
console.log(id);
|
||||
@@ -932,7 +1026,7 @@ Please use [settings_adapter](https://www.tradingview.com/charting-library-docs/
|
||||
- `right_toolbar` featureset didn't have a default `on` value.
|
||||
- Empty time frames at the bottom toolbar if `data_status: endofday`
|
||||
- Export data doesn’t include projected data.
|
||||
- Projected data can be included by setting [`includeOffsetStudyValues`](../api/interfaces/Charting_Library.ExportDataOptions#includeoffsetstudyvalues) to `true`.
|
||||
- Projected data can be included by setting [`includeOffsetStudyValues`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ExportDataOptions#includeoffsetstudyvalues) to `true`.
|
||||
- `await widget.activeChart().exportData({ includeOffsetStudyValues: true });`
|
||||
- Highest PineJS.Std function doesn’t work correctly with negative numbers.
|
||||
- Missing types in bundled definition file. [7445](https://github.com/tradingview/charting_library/issues/7445) | [7446](https://github.com/tradingview/charting_library/issues/7446)
|
||||
@@ -941,15 +1035,15 @@ Please use [settings_adapter](https://www.tradingview.com/charting-library-docs/
|
||||
|
||||
**Documentation**
|
||||
|
||||
- Added [migration guide](../trading_terminal/#how-to-migrate-from-advanced-charts) from TAC to CTP.
|
||||
- Added additional documentation for [Drawings](../ui_elements/drawings/).
|
||||
- Added [migration guide](https://www.tradingview.com/charting-library-docs/latest/trading_terminal/#how-to-migrate-from-advanced-charts) from TAC to CTP.
|
||||
- Added additional documentation for [Drawings](https://www.tradingview.com/charting-library-docs/latest/ui_elements/drawings/).
|
||||
- Missing overrides in documentation. [7457](https://github.com/tradingview/charting_library/issues/7457)
|
||||
- Updated documentation for [Marks](../ui_elements/Marks).
|
||||
- Updated documentation for [Marks](https://www.tradingview.com/charting-library-docs/latest/ui_elements/Marks).
|
||||
- Align ChartMetaInfo & ChartData.
|
||||
|
||||
**Other**
|
||||
|
||||
- Removed `Australia/ACT` from the list of [timezones](../ui_elements/timezones) within our documentation. Please use either the Sydney timezone or [specify your own custom timezone](../ui_elements/timezones#adding-custom-time-zones).
|
||||
- Removed `Australia/ACT` from the list of [timezones](../ui_elements/timezones) within our documentation. Please use either the Sydney timezone or [specify your own custom timezone](../ui_elements/timezones#custom-time-zones).
|
||||
|
||||
## Version 24.001
|
||||
|
||||
@@ -990,8 +1084,8 @@ Please use [settings_adapter](https://www.tradingview.com/charting-library-docs/
|
||||
- `preset` Widget-Constructor parameter has been removed. Users can still use some featuresets to mimic the same behavior by disabling the following list:
|
||||
- `'left_toolbar', 'header_widget', 'timeframes_toolbar', 'edit_buttons_in_legend', 'context_menus', 'control_bar', 'border_around_the_chart'`
|
||||
- `chart_style_hilo` featureset is now enabled by default. This adds the High-low option to chart style controls dropdown. This featureset has been available since 1.15 but was previously disabled by default.
|
||||
- Added typings for custom indicators. Typescript equivalents of our existing examples are available here: [Custom Studies Typescript Examples](../custom_studies/Custom-Studies-Examples).
|
||||
- [`symbol_search_complete`](../api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#symbol_search_complete) has changed. The function now takes an additional search result object parameter, and returns an additional human-friendly symbol name.
|
||||
- Added typings for custom indicators. Typescript equivalents of our existing examples are available here: [Custom Studies Typescript Examples](https://www.tradingview.com/charting-library-docs/latest/custom_studies/Custom-Studies-Examples).
|
||||
- [`symbol_search_complete`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.ChartingLibraryWidgetOptions#symbol_search_complete) has changed. The function now takes an additional search result object parameter, and returns an additional human-friendly symbol name.
|
||||
|
||||
**UI changes**
|
||||
|
||||
@@ -1009,8 +1103,8 @@ Please use [settings_adapter](https://www.tradingview.com/charting-library-docs/
|
||||
**Trading Platform**
|
||||
|
||||
- Default formatter `textNoWrap` has been removed.
|
||||
- `columnId` field of [SortingParameters](../api/interfaces/Broker.SortingParameters) has been renamed to `property`.
|
||||
- Required `id` field has been added to [column description](../api/interfaces/Broker.AccountManagerColumnBase#id).
|
||||
- Type of `formatter` field in [column description](../api/interfaces/Broker.AccountManagerColumnBase#formatter) has been changed to [StandardFormatterName | FormatterName](../api/enums/Charting_Library.StandardFormatterName).
|
||||
- `property` field has been removed from `column description`. Use [dataFields](../api/interfaces/Broker.AccountManagerColumnBase#datafields) field instead.
|
||||
- Type of `formatter` field in [SummaryField](../api/interfaces/Broker.AccountManagerSummaryField) has been changed to [StandardFormatterName](../api/enums/Charting_Library.StandardFormatterName).
|
||||
- `columnId` field of [SortingParameters](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.SortingParameters) has been renamed to `property`.
|
||||
- Required `id` field has been added to [column description](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.AccountManagerColumnBase#id).
|
||||
- Type of `formatter` field in [column description](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.AccountManagerColumnBase#formatter) has been changed to [StandardFormatterName | FormatterName](https://www.tradingview.com/charting-library-docs/latest/api/enums/Charting_Library.StandardFormatterName).
|
||||
- `property` field has been removed from `column description`. Use [dataFields](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.AccountManagerColumnBase#datafields) field instead.
|
||||
- Type of `formatter` field in [SummaryField](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Broker.AccountManagerSummaryField) has been changed to [StandardFormatterName](https://www.tradingview.com/charting-library-docs/latest/api/enums/Charting_Library.StandardFormatterName).
|
||||
|
||||
@@ -4,4 +4,4 @@ l.stopLevel.subscribe(this,this.syncPriceLevels.bind(this)),l.qty.subscribe(this
|
||||
this._profitPriceAxisView.update(e)))}migrateVersion(e,t,i){if(1===e&&this._points.length>=1){const e=[];e.push(this._points[0]);let t=this._points[0];if(t={price:t.price,index:this._getClosePointIndex(t.index),interval:this._properties.childs().interval.value()},e.push(t),this._points[1]&&e.push(this._points[1]),this._points[2]&&e.push(this._points[2]),this._points=e,this._timePoint.length>=1){const t=[],i=this._timePoint[0];t.push(i);const s={price:i.price,time_t:i.time_t,offset:this._getClosePointIndex(i.offset)};t.push(s),this._timePoint[1]&&e.push(this._points[1]),this._timePoint[2]&&e.push(this._points[2]),this._timePoint=t}}}restoreExternalState(e){if(!(0,g.isNumber)(e.entryPrice))return void super.restoreExternalState(e);let t;if(this.isActualSymbol())t=e;else{const{entryPrice:i,...s}=e,[r]=this._timePoint;r.price=i,t=s}this.properties().merge(t)}addPoint(e,t,i){e.price=this._roundPrice(e.price),super.addPoint(e,void 0,!0);const s={price:e.price,index:this._getClosePointIndex(e.index)};super._addPointIntenal(s,void 0,!0);const r=this._calculateActualEntry(e,s);if(r){super._addPointIntenal(r,void 0,!0);const e=this._findClosePoint(r,s);e&&super._addPointIntenal(e,void 0,!0)}return this._lastPoint=null,this._normalizePoints(),this.createServerPoints(),!0}setPoint(e,t,i,s){if(this.isSourceHidden())return;const r=this.properties().childs();switch(this._muteSyncLineStyle(),e){case 0:this._changeEntryPoint({...t,interval:this._model.mainSeries().interval()});break;case 2:r.stopPrice.setValue(this.prepareStopPrice(t.price));break;case 3:r.targetPrice.setValue(this.prepareProfitPrice(t.price));break;case 1:t.price=this._points[0].price,super.setPoint(1,t),this.recalculate()}this._unmuteSyncLineStyleWithoutApplyingChanges(),s||this.syncPriceLevels()}getPoint(e){if(this.isSourceHidden())return null;switch(e){case 0:return this._points[0];case 1:return{index:this._points[1].index,price:this._points[0].price};case 2:return{index:this._points[0].index,price:this.stopPrice()};case 3:return{index:this._points[0].index,price:this.profitPrice()}}return null}setPoints(e){this.isSourceHidden()||(this._muteSyncLineStyle(),super.setPoints(e),this.recalculate(),this._unmuteSyncLineStyleWithoutApplyingChanges(),this.syncPriceLevels())}start(){super.start(),this.recalculate()}startMoving(e,t,i,s){const n=(0,r.ensureDefined)(e.logical);n.price=this._roundPrice(n.price),super.startMoving(e,t,i)}move(e,t,i,s){const n=(0,r.ensureDefined)(e.logical);n.price=this._roundPrice(n.price),super.move(e,t,i),this.recalculate(),this._entryPriceAxisView.update((0,x.sourceChangeEvent)(this.id()))}axisPoints(){if(!this._points[h.RiskRewardPointIndex.ActualEntry])return[];const e=this._points[h.RiskRewardPointIndex.ActualEntry];let t=null;if(4===this._points.length)t=this._points[h.RiskRewardPointIndex.ActualClose];else{const e=this.lastBarData();if(!e)return[];t={index:e.index,price:e.closePrice}}return[e,t]}recalculateStateByData(){this.recalculate()}recalculate(){if(0===this.points().length)return
|
||||
;const e=this.properties().childs(),t=e.targetPrice.value(),i=e.stopPrice.value(),s=[this._points[0],this._points[1]],r=this._calculateActualEntry(this.points()[0],this.points()[1]),n=this._model.mainSeries().interval();if(r){s.push({...r,interval:n});const e=this._findClosePoint(r,this.points()[1]);e&&s.push({...e,interval:n})}this._points=s,t!==e.targetPrice.value()&&e.targetPrice.fireChanged(),i!==e.stopPrice.value()&&e.stopPrice.fireChanged()}syncPriceLevels(){const e=this.linkKey().value();if(e){const t=this.properties().childs();this._syncLineStyleChanges(e,{entryPrice:t.entryPrice.value(),stopLevel:t.stopLevel.value(),profitLevel:t.profitLevel.value()})}}entryPrice(){const e=this.points();return 0===e.length?this._timePoint[0].price:e[0].price}lastBarData(){const e=this.ownerSource()?.barsProvider();if(!e)return null;const t=e.bars().firstIndex(),i=e.bars().lastIndex();if(null===t||null===i||isNaN(t)||isNaN(i))return null;const s=this.points();if(4===s.length){const e=s[h.RiskRewardPointIndex.ActualClose];return e.index<t?null:{closePrice:e.price,index:Math.min(i,e.index)}}const n=s[h.RiskRewardPointIndex.Close];if(n.index<t)return null;const c=Math.min(i,n.index),a=e.bars().search(c,o.PlotRowSearchMode.NearestLeft);return null===a?null:{closePrice:(0,r.ensure)(a.value[4]),index:a.index}}ownerSourceBase(){const e=this.ownerSource()?.symbolSource().symbolInfo();return e?e.pricescale/e.minmov:100}getOrderTemplate(){return null}template(){const e=this.properties().childs(),t=super.template();return t.stopLevel=e.stopLevel.value(),t.profitLevel=e.profitLevel.value(),t}async additionalActions(e){return{actions:[new C.Action({actionId:"Chart.LineTool.RiskReward.Reverse",options:{checkable:!1,label:n.t(null,void 0,i(64489)),onExecute:()=>{const t=z.format({tool:(0,V.getTranslatedStringForSource)(A.TitleDisplayTarget.StatusLine,this)});e.beginUndoMacro(t);const i=function(e,t){const i=e.points(),s=e.zorder(),n=(0,r.ensureNotNull)(t.model().paneForSource(e)),o=(0,r.ensureNotNull)(e.ownerSource()),c=(0,r.ensureDefined)(I.get(e.toolname)),a=c.propertiesFactory(t.model().backgroundTheme().spawnOwnership(),e.properties().state()),l=e.linkKey().value(),u=l?w.CreateLineToolSyncMode.ForceOn:w.CreateLineToolSyncMode.ForceOff,h=t.createLineTool({pane:n,point:i[0],linkKey:l?(0,L.randomHash)():void 0,linetool:c.targetToolName,properties:a,ownerSource:o,synchronizationMode:u,sharingMode:e.sharingMode().value()});return h&&(t.startChangingLinetool(h,h.points()[1],1),t.changeLinePoint(i[1]),t.endChangingLinetool(!1),t.insertBefore([h],e),h.setZorder(s)),t.removeSource(e,!1),h}(this,e);e.endUndoMacro(),i&&e.model().selectionMacro((e=>{e.addSourceToSelection(i,null)}))}}})],placement:"CustomAction"}}_entryPointCurrencyRate(){return this.properties().childs().entryPointCurrencyRate.value()}_closePointCurrencyRate(){return this.properties().childs().closePointCurrencyRate.value()}_ignoreSourceEvent(e){return super._ignoreSourceEvent(e)&&e.sourceId!==this._model.mainSeries().id()}_applyTemplateImpl(e){
|
||||
const{targetPrice:t,stopPrice:i,entryPrice:s,...r}=e;super._applyTemplateImpl(r);const n=this.properties().childs();void 0!==e.stopLevel&&n.stopLevel.setValue(e.stopLevel),void 0!==e.profitLevel&&n.profitLevel.setValue(e.profitLevel)}_propertiesStateExclusions(){return[...super._propertiesStateExclusions(),"entryPrice","stopPrice","targetPrice"]}_correctPoints(e,t){if(!this.isActualSymbol())return!1;const i=super._correctPoints(e.slice(0,this.pointsCount()),t);for(let t=0;t<e.length;t++){const i=e[t];i.price=this._roundPrice(i.price)}return i}async _getPropertyDefinitionsViewModelClass(){return(await Promise.all([i.e(6406),i.e(3889),i.e(8009),i.e(8056),i.e(8537)]).then(i.bind(i,2243))).RiskRewardDefinitionsViewModel}_recalculateRiskSize(){if(this._riskInChange)return;const e=this.properties().childs(),t=e.risk.value(),i=e.riskDisplayMode.value(),s=e.accountSize.value();i===u.RiskDisplayMode.Percentage?e.riskSize.setValue(t/100*s):t>s?(e.risk.setValue(s),e.riskSize.setValue(s)):e.riskSize.setValue(t)}_roundPrice(e){const t=this.ownerSourceBase();return Math.round(e*t)/t}_ownerSourcePointValue(){return this.ownerSource()?.symbolSource().symbolInfo()?.pointvalue??1}_onSourceHiddenMayChange(){super._onSourceHiddenMayChange(),this._updateStudySource()}static _configureProperties(e){l.LineDataSource._configureProperties(e),e.addExcludedKey("stopLevel",1),e.addExcludedKey("profitLevel",1),e.addExcludedKey("stopPrice",1),e.addExcludedKey("targetPrice",1),e.addExcludedKey("entryPrice",1)}_onSeriesUpdated(e,t,i){this.isSourceHidden()||this._points.length<2||null!==i&&i.index>Math.max(this._points[0].index,this._points[1].index)||this.recalculateStateByData()}_recalculateRisk(){const e=this.properties().childs(),t=e.riskDisplayMode.value(),i=e.riskSize.value(),s=e.accountSize.value();let r=e.risk.value();r=t===u.RiskDisplayMode.Percentage?M(i/s*100):M(s/100*r),this._riskInChange=!0,e.risk.setValue(parseFloat(this._riskFormatter(t).format(r,{ignoreLocaleNumberFormat:!0}))),this._riskInChange=!1}_recalculateAmount(){if(0===this.points().length)return;const e=this.properties().childs(),t=e.accountSize.value(),i=e.entryPrice.value(),s=e.qty.value(),r=e.stopPrice.value(),n=e.targetPrice.value(),o=this._ownerSourcePointValue();e.amountTarget.setValue(this._amountTarget(t,n,i,s,o)),e.amountStop.setValue(this._amountStop(t,r,i,s,o))}_recalculateQty(){if(0===this.points().length)return;const e=this.properties().childs(),t=e.entryPrice.value(),i=e.stopPrice.value(),s=e.riskSize.value(),r=this._entryPointCurrencyRate(),n=null===r?NaN:s/(Math.abs(t-i)*this._ownerSourcePointValue()*r);e.qty.setValue(n)}_calculateActualEntry(e,t){const i=this.ownerSource();if(!i)return null;const s=i.barsProvider().bars();if(s.isEmpty())return null;const n=(0,r.ensureNotNull)(s.firstIndex()),o=Math.max(e.index,n),c=e.price,a=(0,r.ensureNotNull)(s.lastIndex()),l=Math.min(a,t.index-1);for(const e of s.rangeIterator(o,l+1)){const t=e.value;if(null!==t&&(0,r.ensure)(t[2])>=c&&(0,r.ensure)(t[3])<=c)return{index:e.index,price:c}}return null}_riskFormatter(e){
|
||||
return e===u.RiskDisplayMode.Percentage?(0,a.getNumericFormatter)(2):(0,a.getNumericFormatter)()}_getClosePointIndex(e){const t=this._model.timeScale(),i=Math.round(t.width()/t.barSpacing());return e+Math.max(3,Math.round(.15*i))}_findClosePoint(e,t){const i=this.ownerSource();if(!i)return null;const s=i.barsProvider().bars(),n=(0,r.ensureNotNull)(s.firstIndex()),o=Math.max(e.index,n),c=(0,r.ensureNotNull)(s.lastIndex()),a=Math.min(c,t.index-1);for(const e of s.rangeIterator(o,a+1)){const t=e.value;if(null===t)continue;const i=this._checkStopPrice(t);if(null!=i)return{index:e.index,price:i}}return null}_changeEntryPoint(e){const t=this.properties().childs(),i=t.stopPrice.value(),s=t.targetPrice.value(),r=1/this.ownerSourceBase(),n=Math.min(i,s)+r,o=Math.max(i,s)-r;e.price=Math.max(n,Math.min(o,this._roundPrice(e.price))),this.setPoints([e,{...this._points[1],price:e.price}]),t.stopPrice.setValue(i),t.targetPrice.setValue(s)}_updateStudySource(){if(!this._metaInfo)return;const e=this._properties.childs().currency.value(),t=this._model.mainSeries(),i="NONE"!==e&&e!==t.currency()&&!this.isSourceHidden();if(!i&&this._studySource?(this._studySource.destroy(),this._studySource=null,this._properties.childs().entryPointCurrencyRate.setValue(1),this._properties.childs().closePointCurrencyRate.setValue(1)):i&&!this._studySource&&(this._studySource=new RiskRewardStudyDataSource(this._model.chartApi(),t.seriesSource()),this._studySource.nonSeriesData().subscribe((e=>{e&&(this._properties.childs().entryPointCurrencyRate.setValue(e.currency_ratio[0]),this._properties.childs().closePointCurrencyRate.setValue(e.currency_ratio[1]??e.currency_ratio[0]))}))),this._studySource&&this._points.length>=2){const i=this._model.timeScale(),r=t.data().bars().firstIndex(),n=t.data().bars().lastIndex();if(null===r||null===n)return;const o=Math.min(n,Math.max(r,this._points[0].index)),c=Math.min(n,Math.max(r,this._points[1].index)),a=i.indexToTimePoint(o),l=i.indexToTimePoint(c);if(null!==a&&null!==l){const t={...this._studySource.inputs(),start_time:1e3*a,end_time:1e3*l,entry_price:this.entryPrice(),target_price:this.profitPrice(),stop_price:this.stopPrice(),account_currency:e};(0,s.default)(t,this._studySource.inputs())||this._studySource.setInputs(t),this._studySource.isStarted()||this._studySource.start()}}}}},76386:(e,t,i)=>{var s;i.d(t,{RiskDisplayMode:()=>s}),function(e){e.Percentage="percents",e.Money="money"}(s||(s={}))},76050:(e,t,i)=>{var s;i.d(t,{RiskRewardPointIndex:()=>s}),function(e){e[e.Entry=0]="Entry",e[e.Close=1]="Close",e[e.ActualEntry=2]="ActualEntry",e[e.ActualClose=3]="ActualClose"}(s||(s={}))}}]);
|
||||
return e===u.RiskDisplayMode.Percentage?(0,a.getNumericFormatter)(2):(0,a.getNumericFormatter)()}_getClosePointIndex(e){const t=this._model.timeScale(),i=Math.round(t.width()/t.barSpacing());return e+Math.max(3,Math.round(.15*i))}_findClosePoint(e,t){const i=this.ownerSource();if(!i)return null;const s=i.barsProvider().bars(),n=(0,r.ensureNotNull)(s.firstIndex()),o=Math.max(e.index,n),c=(0,r.ensureNotNull)(s.lastIndex()),a=Math.min(c,t.index-1);for(const e of s.rangeIterator(o,a+1)){const t=e.value;if(null===t)continue;const i=this._checkStopPrice(t);if(null!=i)return{index:e.index,price:i}}return null}_changeEntryPoint(e){const t=this.properties().childs(),i=t.stopPrice.value(),s=t.targetPrice.value(),r=1/this.ownerSourceBase(),n=Math.min(i,s)+r,o=Math.max(i,s)-r;e.price=Math.max(n,Math.min(o,this._roundPrice(e.price))),this.setPoints([e,{...this._points[1],price:e.price}]),t.stopPrice.setValue(i),t.targetPrice.setValue(s)}_updateStudySource(){if(!this._metaInfo||this._isDestroyed)return;const e=this._properties.childs().currency.value(),t=this._model.mainSeries(),i="NONE"!==e&&e!==t.currency()&&!this.isSourceHidden();if(!i&&this._studySource?(this._studySource.destroy(),this._studySource=null,this._properties.childs().entryPointCurrencyRate.setValue(1),this._properties.childs().closePointCurrencyRate.setValue(1)):i&&!this._studySource&&(this._studySource=new RiskRewardStudyDataSource(this._model.chartApi(),t.seriesSource()),this._studySource.nonSeriesData().subscribe((e=>{e&&(this._properties.childs().entryPointCurrencyRate.setValue(e.currency_ratio[0]),this._properties.childs().closePointCurrencyRate.setValue(e.currency_ratio[1]??e.currency_ratio[0]))}))),this._studySource&&this._points.length>=2){const i=this._model.timeScale(),r=t.data().bars().firstIndex(),n=t.data().bars().lastIndex();if(null===r||null===n)return;const o=Math.min(n,Math.max(r,this._points[0].index)),c=Math.min(n,Math.max(r,this._points[1].index)),a=i.indexToTimePoint(o),l=i.indexToTimePoint(c);if(null!==a&&null!==l){const t={...this._studySource.inputs(),start_time:1e3*a,end_time:1e3*l,entry_price:this.entryPrice(),target_price:this.profitPrice(),stop_price:this.stopPrice(),account_currency:e};(0,s.default)(t,this._studySource.inputs())||this._studySource.setInputs(t),this._studySource.isStarted()||this._studySource.start()}}}}},76386:(e,t,i)=>{var s;i.d(t,{RiskDisplayMode:()=>s}),function(e){e.Percentage="percents",e.Money="money"}(s||(s={}))},76050:(e,t,i)=>{var s;i.d(t,{RiskRewardPointIndex:()=>s}),function(e){e[e.Entry=0]="Entry",e[e.Close=1]="Close",e[e.ActualEntry=2]="ActualEntry",e[e.ActualClose=3]="ActualClose"}(s||(s={}))}}]);
|
||||
File diff suppressed because one or more lines are too long
@@ -4,7 +4,7 @@ indeterminate:e.indeterminate,checked:e.checked,disabled:e.disabled,intent:e.int
|
||||
;13!==t&&32!==t||(e.preventDefault(),r.current instanceof HTMLElement&&r.current.click())},"data-role":"menuitem","aria-disabled":e.disabled||void 0})}));var w=n(90186);class x extends o.PureComponent{constructor(e){super(e),this._itemRef=null,this._menuElementRef=o.createRef(),this._menuRef=null,this._handleClick=e=>{e.isDefaultPrevented()||this.state.disabled||(this._hasSubItems()?this._showSubMenu():(this.state.doNotCloseOnClick||(0,a.globalCloseMenu)(),this.props.action.execute(),this._trackEvent(),this.props.onExecute&&this.props.onExecute(this.props.action)))},this._handleClickToolbox=()=>{(0,a.globalCloseMenu)()},this._handleItemMouseOver=()=>{this._showSubMenu(),this._setCurrentContextValue()},this._handleMenuMouseOver=()=>{this._setCurrentContextValue()},this._showSubMenu=()=>{this.props.onShowSubMenu(this.props.action)},this._calcSubMenuPos=e=>function(e,t,n={x:0,y:10}){if(t){const{left:n,right:o,top:s}=t.getBoundingClientRect(),r=document.documentElement.clientWidth,a={x:n-e,y:s},i={x:o,y:s};return(0,l.isRtl)()?n<=e?i:a:r-o>=e?i:a}return n}(e.contentWidth,this._itemRef),this._updateState=e=>{this.setState(e.getState())},this._setItemRef=e=>{this._itemRef=e},this._handleMenuRef=e=>{this._menuRef=e},this._registerSubmenu=()=>this.context?.registerSubmenu(this.props.action.id,(e=>(0,s.ensureNotNull)(this._itemRef).contains(e)||null!==this._menuElementRef.current&&this._menuElementRef.current.contains(e))),this.state={...this.props.action.getState()}}componentDidMount(){this.props.action.onUpdate().subscribe(this,this._updateState),this.state.subItems.length&&(this._unsubscribe=this._registerSubmenu()),this.props.reference&&(this._itemRef=this.props.reference.current)}componentDidUpdate(e,t){t.loading!==this.state.loading&&this.props.onRequestUpdate?.(),0===t.subItems.length&&this.state.subItems.length>0&&(this._unsubscribe=this._registerSubmenu()),t.subItems.length>0&&0===this.state.subItems.length&&this._unsubscribe?.(),t.subItems!==this.state.subItems&&null!==this._menuRef&&this._menuRef.update()}componentWillUnmount(){this.props.action.onUpdate().unsubscribe(this,this._updateState),this._unsubscribe&&this._unsubscribe()}render(){const e=this.context?.current?this.context.current===this.props.action.id:this.props.isSubMenuOpened;return this.state.loading?o.createElement(v,{size:this.state.size}):o.createElement(g,{...(0,w.filterDataProps)(this.props),theme:this.props.theme,ref:this.props.reference??this._setItemRef,onClick:this._handleClick,onClickToolbox:this._handleClickToolbox,onMouseOver:this._handleItemMouseOver,hovered:e,hasSubItems:this._hasSubItems(),actionName:this.state.name,checkboxInput:this.props.checkboxInput,selected:this.props.selected,className:this.props.className,...this.state},o.createElement(r.ContextMenu,{isOpened:e,items:this.state.subItems,position:this._calcSubMenuPos,menuStatName:this.props.menuStatName,parentStatName:this._getStatName(),menuElementReference:this._menuElementRef,onMouseOver:this.state.subItems.length?this._handleMenuMouseOver:void 0,ref:this._handleMenuRef}))}
|
||||
_setCurrentContextValue(){this.state.subItems.length&&this.context?.setCurrent(this.props.action.id)}_hasSubItems(){return this.state.subItems.length>0}_trackEvent(){const e=this._getStatName();(0,i.trackEvent)("ContextMenuClick",this.props.menuStatName||"",e)}_getStatName(){return[this.props.parentStatName,this.state.statName].filter((e=>Boolean(e))).join(".")}}x.contextType=c.SubmenuContext},5304:(e,t,n)=>{"use strict";n.d(t,{ContextMenuItem:()=>w,DEFAUL_CONTEXT_MENU_ITEM_THEME:()=>E});var o=n(50959),s=n(97754),r=n(70673),a=n(49483),i=n(71382),l=n(96040),c=n(36189),u=n(99025),d=n(25812),h=n(56570),m=n(90186),p=n(60925),v=n(60004),b=n(14665),f=n(31668);const E=f,g=h.enabled("items_favoriting");class w extends o.PureComponent{constructor(){super(...arguments),this._handleMouseOver=e=>{(0,i.isTouchEvent)(e.nativeEvent)||this.props.onMouseOver&&this.props.onMouseOver()},this._handleClickToolbox=e=>{e.stopPropagation(),this.props.onClickToolbox&&this.props.onClickToolbox()}}render(){const{hasSubItems:e,shortcutHint:t,hint:n,invisibleHotkey:r,favourite:i,theme:l=f,size:d="normal",onKeyDown:h,label:p,jsxLabel:v,styledLabel:E}=this.props,w=this.props.checkable&&this.props.checkboxInput?"label":"div";return o.createElement(o.Fragment,null,o.createElement("tr",{...(0,m.filterDataProps)(this.props),...(0,m.filterAriaProps)(this.props),id:this.props.id,className:s(this.props.className,l.item,!this.props.noInteractive&&l.interactive,this.props.hovered&&l.hovered,this.props.disabled&&l.disabled,this.props.active&&l.active,this.props.selected&&l.selected,l[d]),onClick:this.props.onClick,onMouseOver:this._handleMouseOver,ref:this.props.reference,"data-action-name":this.props.actionName,tabIndex:this.props.tabIndex,onKeyDown:h},g&&void 0!==i&&o.createElement("td",{className:l.favoriteActionCell},o.createElement(c.FavoriteButton,{id:`${this.props.id}-favorite`,className:l.favourite,isFilled:i,onClick:this.props.onFavouriteClick,"data-role":"list-item-action"})),o.createElement("td",{className:s(l.iconCell),"data-icon-cell":!0},this._icon(l)),o.createElement("td",{className:l.contentCell},o.createElement(w,{className:l.content},o.createElement("span",{className:s(l.label,this.props.checked&&l.checked),"data-label":!0},!v&&E?E.map((({text:e,...t},n)=>o.createElement("span",{key:n,style:t},e))):v??p),this._toolbox(l),e&&o.createElement("span",{className:l.arrowIcon,dangerouslySetInnerHTML:{__html:b},"data-submenu-arrow":!0}),!e&&t&&!a.CheckMobile.any()&&o.createElement(u.Hint,{className:s(r&&l.invisibleHotkey),text:t}),!e&&!t&&n&&o.createElement(u.Hint,{text:n})))),o.createElement("tr",{className:l.subMenu},o.createElement("td",null,this.props.children)))}_icon(e){if(this.props.checkable){if(this.props.checkboxInput)return o.createElement(r.CheckboxInput,{className:s(e.icon,e.checkboxInput),checked:this.props.checked});if(this.props.checked){const t=!this.props.icon&&!this.props.iconChecked,n=this.props.iconChecked||this.props.icon||v;return o.createElement("span",{className:e.icon,dangerouslySetInnerHTML:{__html:n},
|
||||
"data-icon-checkmark":t})}return this.props.icon?o.createElement("span",{className:e.icon,dangerouslySetInnerHTML:{__html:this.props.icon}}):o.createElement("span",{className:e.icon})}return this.props.icon?o.createElement("span",{className:e.icon,dangerouslySetInnerHTML:{__html:this.props.icon}}):null}_toolbox(e){return this.props.toolbox?o.createElement("span",{className:s(e.toolbox,this.props.showToolboxOnHover&&e.showToolboxOnHover),onClick:this._handleClickToolbox,"data-toolbox":!0},this._renderToolboxContent()):null}_renderToolboxContent(){return this.props.toolbox&&this.props.toolbox.type===d.ToolboxType.Delete?o.createElement(l.RemoveButton,{icon:p,onClick:this.props.toolbox.action}):null}}},91561:(e,t,n)=>{"use strict";n.d(t,{ContextMenu:()=>_,OverlapContextMenu:()=>M});var o=n(50959),s=n(97754),r=n.n(s),a=n(86431),i=n(27317),l=n(52778);class c extends o.PureComponent{constructor(){super(...arguments),this._handleKeyDown=e=>{e.keyCode===this.props.keyCode&&this.props.handler(e)}}componentDidMount(){document.addEventListener(this.props.eventType||"keydown",this._handleKeyDown,!1)}componentWillUnmount(){document.removeEventListener(this.props.eventType||"keydown",this._handleKeyDown,!1)}render(){return null}}var u=n(75535),d=n(37558),h=n(90692),m=n(20669);function p(e){return o.createElement("li",{className:m.separator})}var v=n(23829),b=n(41590),f=n(59064);function E(e){const t=e.action.custom()??e.action,[n,s]=(0,o.useState)((()=>t.getState())),[r,a]=(0,o.useState)(!1),i=!!n.subItems.length,l=i&&r;return(0,o.useEffect)((()=>{const e=()=>s(t.getState());return t.onUpdate().subscribe(null,e),()=>{t.onUpdate().unsubscribe(null,e)}}),[]),o.createElement(v.ContextMenuItem,{...n,onClick:function(e){if(n.disabled||e.defaultPrevented)return;if(i)return void a(!0);n.doNotCloseOnClick||(0,f.globalCloseMenu)();t.execute()},isLoading:n.loading,isHovered:l},l&&o.createElement(b.Drawer,{onClose:c},o.createElement(x,{items:n.subItems,parentAction:t,closeNested:c})));function c(e){e&&e.preventDefault(),a(!1)}}var g=n(54627),w=n(66493);function x(e){const{items:t,parentAction:n,closeNested:s}=e,r=!Boolean(n)&&t.every((e=>!Boolean("separator"!==e.type&&(e.getState().icon||e.getState().checkable))));return o.createElement(g.EmptyIconsContext.Provider,{value:r},o.createElement("ul",null,n&&o.createElement(o.Fragment,null,o.createElement(v.ContextMenuItem,{label:n.getState().label,isTitle:!0,active:!1,disabled:!1,subItems:[],checkable:!1,checked:!1,doNotCloseOnClick:!1,icon:w,onClick:s}),o.createElement(p,null)),t.map((e=>{switch(e.type){case"action":return o.createElement(E,{key:e.id,action:e});case"separator":return o.createElement(p,{key:e.id})}}))))}const k=o.createContext(null);var y=n(20243),C=n(37399);class _ extends o.PureComponent{constructor(e){super(e),this._menuRef=o.createRef(),this._handleRequestUpdate=()=>{this.update()},this._handleClose=()=>{this.props.onClose&&this.props.onClose()},this._handleOutsideClickClose=e=>{const{doNotCloseOn:t,onClose:n}=this.props;!n||void 0!==t&&t.contains(e.target)||n()},
|
||||
this._handleFocusOnOpen=()=>{this.props.menuElementReference?.current&&this.props.takeFocus&&this.props.menuElementReference?.current.focus({preventScroll:!0})},this._handleFocus=e=>{this.props.isKeyboardEvent&&e.target&&(0,y.focusFirstMenuItem)(e.target)},this.state={}}render(){const{isOpened:e,onClose:t,items:n,doNotCloseOn:s,menuStatName:a,parentStatName:m,takeFocus:p,...v}=this.props;return e?o.createElement(d.DrawerManager,null,o.createElement(c,{keyCode:27,eventType:"keyup",handler:this._handleClose}),o.createElement(h.MatchMedia,{rule:"(max-width: 440px)"},(t=>this._isDrawer(t)?o.createElement(k.Provider,{value:{type:"drawer"}},o.createElement(b.Drawer,{onClose:this._handleClose,position:"Bottom","data-name":v["data-name"]},o.createElement(x,{items:n}))):o.createElement(k.Provider,{value:{type:"menu"}},o.createElement(l.OutsideEvent,{handler:this._handleOutsideClickClose,mouseDown:!0,touchStart:!0,reference:this.props.menuElementReference},(t=>o.createElement(i.Menu,{...v,reference:t,className:r()(C.menu,"context-menu"),onClose:this._handleClose,noMomentumBasedScroll:!0,ref:this._menuRef,tabIndex:p?-1:void 0,onOpen:this._handleFocusOnOpen,onFocus:this._handleFocus,onKeyDown:y.handleAccessibleMenuKeyDown},o.createElement(u.ActionsTable,{items:n,menuStatName:a,parentStatName:m,parentIsOpened:e,onRequestUpdate:this._handleRequestUpdate})))))))):null}update(){this._menuRef.current&&this._menuRef.current.update(),this.props.isKeyboardEvent&&this.props.menuElementReference?.current&&document.activeElement===this.props.menuElementReference.current&&(0,y.focusFirstMenuItem)(this.props.menuElementReference.current)}_isDrawer(e){return void 0===this.props.mode?e:"drawer"===this.props.mode}}const M=(0,a.makeOverlapable)(_)},99025:(e,t,n)=>{"use strict";n.d(t,{Hint:()=>i});var o=n(50959),s=n(97754),r=n.n(s),a=n(31668);function i(e){const{text:t="",className:n}=e;return o.createElement("span",{className:r()(a.shortcut,n)},t)}},23829:(e,t,n)=>{"use strict";n.d(t,{ContextMenuItem:()=>p});var o=n(50959),s=n(97754),r=n.n(s),a=n(9745),i=n(26996),l=n(54627),c=n(99025),u=n(39750),d=n(79978),h=n(60925),m=n(70159);function p(e){const{className:t,isTitle:n,isLoading:s,isHovered:p,active:v,checkable:b,disabled:f,checked:E,icon:g,iconChecked:w,hint:x,subItems:k,label:y,styledLabel:C,onClick:_,children:M,toolbox:S,jsxLabel:N,size:I="normal"}=e,D=(0,o.useContext)(l.EmptyIconsContext),L=!!k.length;return s?o.createElement("li",{className:r()(t,m.item,m.loading,m[I])},o.createElement(i.Loader,null)):o.createElement("li",{className:r()(t,m.item,m.interactive,n&&m.title,f&&m.disabled,p&&m.hovered,v&&m.active,D&&m.emptyIcons,m[I]),onClick:_},o.createElement(a.Icon,{className:r()(m.icon),icon:function(){if(b&&E)return w||g||u;return g}()}),o.createElement("span",{className:r()(m.label)},!N&&C?C.map((({text:e,...t},n)=>o.createElement("span",{key:n,style:t},e))):N??y),!!S&&o.createElement(a.Icon,{onClick:function(){S&&S.action()},className:m.remove,icon:h}),!L&&x&&o.createElement(c.Hint,{className:m.shortcut,text:x
|
||||
this._handleFocusOnOpen=()=>{this.props.menuElementReference?.current&&this.props.takeFocus&&this.props.menuElementReference?.current.focus({preventScroll:!0})},this._handleFocus=e=>{this.props.isKeyboardEvent&&e.target&&(0,y.focusFirstMenuItem)(e.target)},this.state={}}render(){const{isOpened:e,onClose:t,items:n,doNotCloseOn:s,menuStatName:a,parentStatName:m,takeFocus:p,...v}=this.props;return e&&n.length>0?o.createElement(d.DrawerManager,null,o.createElement(c,{keyCode:27,eventType:"keyup",handler:this._handleClose}),o.createElement(h.MatchMedia,{rule:"(max-width: 440px)"},(t=>this._isDrawer(t)?o.createElement(k.Provider,{value:{type:"drawer"}},o.createElement(b.Drawer,{onClose:this._handleClose,position:"Bottom","data-name":v["data-name"]},o.createElement(x,{items:n}))):o.createElement(k.Provider,{value:{type:"menu"}},o.createElement(l.OutsideEvent,{handler:this._handleOutsideClickClose,mouseDown:!0,touchStart:!0,reference:this.props.menuElementReference},(t=>o.createElement(i.Menu,{...v,reference:t,className:r()(C.menu,"context-menu"),onClose:this._handleClose,noMomentumBasedScroll:!0,ref:this._menuRef,tabIndex:p?-1:void 0,onOpen:this._handleFocusOnOpen,onFocus:this._handleFocus,onKeyDown:y.handleAccessibleMenuKeyDown},o.createElement(u.ActionsTable,{items:n,menuStatName:a,parentStatName:m,parentIsOpened:e,onRequestUpdate:this._handleRequestUpdate})))))))):null}update(){this._menuRef.current&&this._menuRef.current.update(),this.props.isKeyboardEvent&&this.props.menuElementReference?.current&&document.activeElement===this.props.menuElementReference.current&&(0,y.focusFirstMenuItem)(this.props.menuElementReference.current)}_isDrawer(e){return void 0===this.props.mode?e:"drawer"===this.props.mode}}const M=(0,a.makeOverlapable)(_)},99025:(e,t,n)=>{"use strict";n.d(t,{Hint:()=>i});var o=n(50959),s=n(97754),r=n.n(s),a=n(31668);function i(e){const{text:t="",className:n}=e;return o.createElement("span",{className:r()(a.shortcut,n)},t)}},23829:(e,t,n)=>{"use strict";n.d(t,{ContextMenuItem:()=>p});var o=n(50959),s=n(97754),r=n.n(s),a=n(9745),i=n(26996),l=n(54627),c=n(99025),u=n(39750),d=n(79978),h=n(60925),m=n(70159);function p(e){const{className:t,isTitle:n,isLoading:s,isHovered:p,active:v,checkable:b,disabled:f,checked:E,icon:g,iconChecked:w,hint:x,subItems:k,label:y,styledLabel:C,onClick:_,children:M,toolbox:S,jsxLabel:N,size:I="normal"}=e,D=(0,o.useContext)(l.EmptyIconsContext),L=!!k.length;return s?o.createElement("li",{className:r()(t,m.item,m.loading,m[I])},o.createElement(i.Loader,null)):o.createElement("li",{className:r()(t,m.item,m.interactive,n&&m.title,f&&m.disabled,p&&m.hovered,v&&m.active,D&&m.emptyIcons,m[I]),onClick:_},o.createElement(a.Icon,{className:r()(m.icon),icon:function(){if(b&&E)return w||g||u;return g}()}),o.createElement("span",{className:r()(m.label)},!N&&C?C.map((({text:e,...t},n)=>o.createElement("span",{key:n,style:t},e))):N??y),!!S&&o.createElement(a.Icon,{onClick:function(){S&&S.action()},className:m.remove,icon:h}),!L&&x&&o.createElement(c.Hint,{className:m.shortcut,text:x
|
||||
}),L&&o.createElement(a.Icon,{className:m.nested,icon:d}),M)}},54627:(e,t,n)=>{"use strict";n.d(t,{EmptyIconsContext:()=>o});const o=n(50959).createContext(!1)},37558:(e,t,n)=>{"use strict";n.d(t,{DrawerContext:()=>a,DrawerManager:()=>r});var o=n(50959),s=n(99054);class r extends o.PureComponent{constructor(e){super(e),this._isBodyFixed=!1,this._addDrawer=e=>{this.setState((t=>({stack:[...t.stack,e]})))},this._removeDrawer=e=>{this.setState((t=>({stack:t.stack.filter((t=>t!==e))})))},this.state={stack:[]}}componentDidUpdate(e,t){!t.stack.length&&this.state.stack.length&&((0,s.setFixedBodyState)(!0),this._isBodyFixed=!0),t.stack.length&&!this.state.stack.length&&this._isBodyFixed&&((0,s.setFixedBodyState)(!1),this._isBodyFixed=!1)}componentWillUnmount(){this.state.stack.length&&this._isBodyFixed&&(0,s.setFixedBodyState)(!1)}render(){return o.createElement(a.Provider,{value:{addDrawer:this._addDrawer,removeDrawer:this._removeDrawer,currentDrawer:this.state.stack.length?this.state.stack[this.state.stack.length-1]:null}},this.props.children)}}const a=o.createContext(null)},41590:(e,t,n)=>{"use strict";n.d(t,{Drawer:()=>m});var o=n(50959),s=n(50151),r=n(97754),a=n(92184),i=n(42842),l=n(37558),c=n(29197),u=n(86656),d=n(36718);var h;function m(e){const{position:t="Bottom",onClose:n,children:u,reference:h,className:m,theme:v=d}=e,b=(0,s.ensureNotNull)((0,o.useContext)(l.DrawerContext)),[f]=(0,o.useState)((()=>(0,a.randomHash)())),E=(0,o.useRef)(null),g=(0,o.useContext)(c.CloseDelegateContext);return(0,o.useLayoutEffect)((()=>((0,s.ensureNotNull)(E.current).focus({preventScroll:!0}),g.subscribe(b,n),b.addDrawer(f),()=>{b.removeDrawer(f),g.unsubscribe(b,n)})),[]),o.createElement(i.Portal,null,o.createElement("div",{ref:h,className:r(d.wrap,d[`position${t}`])},f===b.currentDrawer&&o.createElement("div",{className:d.backdrop,onClick:n}),o.createElement(p,{className:r(v.drawer,d[`position${t}`],m),ref:E,"data-name":e["data-name"]},u)))}!function(e){e.Left="Left",e.Bottom="Bottom"}(h||(h={}));const p=(0,o.forwardRef)(((e,t)=>{const{className:n,...s}=e;return o.createElement(u.TouchScrollContainer,{className:r(d.drawer,n),tabIndex:-1,ref:t,...s})}))},71402:(e,t,n)=>{"use strict";n.d(t,{RemoveTitleType:()=>o,removeTitlesMap:()=>r});var o,s=n(11542);!function(e){e.Add="add",e.Remove="remove"}(o||(o={}));const r={[o.Add]:s.t(null,void 0,n(69207)),[o.Remove]:s.t(null,void 0,n(85106))}},36189:(e,t,n)=>{"use strict";n.d(t,{FavoriteButton:()=>h});var o=n(50959),s=n(97754),r=n.n(s),a=n(9745),i=n(71402),l=n(74670),c=n(39146),u=n(48010),d=n(22413);function h(e){const{className:t,isFilled:n,isActive:s,onClick:h,title:m,...p}=e,[v,b]=(0,l.useActiveDescendant)(null),f=m??(n?i.removeTitlesMap[i.RemoveTitleType.Remove]:i.removeTitlesMap[i.RemoveTitleType.Add]);return(0,o.useLayoutEffect)((()=>{const e=v.current;e instanceof HTMLElement&&f&&e.dispatchEvent(new CustomEvent("common-tooltip-update"))}),[f,v]),o.createElement(a.Icon,{...p,className:r()(d.favorite,"apply-common-tooltip",n&&d.checked,s&&d.active,b&&d.focused,t),onClick:h,icon:n?c:u,
|
||||
title:f,ariaLabel:f,ref:v})}},96040:(e,t,n)=>{"use strict";n.d(t,{RemoveButton:()=>d});var o=n(11542),s=n(50959),r=n(97754),a=n.n(r),i=n(9745),l=n(74670),c=n(33765),u=n(35990);function d(e){const{className:t,isActive:r,onClick:d,onMouseDown:h,title:m,hidden:p,"data-name":v="remove-button",icon:b,...f}=e,[E,g]=(0,l.useActiveDescendant)(null);return s.createElement(i.Icon,{...f,"data-name":v,className:a()(u.button,"apply-common-tooltip",r&&u.active,p&&u.hidden,g&&u.focused,t),icon:b||c,onClick:d,onMouseDown:h,title:m??o.t(null,void 0,n(67410)),ariaLabel:m??o.t(null,void 0,n(67410)),ref:E})}},86656:(e,t,n)=>{"use strict";n.d(t,{TouchScrollContainer:()=>c});var o=n(50959),s=n(59142),r=n(50151),a=n(49483);const i=CSS.supports("overscroll-behavior","none");let l=0;const c=(0,o.forwardRef)(((e,t)=>{const{children:n,...r}=e,c=(0,o.useRef)(null);return(0,o.useImperativeHandle)(t,(()=>c.current)),(0,o.useLayoutEffect)((()=>{if(a.CheckMobile.iOS())return l++,null!==c.current&&(i?1===l&&(document.body.style.overscrollBehavior="none"):(0,s.disableBodyScroll)(c.current,{allowTouchMove:u(c)})),()=>{l--,null!==c.current&&(i?0===l&&(document.body.style.overscrollBehavior=""):(0,s.enableBodyScroll)(c.current))}}),[]),o.createElement("div",{ref:c,...r},n)}));function u(e){return t=>{const n=(0,r.ensureNotNull)(e.current),o=document.activeElement;return!n.contains(t)||null!==o&&n.contains(o)&&o.contains(t)}}},20243:(e,t,n)=>{"use strict";n.d(t,{focusFirstMenuItem:()=>u,handleAccessibleMenuFocus:()=>l,handleAccessibleMenuKeyDown:()=>c,queryMenuElements:()=>m});var o=n(19291),s=n(57177),r=n(68335),a=n(15754);const i=[37,39,38,40];function l(e,t){if(!e.target)return;const n=e.relatedTarget?.getAttribute("aria-activedescendant");if(e.relatedTarget!==t.current){const e=n&&document.getElementById(n);if(!e||e!==t.current)return}u(e.target)}function c(e){if(e.defaultPrevented)return;const t=(0,r.hashFromEvent)(e);if(!i.includes(t))return;const n=document.activeElement;if(!(document.activeElement instanceof HTMLElement))return;const a=m(e.currentTarget).sort(o.navigationOrderComparator);if(0===a.length)return;const l=document.activeElement.closest('[data-role="menuitem"]')||document.activeElement.parentElement?.querySelector('[data-role="menuitem"]');if(!(l instanceof HTMLElement))return;const c=a.indexOf(l);if(-1===c)return;const u=p(l),v=u.indexOf(document.activeElement),b=-1!==v,f=e=>{n&&(0,s.becomeSecondaryElement)(n),(0,s.becomeMainElement)(e),e.focus()};switch((0,o.mapKeyCodeToDirection)(t)){case"inlinePrev":if(!u.length)return;e.preventDefault(),f(0===v?a[c]:b?d(u,v,-1):u[u.length-1]);break;case"inlineNext":if(!u.length)return;e.preventDefault(),v===u.length-1?f(a[c]):f(b?d(u,v,1):u[0]);break;case"blockPrev":{e.preventDefault();const t=d(a,c,-1);if(b){const e=h(t,v);f(e||t);break}f(t);break}case"blockNext":{e.preventDefault();const t=d(a,c,1);if(b){const e=h(t,v);f(e||t);break}f(t)}}}function u(e){const[t]=m(e);t&&((0,s.becomeMainElement)(t),t.focus())}function d(e,t,n){return e[(t+e.length+n)%e.length]}function h(e,t){const n=p(e)
|
||||
;return n.length?n[(t+n.length)%n.length]:null}function m(e){return Array.from(e.querySelectorAll('[data-role="menuitem"]:not([disabled]):not([aria-disabled])')).filter((0,a.createScopedVisibleElementFilter)(e))}function p(e){return Array.from(e.querySelectorAll("[tabindex]:not([disabled]):not([aria-disabled])")).filter((0,a.createScopedVisibleElementFilter)(e))}},57177:(e,t,n)=>{"use strict";var o;function s(e){e.dispatchEvent(new CustomEvent("roving-tabindex:main-element"))}function r(e){e.dispatchEvent(new CustomEvent("roving-tabindex:secondary-element"))}n.d(t,{becomeMainElement:()=>s,becomeSecondaryElement:()=>r}),function(e){e.MainElement="roving-tabindex:main-element",e.SecondaryElement="roving-tabindex:secondary-element"}(o||(o={}))},75535:(e,t,n)=>{"use strict";n.d(t,{ActionsTable:()=>i});var o=n(50959),s=n(21320);function r(e){return o.createElement("tr",{className:s.row},o.createElement("td",null,o.createElement("div",{className:s.line})),o.createElement("td",null,o.createElement("div",{className:s.line}),e.hint?o.createElement("div",{className:s.hint},e.hint):null))}var a=n(10772);class i extends o.PureComponent{constructor(e){super(e),this._handleShowSubMenu=e=>{const t=e.getState();this.setState({showSubMenuOf:t.subItems.length?e:void 0})},this.state={}}render(){return o.createElement("table",null,o.createElement("tbody",null,this.props.items.map((e=>this._item(e)))))}static getDerivedStateFromProps(e,t){return!e.parentIsOpened&&t.showSubMenuOf?{showSubMenuOf:void 0}:null}_item(e){switch(e.type){case"separator":return o.createElement(r,{key:e.id,hint:e.getHint()});case"action":const t=e.custom()??e;return o.createElement(a.ContextMenuAction,{key:t.id,action:t,onShowSubMenu:this._handleShowSubMenu,isSubMenuOpened:this.state.showSubMenuOf===t,menuStatName:this.props.menuStatName,parentStatName:this.props.parentStatName,onRequestUpdate:this.props.onRequestUpdate})}}}},60925:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M12 4h3v1h-1.04l-.88 9.64a1.5 1.5 0 0 1-1.5 1.36H6.42a1.5 1.5 0 0 1-1.5-1.36L4.05 5H3V4h3v-.5C6 2.67 6.67 2 7.5 2h3c.83 0 1.5.67 1.5 1.5V4ZM7.5 3a.5.5 0 0 0-.5.5V4h4v-.5a.5.5 0 0 0-.5-.5h-3ZM5.05 5l.87 9.55a.5.5 0 0 0 .5.45h5.17a.5.5 0 0 0 .5-.45L12.94 5h-7.9Z"/></svg>'},60004:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M22 9.06 11 20 6 14.7l1.09-1.02 3.94 4.16L20.94 8 22 9.06Z"/></svg>'},65890:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 9" width="11" height="9" fill="none"><path stroke="currentColor" stroke-width="2" d="M0.999878 4L3.99988 7L9.99988 1"/></svg>'},66493:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.5 20L11 14.5 16.5 9"/></svg>'},79978:e=>{
|
||||
@@ -1,31 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2751],{66783:e=>{"use strict";var t=Object.prototype.hasOwnProperty;function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}e.exports=function(e,n){if(r(e,n))return!0;if("object"!=typeof e||null===e||"object"!=typeof n||null===n)return!1;var o=Object.keys(e),a=Object.keys(n);if(o.length!==a.length)return!1;for(var s=0;s<o.length;s++)if(!t.call(n,o[s])||!r(e[o[s]],n[o[s]]))return!1;return!0}},88317:e=>{e.exports={pills:"pills-PVWoXu5j",primary:"primary-PVWoXu5j",gray:"gray-PVWoXu5j",selected:"selected-PVWoXu5j",grouped:"grouped-PVWoXu5j",active:"active-PVWoXu5j",disableActiveOnTouch:"disableActiveOnTouch-PVWoXu5j",disableActiveStateStyles:"disableActiveStateStyles-PVWoXu5j",withGrouped:"withGrouped-PVWoXu5j","quiet-primary":"quiet-primary-PVWoXu5j",green:"green-PVWoXu5j",red:"red-PVWoXu5j",blue:"blue-PVWoXu5j",secondary:"secondary-PVWoXu5j",ghost:"ghost-PVWoXu5j"}},1538:e=>{e.exports={lightButton:"lightButton-bYDQcOkp",link:"link-bYDQcOkp",ltr:"ltr-bYDQcOkp",rtl:"rtl-bYDQcOkp","typography-regular16px":"typography-regular16px-bYDQcOkp","typography-medium16px":"typography-medium16px-bYDQcOkp","typography-regular14px":"typography-regular14px-bYDQcOkp","typography-semibold14px":"typography-semibold14px-bYDQcOkp","typography-semibold16px":"typography-semibold16px-bYDQcOkp",content:"content-bYDQcOkp",visuallyHidden:"visuallyHidden-bYDQcOkp",nowrap:"nowrap-bYDQcOkp",ellipsisContainer:"ellipsisContainer-bYDQcOkp",textWrapContainer:"textWrapContainer-bYDQcOkp",textWrapWithEllipsis:"textWrapWithEllipsis-bYDQcOkp",slot:"slot-bYDQcOkp",caret:"caret-bYDQcOkp",activeCaret:"activeCaret-bYDQcOkp",xsmall:"xsmall-bYDQcOkp",withStartSlot:"withStartSlot-bYDQcOkp",withEndSlot:"withEndSlot-bYDQcOkp",noContent:"noContent-bYDQcOkp",wrap:"wrap-bYDQcOkp",small:"small-bYDQcOkp",medium:"medium-bYDQcOkp"}},78217:e=>{e.exports={pair:"pair-ocURKVwI",xxceptionallysmalldonotusebrv1023:"xxceptionallysmalldonotusebrv1023-ocURKVwI",xxxxsmall:"xxxxsmall-ocURKVwI",xxxsmall:"xxxsmall-ocURKVwI",xxsmall:"xxsmall-ocURKVwI",xsmall:"xsmall-ocURKVwI",small:"small-ocURKVwI",medium:"medium-ocURKVwI",large:"large-ocURKVwI",xlarge:"xlarge-ocURKVwI",xxlarge:"xxlarge-ocURKVwI",xxxlarge:"xxxlarge-ocURKVwI",logo:"logo-ocURKVwI",skeleton:"skeleton-ocURKVwI",empty:"empty-ocURKVwI"}},34869:e=>{e.exports={hidden:"hidden-DgcIT6Uz",fadeInWrapper:"fadeInWrapper-DgcIT6Uz"}},85862:e=>{e.exports={disableSelfPositioning:"disableSelfPositioning-dYiqkKAE"}},79566:e=>{e.exports={container:"container-M1mz4quA",pairContainer:"pairContainer-M1mz4quA",logo:"logo-M1mz4quA",hidden:"hidden-M1mz4quA"}},92335:e=>{e.exports={container:"container-qm7Rg5MB",mobile:"mobile-qm7Rg5MB",inputContainer:"inputContainer-qm7Rg5MB",withCancel:"withCancel-qm7Rg5MB",input:"input-qm7Rg5MB",icon:"icon-qm7Rg5MB",cancel:"cancel-qm7Rg5MB"}},10070:e=>{e.exports={actions:"actions-rarsm4ka",actionButton:"actionButton-rarsm4ka"}},94869:e=>{e.exports={logo:"logo-d0vVmGvT"}},92069:e=>{e.exports={
|
||||
"tablet-small-breakpoint":"(max-width: 440px)",itemRow:"itemRow-oRSs8UQo",multiLine:"multiLine-oRSs8UQo",cell:"cell-oRSs8UQo",itemInfoCell:"itemInfoCell-oRSs8UQo",description:"description-oRSs8UQo",symbolDescription:"symbolDescription-oRSs8UQo",flag:"flag-oRSs8UQo",exchangeDescription:"exchangeDescription-oRSs8UQo",marketType:"marketType-oRSs8UQo",exchangeName:"exchangeName-oRSs8UQo",actionHandleWrap:"actionHandleWrap-oRSs8UQo",source:"source-oRSs8UQo",hover:"hover-oRSs8UQo",selected:"selected-oRSs8UQo",active:"active-oRSs8UQo",highlighted:"highlighted-oRSs8UQo",light:"light-oRSs8UQo","highlight-animation-theme-light":"highlight-animation-theme-light-oRSs8UQo",dark:"dark-oRSs8UQo","highlight-animation-theme-dark":"highlight-animation-theme-dark-oRSs8UQo",markedFlag:"markedFlag-oRSs8UQo",offset:"offset-oRSs8UQo",descriptionCell:"descriptionCell-oRSs8UQo",addition:"addition-oRSs8UQo",exchangeCell:"exchangeCell-oRSs8UQo",fixedWidth:"fixedWidth-oRSs8UQo",expandHandle:"expandHandle-oRSs8UQo",expanded:"expanded-oRSs8UQo",symbolTitle:"symbolTitle-oRSs8UQo",invalid:"invalid-oRSs8UQo",noDescription:"noDescription-oRSs8UQo",highlightedText:"highlightedText-oRSs8UQo",icon:"icon-oRSs8UQo",narrow:"narrow-oRSs8UQo",wide:"wide-oRSs8UQo",dataMode:"dataMode-oRSs8UQo",actionsCell:"actionsCell-oRSs8UQo",action:"action-oRSs8UQo",targetAction:"targetAction-oRSs8UQo",removeAction:"removeAction-oRSs8UQo",addAction:"addAction-oRSs8UQo",markedFlagWrap:"markedFlagWrap-oRSs8UQo",markedFlagMobile:"markedFlagMobile-oRSs8UQo",logo:"logo-oRSs8UQo",isExpandable:"isExpandable-oRSs8UQo",primaryIcon:"primaryIcon-oRSs8UQo"}},6963:e=>{e.exports={icon:"icon-OJpk_CAQ"}},6109:e=>{e.exports={wrap:"wrap-IxKZEhmO",libAllSelected:"libAllSelected-IxKZEhmO",container:"container-IxKZEhmO",iconWrap:"iconWrap-IxKZEhmO",icon:"icon-IxKZEhmO",title:"title-IxKZEhmO",highlighted:"highlighted-IxKZEhmO",description:"description-IxKZEhmO",mobile:"mobile-IxKZEhmO",allSelected:"allSelected-IxKZEhmO",desktop:"desktop-IxKZEhmO",allSelectedIcon:"allSelectedIcon-IxKZEhmO",selected:"selected-IxKZEhmO",focused:"focused-IxKZEhmO",titleWithoutDesc:"titleWithoutDesc-IxKZEhmO",textBlock:"textBlock-IxKZEhmO",bordered:"bordered-IxKZEhmO"}},96137:e=>{e.exports={container:"container-dfKL9A7t",contentList:"contentList-dfKL9A7t",contentListDesktop:"contentListDesktop-dfKL9A7t",searchSourceItemsContainer:"searchSourceItemsContainer-dfKL9A7t",oneColumn:"oneColumn-dfKL9A7t",searchSourceItemsContainerDesktop:"searchSourceItemsContainerDesktop-dfKL9A7t",groupTitleDesktop:"groupTitleDesktop-dfKL9A7t",column:"column-dfKL9A7t",emptyText:"emptyText-dfKL9A7t",emptyIcon:"emptyIcon-dfKL9A7t",noResultsDesktop:"noResultsDesktop-dfKL9A7t"}},6591:e=>{e.exports={wrap:"wrap-gjrLBBL3",item:"item-gjrLBBL3",small:"small-gjrLBBL3",newStyles:"newStyles-gjrLBBL3",mobile:"mobile-gjrLBBL3",text:"text-gjrLBBL3",exchange:"exchange-gjrLBBL3",filterItem:"filterItem-gjrLBBL3",brokerWrap:"brokerWrap-gjrLBBL3"}},44458:e=>{e.exports={wrap:"wrap-dlewR1s1",watchlist:"watchlist-dlewR1s1",noFeed:"noFeed-dlewR1s1",
|
||||
newStyles:"newStyles-dlewR1s1",scrollContainer:"scrollContainer-dlewR1s1",listContainer:"listContainer-dlewR1s1",multiLineItemsContainer:"multiLineItemsContainer-dlewR1s1",withSpinner:"withSpinner-dlewR1s1",spinnerContainer:"spinnerContainer-dlewR1s1",largeSpinner:"largeSpinner-dlewR1s1"}},76717:e=>{e.exports={search:"search-ZXzPWcCf",upperCase:"upperCase-ZXzPWcCf",bubblesContainer:"bubblesContainer-ZXzPWcCf",mobile:"mobile-ZXzPWcCf",bubbles:"bubbles-ZXzPWcCf",withFilters:"withFilters-ZXzPWcCf",spinnerWrap:"spinnerWrap-ZXzPWcCf",emptyText:"emptyText-ZXzPWcCf",emptyIcon:"emptyIcon-ZXzPWcCf",noResultsDesktop:"noResultsDesktop-ZXzPWcCf",brokerButtonWrap:"brokerButtonWrap-ZXzPWcCf"}},92244:e=>{e.exports={flagWrap:"flagWrap-QKnxaZOG",icon:"icon-QKnxaZOG",caret:"caret-QKnxaZOG",title:"title-QKnxaZOG",button:"button-QKnxaZOG",withFlag:"withFlag-QKnxaZOG",buttonContent:"buttonContent-QKnxaZOG"}},63748:e=>{e.exports={dialog:"dialog-u2dP3kv1",tabletDialog:"tabletDialog-u2dP3kv1",desktopDialog:"desktopDialog-u2dP3kv1",backButton:"backButton-u2dP3kv1"}},24517:e=>{e.exports={childrenWrapper:"childrenWrapper-_RhDhmVQ",container:"container-_RhDhmVQ"}},95059:e=>{e.exports={highlighted:"highlighted-cwp8YRo6"}},93524:e=>{e.exports={linkItem:"linkItem-zMVwkifW"}},90854:e=>{e.exports={roundTabButton:"roundTabButton-JbssaNvk",disableFocusOutline:"disableFocusOutline-JbssaNvk",enableCursorPointer:"enableCursorPointer-JbssaNvk",large:"large-JbssaNvk",withStartIcon:"withStartIcon-JbssaNvk",iconOnly:"iconOnly-JbssaNvk",withEndIcon:"withEndIcon-JbssaNvk",startIconWrap:"startIconWrap-JbssaNvk",endIconWrap:"endIconWrap-JbssaNvk",small:"small-JbssaNvk",xsmall:"xsmall-JbssaNvk",primary:"primary-JbssaNvk",selected:"selected-JbssaNvk",disableActiveStateStyles:"disableActiveStateStyles-JbssaNvk",ghost:"ghost-JbssaNvk",fake:"fake-JbssaNvk",caret:"caret-JbssaNvk",visuallyHidden:"visuallyHidden-JbssaNvk"}},76912:e=>{e.exports={scrollWrap:"scrollWrap-vgCB17hK",overflowScroll:"overflowScroll-vgCB17hK",roundTabs:"roundTabs-vgCB17hK",center:"center-vgCB17hK",overflowWrap:"overflowWrap-vgCB17hK",start:"start-vgCB17hK"}},49128:e=>{e.exports={icon:"icon-WB2y0EnP",dropped:"dropped-WB2y0EnP"}},18429:(e,t,r)=>{"use strict";r.d(t,{SEPARATOR_PREFIX:()=>n,isSeparatorItem:()=>o});const n="###";function o(e){return e.startsWith(n)}},48199:(e,t,r)=>{"use strict";r.d(t,{BackButton:()=>v});var n,o=r(50959),a=r(64388),s=r(95694),l=r(49498),i=r(60176),c=r(35369),u=r(58478),d=r(73063),m=r(14127),p=r(18073),h=r(99243),g=r(42576);function f(e="large",t="1.2"){switch(e){case"large":return"1.2"===t?s:d;case"medium":return"1.2"===t?l:m;case"small":return"1.2"===t?i:p;case"xsmall":return"1.2"===t?c:h;case"xxsmall":return"1.2"===t?u:g;default:return l}}!function(e){e.Thin="1.2",e.Medium="1.5"}(n||(n={}));const v=o.forwardRef(((e,t)=>{const{"aria-label":r,flipIconOnRtl:n,...s}=e;return o.createElement(a.NavButton,{...s,"aria-label":r,ref:t,icon:f(e.size,e.iconStrokeWidth),flipIconOnRtl:n})}))},27011:(e,t,r)=>{"use strict";function n(e,t){
|
||||
return t||null==e||("string"==typeof e||Array.isArray(e))&&0===e.length}r.d(t,{isIconOnly:()=>n})},14543:(e,t,r)=>{"use strict";r.d(t,{LightButton:()=>n.LightButton});r(9038);var n=r(15893);r(50959),r(21593),r(66860),r(1538),r(88317);r(49406)},9038:(e,t,r)=>{"use strict";r.d(t,{useLightButtonClasses:()=>c});var n=r(50959),o=r(97754),a=r(17946),s=r(27011),l=r(86332);const i=n.createContext({isInButtonGroup:!1,isGroupPrimary:!1}),c=(e,t,r)=>{const c=(0,n.useContext)(a.CustomBehaviourContext),{className:u,isSelected:d,children:m,showCaret:p,forceDirection:h,iconOnly:g,color:f="gray",variant:v="primary",size:b="medium",enableActiveStateStyles:y=c.enableActiveStateStyles,typography:S,isLink:x=!1,textWrap:w,isPills:k,isActive:C,startSlot:E,endSlot:I}=t,R=e[`typography-${((e,t,r)=>{if(r){const e=r.replace(/^\D+/g,"");return t?`semibold${e}`:r}switch(e){case"xsmall":return t?"semibold14px":"regular14px";case"small":case"medium":return t?"semibold16px":"regular16px";default:return""}})(b,d||k,S||void 0)}`],L=(0,n.useContext)(l.ControlGroupContext),{isInButtonGroup:T,isGroupPrimary:B}=(0,n.useContext)(i);return o(u,e.lightButton,x&&e.link,C&&e.active,d&&e.selected,(0,s.isIconOnly)(m,g)&&e.noContent,!!E&&e.withStartSlot,(p||!!I)&&e.withEndSlot,r&&e.withGrouped,h&&e[h],e[B?"primary":v],e[B?"gray":f],e[b],R,!y&&e.disableActiveStateStyles,L.isGrouped&&e.grouped,w&&e.wrap,T&&e.disableActiveOnTouch,k&&e.pills)}},66860:(e,t,r)=>{"use strict";r.d(t,{LightButtonContent:()=>m});var n=r(50959),o=r(97754),a=r(34094),s=r(27011),l=r(9745),i=r(2948),c=r(1538),u=r.n(c);const d=e=>n.createElement(l.Icon,{className:o(u().caret,e&&u().activeCaret),icon:i});function m(e){const{showCaret:t,iconOnly:r,ellipsis:l=!0,textWrap:i,tooltipText:c,children:m,endSlot:p,startSlot:h,isActiveCaret:g}=e;[p,t].filter((e=>!!e));return n.createElement(n.Fragment,null,h&&n.createElement("span",{className:o(u().slot,u().startSlot)},h),!(0,s.isIconOnly)(m,r)&&n.createElement("span",{className:o(u().content,!i&&u().nowrap,"apply-overflow-tooltip","apply-overflow-tooltip--check-children-recursively","apply-overflow-tooltip--allow-text"),"data-overflow-tooltip-text":c??(0,a.getTextForTooltip)(m)},i||l?n.createElement(n.Fragment,null,n.createElement("span",{className:o(!i&&l&&u().ellipsisContainer,i&&u().textWrapContainer,i&&l&&u().textWrapWithEllipsis)},m),n.createElement("span",{className:u().visuallyHidden,"aria-hidden":!0},m)):n.createElement(n.Fragment,null,m,n.createElement("span",{className:u().visuallyHidden,"aria-hidden":!0},m))),p&&n.createElement("span",{className:o(u().slot,u().endSlot)},p),t&&d(g))}},15893:(e,t,r)=>{"use strict";r.d(t,{LightButton:()=>d});var n=r(50959),o=r(86332),a=r(9038),s=r(66860),l=r(1538),i=r.n(l),c=r(88317),u=r.n(c);function d(e){
|
||||
const{isGrouped:t}=n.useContext(o.ControlGroupContext),{reference:r,className:l,isSelected:c,children:d,iconOnly:m,ellipsis:p,showCaret:h,forceDirection:g,endSlot:f,startSlot:v,color:b,variant:y,size:S,enableActiveStateStyles:x,typography:w,textWrap:k=!1,maxLines:C,style:E={},isPills:I,isActive:R,tooltipText:L,role:T,...B}=e,N=k?C??2:1,M=N>0?{...E,"--ui-lib-light-button-content-max-lines":N}:E;return n.createElement("button",{...B,className:(0,a.useLightButtonClasses)({...u(),...i()},{className:l,isSelected:c,children:d,iconOnly:m,showCaret:h,forceDirection:g,endSlot:f,startSlot:v,color:b,variant:y,size:S,enableActiveStateStyles:x,typography:w,textWrap:k,isPills:I,isActive:R},t),ref:r,style:M,role:T},n.createElement(s.LightButtonContent,{showCaret:h,isActiveCaret:h&&(I||R||c),iconOnly:m,ellipsis:p,textWrap:k,tooltipText:L,endSlot:f,startSlot:v},d))}},125:(e,t,r)=>{"use strict";r.d(t,{useForceUpdate:()=>o});var n=r(50959);const o=()=>{const[,e]=(0,n.useReducer)((e=>e+1),0);return e}},34094:(e,t,r)=>{"use strict";r.d(t,{getTextForTooltip:()=>s});var n=r(50959);const o=e=>(0,n.isValidElement)(e)&&Boolean(e.props.children),a=e=>null==e||"boolean"==typeof e||"{}"===JSON.stringify(e)?"":e.toString()+" ",s=e=>Array.isArray(e)||(0,n.isValidElement)(e)?n.Children.toArray(e).reduce(((e,t)=>{let r="";return r=(0,n.isValidElement)(t)&&o(t)?s(t.props.children):(0,n.isValidElement)(t)&&!o(t)?"":a(t),e.concat(r)}),"").trim():a(e)},3685:(e,t,r)=>{"use strict";function n(){return window.configurationData?.exchanges?.map((e=>({...e,country:"",providerId:"",flag:""})))??[]}r.d(t,{getExchanges:()=>n})},36279:(e,t,r)=>{"use strict";var n;r.d(t,{LogoSize:()=>n,getLogoUrlResolver:()=>s}),function(e){e[e.Medium=0]="Medium",e[e.Large=1]="Large"}(n||(n={}));class o{getSymbolLogoUrl(e){return e}getCountryFlagUrl(){return""}getCryptoLogoUrl(e){return e}getProviderLogoUrl(e){return e}getSourceLogoUrl(e){return e}getBlockchainContractLogoUrl(e){return e}}let a;function s(){return a||(a=new o),a}},69654:(e,t,r)=>{"use strict";r.d(t,{DialogSearch:()=>d});var n=r(50959),o=r(97754),a=r.n(o),s=r(11542),l=r(9745),i=r(6347),c=r(54313),u=r(92335);function d(e){const{children:t,isMobile:o,renderInput:d,onCancel:p,containerClassName:h,inputContainerClassName:g,iconClassName:f,cancelTitle:v=s.t(null,void 0,r(4543)),...b}=e;return n.createElement("div",{className:a()(u.container,o&&u.mobile,h)},n.createElement("div",{className:a()(u.inputContainer,o&&u.mobile,g,p&&u.withCancel)},d||n.createElement(m,{isMobile:o,...b})),t,n.createElement(l.Icon,{className:a()(u.icon,o&&u.mobile,f),icon:o?c:i}),p&&(!o||""!==b.value)&&n.createElement("div",{className:a()(u.cancel,o&&u.mobile),onClick:p},v))}function m(e){const{className:t,reference:r,isMobile:o,value:s,onChange:l,onFocus:i,onBlur:c,onKeyDown:d,onSelect:m,placeholder:p,activeDescendant:h,...g}=e;return n.createElement("input",{...g,ref:r,type:"text",className:a()(t,u.input,o&&u.mobile),autoComplete:"off",role:"searchbox","data-role":"search",placeholder:p,value:s,onChange:l,onFocus:i,onBlur:c,onSelect:m,
|
||||
onKeyDown:d,"aria-activedescendant":h})}},96967:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchDialogContentItem:()=>D});var n=r(50959),o=r(97754),a=r.n(o),s=(r(11542),r(50151)),l=r(9745),i=r(56570),c=r(24637),u=r(97006),d=r(84524),m=r(24633),p=r(77975),h=r(45345),g=r(32563),f=r(91682),v=r(618),b=r(36279),y=r(59695),S=r(58492),x=r(39330),w=r(19938),k=r(43010),C=r(79566);function E(e){const{className:t,placeholderLetter:r,url1:o,url2:s,size:l="xxxsmall"}=e,i=(0,n.useRef)(null),c=(0,n.useRef)(null),u=(0,n.useRef)(null),d=(0,n.useRef)(null),m=(0,n.useRef)(null),p=(0,n.useRef)(null);return(0,k.useIsomorphicLayoutEffect)((()=>{const e=void 0===o?[]:void 0===s?[o]:[o,s],t=p.current=(r=e,Promise.all(r.map((e=>(0,w.getImage)(`symbol_logo_${e}`,e,R).then((e=>e.cloneNode()))))));var r;t.catch((()=>[])).then((e=>{if(t===p.current)switch(e.length){case 0:u.current?.classList.add(C.hidden),c.current?.classList.add(y.hiddenCircleLogoClass),i.current?.classList.remove(y.hiddenCircleLogoClass);break;case 1:I(c.current,e[0]),u.current?.classList.add(C.hidden),c.current?.classList.remove(y.hiddenCircleLogoClass),i.current?.classList.add(y.hiddenCircleLogoClass);break;case 2:I(d.current,e[0]),I(m.current,e[1]),u.current?.classList.remove(C.hidden),c.current?.classList.add(y.hiddenCircleLogoClass),i.current?.classList.add(y.hiddenCircleLogoClass)}}))}),[o,s]),n.createElement("span",{className:a()(t,C.container)},n.createElement("span",{ref:u,className:a()(C.pairContainer,C.hidden)},n.createElement("span",{className:(0,x.getBlockStyleClasses)(l)},n.createElement("span",{ref:m,className:a()(C.logo,(0,x.getLogoStyleClasses)(l))}),n.createElement("span",{ref:d,className:a()(C.logo,(0,x.getLogoStyleClasses)(l))}))),n.createElement("span",{ref:c,className:a()(C.logo,y.hiddenCircleLogoClass,(0,S.getStyleClasses)(l))}),n.createElement("span",{ref:i,className:a()(C.logo,(0,S.getStyleClasses)(l))},n.createElement(y.CircleLogo,{size:l,placeholderLetter:r})))}function I(e,t){e&&(e.innerHTML="",e.appendChild(t))}function R(e){e.crossOrigin="",e.decoding="async"}var L=r(94869);function T(e){const{logoId:t,baseCurrencyLogoId:r,currencyLogoId:o,placeholder:s,className:l,size:i="xsmall"}=e,c=(0,n.useMemo)((()=>{const e={logoid:t,"currency-logoid":o,"base-currency-logoid":r};return(0,v.removeUsdFromCryptoPairLogos)((0,v.resolveLogoUrls)(e,b.LogoSize.Medium))}),[t,o,r]);return n.createElement(E,{key:i,className:a()(L.logo,l),url1:c[0],url2:c[1],placeholderLetter:s,size:i})}var B=r(29562),N=r(69533),M=r(92069);function D(e){
|
||||
const{dangerousTitleHTML:t,title:r,dangerousDescriptionHTML:o,description:v,searchToken:b,exchangeName:y,marketType:S,onClick:x,isSelected:w,isEod:k=!1,isActive:C=!1,isOffset:E=!1,invalid:I=!1,isHighlighted:R=!1,hideExchange:L=!1,hideMarkedListFlag:D=!1,onExpandClick:O,isExpanded:A,hoverComponent:_,country:P,providerId:F,source:W,source2:Q,type:U,flag:V,itemRef:K,onMouseOut:z,onMouseOver:H,className:Z,actions:G,reference:q,fullSymbolName:j,logoId:$,currencyLogoId:Y,baseCurrencyLogoId:X,shortName:J,hideLogo:ee=!1,exchangeTooltip:te,hideMarketType:re,isPrimary:ne}=e,{isSmallWidth:oe,isMobile:ae}=(0,s.ensureNotNull)((0,n.useContext)(d.SymbolSearchItemsDialogContext)),se=Boolean(_),le=!I&&!L&&(ae||!se),ie=(0,p.useWatchedValueReadonly)({watchedValue:h.watchedTheme})===m.StdTheme.Dark?M.dark:M.light,ce=_,ue=i.enabled("show_symbol_logos"),de=i.enabled("show_exchange_logos"),me=ue||!1,pe=Q?.description??W,he=Q?.name??W;return n.createElement("div",{className:a()(M.itemRow,oe&&M.multiLine,R&&M.highlighted,R&&ie,w&&M.selected,C&&M.active,I&&M.invalid,!ae&&g.mobiletouch&&se&&M.hover,Z),onClick:function(e){if(!x||e.defaultPrevented)return;e.preventDefault(),x(e)},"data-role":e["data-role"]||"list-item","data-active":C,"data-type":S,"data-name":"symbol-search-dialog-content-item",onMouseOut:z,onMouseOver:H,ref:q},n.createElement("div",{ref:K,className:a()(M.itemInfoCell,M.cell,E&&M.offset)},n.createElement("div",{className:a()(M.actionHandleWrap,!me&&M.fixedWidth)},n.createElement(n.Fragment,null,!1,O&&n.createElement("div",{onClick:function(e){if(!O||e.defaultPrevented)return;e.preventDefault(),O(e)}},n.createElement(l.Icon,{className:a()(M.expandHandle,A&&M.expanded,w&&M.selected),icon:N})),me&&!E&&n.createElement("div",{className:a()(M.logo,Boolean(O)&&M.isExpandable)},n.createElement(T,{key:j,logoId:$,currencyLogoId:Y,baseCurrencyLogoId:X,placeholder:J?J[0]:void 0})))),n.createElement("div",{className:a()(M.description,me&&E&&M.offset)},r&&n.createElement("div",{className:a()(M.symbolTitle,C&&M.active,I&&M.invalid,!Boolean(o)&&M.noDescription,!g.mobiletouch&&"apply-overflow-tooltip"),"data-overflow-tooltip-text":r,"data-name":"list-item-title"},"string"==typeof r&&b?n.createElement(c.HighlightedText,{className:M.highlightedText,text:r,queryString:b,rules:(0,u.createRegExpList)(b)}):r,k&&n.createElement("span",{className:M.dataMode},"E")),!r&&t&&n.createElement("div",{className:a()(M.symbolTitle,C&&M.active,I&&M.invalid,!g.mobiletouch&&"apply-overflow-tooltip"),"data-name":"list-item-title","data-overflow-tooltip-text":(0,f.removeTags)(t)},n.createElement("span",{dangerouslySetInnerHTML:{__html:t}}),k&&n.createElement("span",{className:M.dataMode},"E")),oe&&ge())),!oe&&n.createElement("div",{className:a()(M.cell,M.descriptionCell,Boolean(ce)&&M.addition)},ge(),ce?n.createElement(ce,{...e,className:M.actions,onMouseOver:void 0,onMouseOut:void 0}):null),oe&&ce?n.createElement(ce,{...e,className:M.cell,onMouseOver:void 0,onMouseOut:void 0}):null,le&&n.createElement("div",{className:a()(M.exchangeCell,M.cell)
|
||||
},n.createElement("div",{className:a()(M.exchangeDescription)},!re&&n.createElement("div",{className:a()(M.marketType,C&&M.active)},S),n.createElement("div",{className:M.source},!1,"economic"===U&&pe&&he?n.createElement("div",{className:a()(M.exchangeName,C&&M.active,"apply-common-tooltip",M.narrow,re&&M.wide),title:pe},he):n.createElement("div",{className:a()(M.exchangeName,C&&M.active,te&&"apply-common-tooltip"),title:te},y))),de&&n.createElement("div",{className:M.flag},n.createElement(B.SymbolSearchFlag,{key:de?`${j}_exchange`:`${P}_${F}_${Q?.id}_${U}_${V}`,className:M.icon,country:P,providerId:F,sourceId:"economic"===U&&Q?Q.id:void 0}))),n.createElement("div",{className:a()(M.cell,Boolean(G)&&M.actionsCell)},G));function ge(){if(I)return null;const e=a()(M.symbolDescription,C&&M.active,!g.mobiletouch&&"apply-overflow-tooltip apply-overflow-tooltip--allow-text");return v?n.createElement("div",{className:e},b?n.createElement(c.HighlightedText,{className:M.highlightedText,text:v,queryString:b,rules:(0,u.createRegExpList)(b)}):v):o?n.createElement("div",{"data-overflow-tooltip-text":(0,f.removeTags)(o),className:e,dangerouslySetInnerHTML:{__html:o}}):null}}},29562:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchFlag:()=>f});var n=r(50959),o=r(97754),a=r.n(o),s=r(24633),l=r(36279);const i=r.p+"mock-dark.16b5f3a431f502b03ae3.svg",c=r.p+"mock-light.d201313017eb2c1b989f.svg";function u(e){return e===s.StdTheme.Dark?i:c}var d=r(77975),m=r(45345),p=r(50151);const h=l.LogoSize.Medium;var g=r(6963);function f(e){const{country:t,tooltip:r,providerId:o,sourceId:s,className:i}=e,c=(0,d.useWatchedValueReadonly)({watchedValue:m.watchedTheme}),[f,v]=(0,n.useState)(function({country:e,providerId:t,sourceId:r}){const n=(0,l.getLogoUrlResolver)();return o=>{const a=e=>n.getProviderLogoUrl(e,h),s=[{value:r,resolve:a},{value:e,resolve:e=>n.getCountryFlagUrl(e.toUpperCase(),h)},{value:t,resolve:a}].find((({value:e})=>void 0!==e&&e.length>0));return void 0!==s?s.resolve((0,p.ensureDefined)(s.value)):u(o)}}({country:t,providerId:o,sourceId:s})(c));return n.createElement("img",{className:a()(i,"apply-common-tooltip",g.icon),crossOrigin:"","data-tooltip":r,src:f,onError:function(){v(u(c))}})}},58442:(e,t,r)=>{"use strict";r.d(t,{QualifiedSources:()=>n,qualifyProName:()=>s});var n,o=r(50151),a=r(56570);r(81319);function s(e){return e}!function(e){function t(e){return e.pro_name}function r(e){{const t=a.enabled("pay_attention_to_ticker_not_symbol")?e.ticker:e.name;return(0,o.ensureDefined)(t)}}e.fromQuotesSnapshot=function(e){return"error"===e.status?e.symbolname:e.values.pro_name},e.fromQuotesResponse=function(e){const{values:r,symbolname:n,status:o}=e;return"error"===o&&n?n:t(r)},e.fromQuotes=t,e.fromSymbolSearchResult=function(e,t){{const{ticker:r,symbol:n}=t??e;return a.enabled("pay_attention_to_ticker_not_symbol")?(0,o.ensureDefined)(r??n):(0,o.ensureDefined)(n)}},e.fromSymbolInfo=r,e.fromSymbolMessage=function(e,t){return"symbol_resolved"===t.method?r(t.params[1]):e}}(n||(n={}))},20882:(e,t,r)=>{"use strict";r.d(t,{createSearchSources:()=>l,
|
||||
filterSearchSources:()=>a,isAllSearchSourcesSelected:()=>o,splitSearchSourcesByGroup:()=>s});const n=[];function o(e){return""===e.value()}function a(e,t){return e.filter((e=>e.includes(t)))}function s(e){const t=new Map;e.forEach((e=>{t.has(e.group())?t.get(e.group()).push(e):t.set(e.group(),[e])}));for(const e of t.values()){e[0].group()!==ExchangeGroup.NorthAmerica&&e.sort(((e,t)=>e.name().toLowerCase()>t.name().toLowerCase()?1:-1))}return new Map([...t.entries()].sort((([e],[t])=>n.indexOf(e)-n.indexOf(t))))}function l(e,t){return t.map((t=>new e(t)))}},70613:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchDialogBodyContext:()=>n});const n=r(50959).createContext(null)},84524:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchItemsDialogContext:()=>n});const n=r(50959).createContext(null)},73280:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchItemsDialog:()=>Je});var n,o,a,s=r(50959),l=r(97754),i=r.n(l),c=r(11542),u=r(56570),d=r(44254),m=r(81319);function p(e){const t=function(e){let t,r=0,n=0;for(let o=0;o<e.length;o++){const a=e[o];if("whitespace"!==a.type)switch(r){case 0:if("number"!==a.type||1!=+a.value)return[];r=1;break;case 1:if(1!==r||"divide"!==a.type)return[];r=2,t=o+1;break;case 2:if("openBrace"===a.type)r=3,n=1;else if((0,d.isBinaryOperator)(a.type))return[];break;case 3:"openBrace"===a.type?n++:"closeBrace"===a.type&&(n--,n<=0&&(r=2))}}return e.slice(t)}(e);return t.length?(0,d.factorOutBraces)(t):(0,d.factorOutBraces)((0,d.tokenize)("1/("+h(e)+")"))}function h(e){return e.reduce(((e,t)=>"symbol"===t.type&&d.symbolTokenEscapeRe.test(t.value)?e+`'${t.value}'`:e+t.value),"")}function g(e){const t=function(e){const t=(0,d.tokenize)(e),r=[];return t.forEach((e=>{if("symbol"!==e.type)return;const[t]=(0,d.parseToken)(e);t&&r.push(t)})),r}(e);if(1===t.length)return t[0]}function f(e,t,r){const n=e.value,[o,a]=v(e,r),s=(0,m.getSymbolFullName)(t),l=d.symbolTokenEscapeRe.test(s)?`'${s}'`:s;return[n.substring(0,a)+l+n.substring(a+o.length),a+l.length]}function v(e,t){const{value:r,selectionStart:n}=e,o=(0,d.tokenize)(t?r.toUpperCase():r),a=(0,d.getTokenAtPos)(o,n||0);return[a?.value||"",a?a.offset:r.length,o]}!function(e){e.Init="init",e.Var="var",e.Operator="operator"}(n||(n={})),function(e){e[e.Init=0]="Init",e[e.Div=1]="Div",e[e.Expression=2]="Expression",e[e.BracedExpression=3]="BracedExpression"}(o||(o={})),function(e){e.Stocks="stocks",e.Futures="futures",e.Funds="funds",e.Forex="forex",e.Crypto="bitcoin,crypto",e.Index="index",e.Bond="bond",e.Economic="economic",e.Options="options"}(a||(a={}));const b=["futures","forex","bond","economic","options"];var y=r(84877),S=r(24437),x=r(79418),w=r(9745),k=r(86240),C=r(86781),E=r(84524),I=r(69654),R=r(3343),L=r(19291);function T(e,t,r){return`source-item-${e}-${t}-${r}`}var B=r(20882),N=r(24517);function M(e){const{children:t,className:r}=e;return s.createElement("div",{className:i()(N.container,r)},s.createElement("div",{className:N.childrenWrapper},t))}var D=r(50151),O=r(78036),A=r(24637),_=r(97006),P=r(91540),F=r(6109);function W(e){
|
||||
const{searchSource:t,onClick:r,queryString:n,isFocused:o,id:a}=e,{symbolSearchContent:l,isAllSearchSourcesSelected:c,allSearchSourcesTitle:u,isMobile:d}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),p=l.currentSelectedSearchSource,h=(0,D.ensureNotNull)(p).value(),g=c(t),f=t.value()===h,v=(0,s.useMemo)((()=>(0,_.createRegExpList)(n)),[n]),b=t.description(),y=b&&!g,S=m.isSeparateSymbolSearchTabs&&g&&u?u:t.name(),x=i()(F.container,d?F.mobile:F.desktop,f&&F.selected,o&&F.focused,g&&F.allSelected,g&&F.libAllSelected,!g&&d&&F.bordered);return s.createElement("div",{className:i()(!d&&F.wrap,g&&F.libAllSelected),onClick:r,id:a},s.createElement("div",{className:x},s.createElement("div",{className:F.iconWrap},!!g&&s.createElement(w.Icon,{className:i()(F.icon,F.allSelectedIcon),icon:P})),s.createElement("div",{className:F.textBlock},s.createElement("div",{className:i()(F.title,!y&&!d&&F.titleWithoutDesc)},s.createElement(A.HighlightedText,{className:i()(f&&F.highlighted),queryString:n,text:S,rules:v})),y&&s.createElement("div",{className:i()(F.description,"apply-overflow-tooltip")},s.createElement(A.HighlightedText,{className:F.highlighted,queryString:n,rules:v,text:b})))))}var Q=r(77975),U=r(45345),V=r(24633),K=r(70613),z=r(66619),H=r(67562),Z=r(96137);const G={emptyTextClassName:Z.emptyText};function q(e){const{searchSources:t}=e,{setSelectedIndex:n,setSelectedSearchSource:o,setMode:a,isMobile:l,emptyState:u,autofocus:d}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),p=(0,Q.useWatchedValueReadonly)({watchedValue:U.watchedTheme})===V.StdTheme.Dark?z:H,h=(0,C.useMatchMedia)(k["media-phone-vertical"]),[g,f]=(0,s.useState)(""),v=(0,s.useMemo)((()=>[{group:null,sources:(0,m.createGroupColumns)((0,B.filterSearchSources)(t,g),h?1:2)}]),[t,g,h]),b=((0,s.useMemo)((()=>({})),[]),(0,s.useRef)(null)),y=(0,s.useRef)(null),{focusedItem:S,activeDescendant:x,handleKeyDown:N,resetFocusedItem:D}=function(e,t,r){const[n,o]=(0,s.useState)(null),[a,l]=(0,s.useState)("");function i(t){const r=e[t.groupIndex].sources[t.col].length-1;if(t.row===r){const e=d(t.groupIndex+1);if(null===e)return;return t.col>0&&!u({...t,groupIndex:e,row:0})?void o({groupIndex:e,col:0,row:0}):void o({...t,groupIndex:e,row:0})}o({...t,row:t.row+1})}function c(t){if(0===t.row){const r=d(t.groupIndex-1,-1);if(null===r)return;const n=e[r].sources[t.col]?.length??0;return 0===n?void o({groupIndex:r,col:0,row:0}):void o({...t,groupIndex:r,row:n-1})}o({...t,row:t.row-1})}function u(t){return Boolean(e[t.groupIndex]?.sources[t.col]?.[t.row])}function d(t=0,r=1){const n=e.length;let o=(t+n)%n;for(;!u({groupIndex:o,col:0,row:0});)if(o=(o+r+n)%n,o===t)return null;return o}return(0,s.useEffect)((()=>{if(!r.current)return;if(!n)return void l("");const e=T(n.groupIndex,n.col,n.row),t=r.current.querySelector(`#${e}`);t?.scrollIntoView({block:"nearest"}),l(e)}),[n]),(0,s.useEffect)((()=>{o(null)}),[t]),{focusedItem:n,activeDescendant:a,handleKeyDown:function(a){if(!r.current)return;const s=(0,R.hashFromEvent)(a);if(32!==s&&13!==s)switch((0,
|
||||
L.mapKeyCodeToDirection)(s)){case"blockNext":if(a.preventDefault(),!n){const e=d();if(null===e)break;o({groupIndex:e,col:0,row:0});break}i(n);break;case"blockPrev":if(a.preventDefault(),!n)break;c(n);break;case"inlineNext":{if(!n||t)break;a.preventDefault();const r=e[n.groupIndex].sources.length;if(n.col===r-1||!u({...n,col:n.col+1})){i({...n,col:0});break}o({...n,col:n.col+1});break}case"inlinePrev":{if(!n||t)break;a.preventDefault();const r=e[n.groupIndex].sources.length;if(0===n.col){if(0!==n.row){c({...n,col:r-1});break}const t=d(n.groupIndex-1,-1);if(null===t)break;const a=e[t].sources.length,s=e[t].sources[0].length;if(!u({groupIndex:t,col:a-1,row:s-1})){c(n);break}o({groupIndex:t,col:a-1,row:s-1});break}o({...n,col:n.col-1});break}}else{if(!n)return;a.preventDefault();const e=r.current.querySelector(`#${T(n.groupIndex,n.col,n.row)}`);e instanceof HTMLElement&&e.click()}},resetFocusedItem:()=>o(null)}}(v,h,y);(0,s.useLayoutEffect)((()=>{d&&b?.current?.focus()}),[]);const A=u?s.createElement(u,null):s.createElement(M,{className:Z.noResultsDesktop},s.createElement(w.Icon,{icon:p,className:Z.emptyIcon}),s.createElement("div",{className:Z.emptyText},c.t(null,void 0,r(53182)))),_=!(v.length&&v.every((e=>0===e.sources.length)));return s.createElement(K.SymbolSearchDialogBodyContext.Provider,{value:G},s.createElement(I.DialogSearch,{placeholder:c.t(null,void 0,r(8573)),onChange:function(e){D(),f(e.target.value),y&&y.current&&(y.current.scrollTop=0)},reference:b,onKeyDown:N,onBlur:D,"aria-activedescendant":x}),_?s.createElement("div",{ref:y,className:i()(Z.contentList,!l&&Z.contentListDesktop),onTouchStart:function(){b.current?.blur()}},v.map(((e,t)=>{const{group:r,sources:n}=e;return 0===n.length?s.createElement(s.Fragment,{key:r}):s.createElement(s.Fragment,{key:r},!1,s.createElement("div",{className:i()(Z.searchSourceItemsContainer,!l&&Z.searchSourceItemsContainerDesktop,h&&Z.oneColumn)},n.map(((e,r)=>s.createElement("div",{key:`${t}-${r}`,className:Z.column},e.map(((e,n)=>s.createElement(W,{id:T(t,r,n),isFocused:!!S&&(S.groupIndex===t&&S.col===r&&S.row===n),key:e.value(),searchSource:e,queryString:g,onClick:P.bind(null,e)}))))))))}))):A);function P(e){o(e),a("symbolSearch"),n(-1)}}var j,$,Y,X=r(32227),J=r(14051);r(84906);function ee(e){return e.hasOwnProperty("exchange")}async function te(e){{const t=await async function(e){return new Promise((t=>{window.ChartApiInstance.searchSymbols(e.text||"",e.exchange||"",e.type||"",(e=>{t(e)}))}))}(e);return{symbols:t,symbols_remaining:0}}}!function(e){e.SourceId="source_id",e.EconomicCategory="economic_category",e.SearchType="search_type",e.Sector="sector",e.Product="product",e.Centralization="centralization",e.OnlyHasOptions="only_has_options"}(j||(j={})),function(e){e[e.Prod=0]="Prod",e[e.Local=1]="Local"}($||($={})),function(e){e[e.Paginated=0]="Paginated",e[e.NoLimit=1]="NoLimit"}(Y||(Y={}));new Map([].map((({value:e,search_type:t})=>[e,t])))
|
||||
;var re=r(78136),ne=r(51768),oe=r(68335),ae=r(81348),se=r(486),le=r(81574),ie=r(35119),ce=r(32617),ue=r(69135),de=r(63861),me=r(10070);function pe(e){const{state:t,update:r}=e,{searchRef:n,forceUpdate:o,upperCaseEnabled:a}=(0,D.ensureNotNull)((0,s.useContext)(E.SymbolSearchItemsDialogContext)),l=(0,d.tokenize)(n.current?.value),i=function(e){const t={braceBalance:0,currentState:"var",warnings:[],errors:[]};if(!u.enabled("show_spread_operators"))return t;let r="init";const n=[];for(let o=0;o<e.length;o++){const a=e[o];if("whitespace"!==a.type){if("incompleteSymbol"===a.type||"incompleteNumber"===a.type){const r=o!==e.length-1,n={status:r?"error":"incomplete",reason:"incomplete_token",offset:a.offset,token:a};if(r?t.errors.push(n):t.warnings.push(n),r)continue}switch(a.type){case"symbol":case"number":if("var"===r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}r="var";break;case"plus":case"minus":case"multiply":case"divide":case"power":if("var"!==r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}r="operator";break;case"openBrace":if("var"===r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}n.push(a),r="init";break;case"closeBrace":if("var"!==r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}n.pop()||t.errors.push({status:"error",reason:"unbalanced_brace",offset:a.offset,token:a}),r="var";break;case"unparsed":t.errors.push({status:"error",reason:"unparsed_entity",offset:a.offset,token:a})}}}for(t.braceBalance=n.length,"var"!==r&&t.warnings.push({status:"incomplete",token:e[e.length-1]});n.length;){const e=n.pop();e&&t.warnings.push({status:"incomplete",reason:"unbalanced_brace",offset:e.offset,token:e})}return t.currentState=r,t}(l);let c=[{icon:se,insert:"/",type:"binaryOp",name:"division"},{icon:le,insert:"-",type:"binaryOp",name:"subtraction"},{icon:ie,insert:"+",type:"binaryOp",name:"addition"},{icon:ce,insert:"*",type:"binaryOp",name:"multiplication"}];return u.enabled("hide_exponentiation_spread_operator")||(c=c.concat([{icon:ue,insert:"^",type:"binaryOp",name:"exponentiation"}])),u.enabled("hide_reciprocal_spread_operator")||(c=c.concat([{icon:de,type:"complete",name:"1/x",callback:()=>{!n.current||i.errors.length||i.warnings.length||(n.current.value=h(p(l)),o())}}])),s.createElement("div",{className:me.actions},c.map((e=>s.createElement(ae.ToolWidgetButton,{className:me.actionButton,icon:e.icon,key:e.name,isDisabled:he(e,i),onClick:()=>function(e){if(!he(e,i)){if(e.insert&&n.current){const s=n.current.value+e.insert;n.current.value=s,n.current.setSelectionRange(s.length,s.length);const[l,,i]=v(n.current,a);t.current&&(t.current.selectedIndexValue=-1,t.current.searchSpreadsValue=(0,d.isSpread)(i),t.current.searchTokenValue=l),o(),r()}e.callback&&e.callback(),n.current?.focus(),(0,ne.trackEvent)("GUI","SS",e.name)}}(e)}))))}function he(e,t){let r=!1;if(!t.errors.length)switch(e.type){case"binaryOp":r="var"===t.currentState;break
|
||||
;case"openBrace":r="var"!==t.currentState;break;case"closeBrace":r="var"===t.currentState&&t.braceBalance>0;break;case"complete":r=!t.errors.length&&!t.warnings.length}return!r}var ge=r(63932),fe=r(84952),ve=r(29006),be=r(14543),ye=r(10381),Se=r(52019),xe=r(92244);const we=(0,m.getDefaultSearchSource)();function ke(e){const{mode:t,setMode:n,searchRef:o,cachedInputValue:a,setSelectedIndex:l,setSelectedSearchSource:u,isAllSearchSourcesSelected:d,allSearchSourcesTitle:p,upperCaseEnabled:h,symbolSearchContent:g}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),f=g.currentSelectedSearchSource,v=(0,D.ensureNotNull)(f),b="symbolSearch"===t,y=d(v),S=m.isSeparateSymbolSearchTabs&&y&&p?p:v.name(),x=(0,s.useCallback)((()=>{if(m.isSeparateSymbolSearchTabs&&!y&&we)return u(we),l(-1),void o.current?.focus();o.current&&(a.current=h?o.current.value.toUpperCase():o.current.value),n("exchange")}),[y,o,h,n,u]);return m.isSeparateSymbolSearchTabs?b?s.createElement(be.LightButton,{onClick:x,isPills:!y,size:"xsmall",variant:y?"ghost":"quiet-primary",showCaret:y,endSlot:y?void 0:s.createElement(w.Icon,{icon:Se}),enableActiveStateStyles:!1,className:i()(xe.button,!y&&xe.withFlag),tabIndex:-1,"data-name":"sources-button"},s.createElement("div",{className:xe.buttonContent},null,s.createElement("span",null,S))):null:b?s.createElement("div",{className:i()(xe.flagWrap,"apply-common-tooltip",!y&&xe.withFlag),title:c.t(null,void 0,r(57640)),onClick:x,"data-name":"sources-button"},y&&s.createElement(w.Icon,{className:xe.icon,icon:P}),null,s.createElement("div",{className:i()(xe.title)},S),s.createElement(ye.ToolWidgetCaret,{className:xe.caret,dropped:!1})):null}var Ce=r(6591);function Ee(e){const{brokerButton:t=null}=e,{isSmallWidth:n,selectedFilterValues:o,setSelectedFilterValues:a,setSelectedIndex:l,isMobile:u,searchRef:d,symbolSearchContent:p}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),h=p.tabSelectFilters;return m.isSeparateSymbolSearchTabs?s.createElement("div",{className:i()(Ce.wrap,Ce.small,Ce.newStyles,u&&Ce.mobile)},t&&s.createElement("div",{className:Ce.brokerWrap},t),p.canChangeExchange&&s.createElement("div",{className:Ce.filterItem},s.createElement(ke,null)),h&&h.map((e=>{const{id:t,options:r,label:n}=e,i=r.find((e=>e.value===FILTER_DEFAULT_VALUE));if(!i)throw new Error("There must be default filter value in filter definition");const c=r.find((e=>e.value===o[p.currentSymbolType]?.[t]))||i;return s.createElement("div",{key:t,className:Ce.filterItem},s.createElement(SymbolSearchSelectFilter,{selectedOption:c,defaultOption:i,options:r,onSelect:e=>{a(p.currentSymbolType,{[t]:e.value}),trackEvent("New SS",p.currentSymbolType,null===e.value?e.analyticsLabel:e.value),l(-1),d.current?.focus()},label:n,isMobile:u,"data-name":t}))}))):s.createElement("div",{className:i()(Ce.wrap,n&&Ce.small)},s.createElement("div",{className:Ce.item},s.createElement("div",{className:Ce.text},n?c.t(null,void 0,r(74007)):c.t(null,void 0,r(95481)))),s.createElement("div",{className:Ce.item},!n&&s.createElement("div",{className:Ce.text
|
||||
},c.t(null,void 0,r(78734))),p.canChangeExchange&&s.createElement("div",{className:Ce.exchange},s.createElement(ke,null))))}var Ie=r(63273),Re=r(44458);function Le(e){const{onTouchMove:t,listRef:r,className:n,listWrapRef:o,virtualListKey:a,items:l,getItemSize:c,hideFeed:u,canLoadMore:d,onLoadMoreSymbols:p}=e,{mode:h,isSmallWidth:g,handleListWidth:f}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),[v,b]=(0,s.useState)(null),y=(0,ve.useResizeObserver)((function([e]){b(e.contentRect.height),f(e.contentRect.width)})),S=(0,s.useCallback)((e=>{const{index:t,style:r}=e;return s.createElement("div",{style:r},l[t])}),[l]),x=(0,s.useCallback)((e=>(0,D.ensure)(l[e].key)),[l]),w="watchlist"===h&&null!==v;return s.createElement("div",{className:i()(Re.wrap,w&&Re.watchlist,u&&Re.noFeed,u&&m.isSeparateSymbolSearchTabs&&Re.newStyles,n),onTouchMove:t,ref:y},s.createElement("div",{ref:o,className:i()(Re.scrollContainer,u&&Re.noFeed)},w?s.createElement(fe.VariableSizeList,{key:a,ref:r,className:Re.listContainer,width:"100%",height:(0,D.ensureNotNull)(v),itemCount:l.length,itemSize:c,children:S,itemKey:x,overscanCount:20,direction:(0,Ie.isRtl)()?"rtl":"ltr"}):s.createElement(s.Fragment,null,s.createElement("div",{className:i()(Re.listContainer,g&&Re.multiLineItemsContainer)},!m.isSeparateSymbolSearchTabs&&s.createElement(Ee,null),...l,!1))))}var Te=r(96967),Be=r(47308),Ne=r(76717);const Me=u.enabled("hide_image_invalid_symbol");function De(e){const{otherSymbolsCount:t,onChangeSymbolTypeFilter:r,onResetFilters:n,onListTouchMove:o,brokerTitle:a,brokerLogoInfo:i,isBrokerActive:c,onBrokerToggle:u,listRef:d,listWrapRef:p,onLoadMoreSymbols:h,canLoadMore:g}=e,{mode:f,isMobile:v,selectedSymbolType:b,symbolTypes:y,feedItems:S,contentItem:x,emptyState:w=Oe,symbolSearchContent:k,symbolSearchState:C}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),I=a?s.createElement(BrokerButton,{brokerTitle:a,isActive:c,onToggle:u,onKeyDown:e=>{const t=(0,R.hashFromEvent)(e);t!==9+R.Modifiers.Shift&&9!==t&&e.stopPropagation()},logoInfo:i}):null,L=y.map((e=>({id:e.value,children:e.name}))),T="symbolSearch"===f&&["good","loadingWithPaginated"].includes(C),B=x??Te.SymbolSearchDialogContentItem,N=(0,s.useMemo)((()=>S.map((e=>s.createElement(B,{...e,searchToken:k.token})))),[S]);return s.createElement(s.Fragment,null,"symbolSearch"===f&&s.createElement(s.Fragment,null,s.createElement("div",{className:l(Ne.bubblesContainer,!v&&I&&Ne.withButton,v&&Ne.mobile)},y.length>0&&s.createElement(Be.RoundButtonTabs,{id:"symbol-search-tabs",isActive:e=>e.id===b,onActivate:r,overflowBehaviour:v?"scroll":"wrap",className:l(Ne.bubbles,v&&Ne.mobile,m.isSeparateSymbolSearchTabs&&(k.withFilters||I)&&!v&&Ne.withFilters),items:L},v?null:s.createElement("div",null,I)),!m.isSeparateSymbolSearchTabs&&v&&y.length>0&&a&&s.createElement("div",{className:Ne.brokerButtonWrap},I)),m.isSeparateSymbolSearchTabs&&s.createElement(Ee,{brokerButton:v?I:void 0})),s.createElement(Le,{listRef:d,listWrapRef:p,onTouchMove:o,items:N,getItemSize:()=>_e,onLoadMoreSymbols:h,canLoadMore:g,
|
||||
hideFeed:!T}),"loading"===C&&s.createElement("div",{className:Ne.spinnerWrap},s.createElement(ge.Spinner,null)),"symbolSearch"===f&&s.createElement(s.Fragment,null,!1,"empty"===C&&s.createElement(w,null)))}function Oe(e){const t=(0,Q.useWatchedValueReadonly)({watchedValue:U.watchedTheme})===V.StdTheme.Dark?z:H;return s.createElement(M,{className:Ne.noResultsDesktop},!Me&&s.createElement(w.Icon,{icon:t,className:Ne.emptyIcon}),s.createElement("div",{className:Ne.emptyText},c.t(null,void 0,r(76822))))}const Ae=(0,m.getDefaultSearchSource)(),_e=52;function Pe(e){const{mode:t,setMode:n,setSelectedIndex:o,isMobile:a,selectedSearchSource:l,setSelectedSearchSource:p,isAllSearchSourcesSelected:h,selectedSymbolType:b,setSelectedSymbolType:y,symbolSearchContent:S,setSymbolSearchContent:x,searchRef:w,setSearchSpreads:k,showSpreadActions:C,selectedItem:R,forceUpdate:L,placeholder:T,initialScreen:B,footer:N,searchInput:M,upperCaseEnabled:D,externalInput:A,handleKeyDown:_,customSearchSymbols:P,filterDefinitions:F,filterQueryParams:W,searchSources:Q,symbolSearchState:U,setSymbolSearchState:V,onEmptyResults:z}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),H=P??te,Z=(0,s.useRef)(t);Z.current=t;const G=(0,s.useRef)(new AbortController),[q,j]=(0,s.useState)(0),$=(0,s.useRef)(0),[Y,ae]=(0,s.useState)(S.token),se=(0,s.useRef)(null),le=(0,s.useRef)(null),ie=(0,s.useRef)({selectedIndexValue:-1,searchTokenValue:"",searchSpreadsValue:!0}),ce=(0,s.useRef)(null),ue=(0,s.useRef)(null),de=(0,s.useRef)(null),{broker:me=null,brokerId:he,brokerTitle:ge,brokerLogoInfo:fe,isBrokerChecked:ve=!1,setIsBrokerChecked:be=()=>{},unhideSymbolSearchGroups:ye=""}={brokerId:void 0,brokerTitle:void 0,brokerLogoInfo:void 0};(0,s.useEffect)((()=>()=>{G.current.abort(),Pe(),Fe()}),[]),(0,s.useEffect)((()=>{w?.current&&ae(w.current.value)}),[]),(0,s.useEffect)((()=>{const e=w.current;if(e)return e.addEventListener("input",Ie),e.addEventListener("focus",Oe),e.addEventListener("select",Ee),e.addEventListener("click",Ee),e.addEventListener("keyup",_e),A&&_&&e.addEventListener("keydown",_),()=>{e&&(e.removeEventListener("input",Ie),e.removeEventListener("focus",Oe),e.removeEventListener("select",Ee),e.removeEventListener("click",Ee),e.removeEventListener("keyup",_e),A&&_&&e.removeEventListener("keydown",_))}}),[_]),(0,s.useEffect)((()=>{Boolean(B)&&""===Y.trim()?x((e=>{const t=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(b)),r=F?.[b];return{...e,tabSelectFilters:r,currentSymbolType:b,canChangeExchange:t,withFilters:Boolean(t||r?.length),token:Y,currentTabAvailableSearchSources:Q,currentSelectedSearchSource:l}})):(x((e=>({...e,symbolStartIndex:0}))),Le(Y,b,l).then((()=>{se.current&&(se.current.scrollTop=0)})))}),[Y,b,l,ve,B,W]),(0,s.useEffect)((()=>{if(!R||!w.current)return;if(!u.enabled("show_spread_operators"))return w.current.value=R.symbol,void L();const e=ee(R)?R.exchange:R.parent.exchange;let t;t="contracts"in R&&R.contracts?.length?R.contracts[0]:R;const r={name:t.symbol,exchange:e,prefix:t.prefix,fullName:t.full_name},[n,o]=f(w.current,r,D)
|
||||
;w.current.value=n,w.current.setSelectionRange(o,o),L()}),[R]);const Se=B??"div",xe=Boolean(B)&&"symbolSearch"!==t,we=M??I.DialogSearch,ke=(0,s.useMemo)((()=>({listRef:le,resetRecommends:Me,updateRecommends:Le,searchToken:Y,emptyTextClassName:Ne.emptyText,isBrokerChecked:ve,symbolSearchState:U,currentMode:Z})),[le,Y,ve,U,Z,W]);return s.createElement(K.SymbolSearchDialogBodyContext.Provider,{value:ke},!(A&&"symbolSearch"===t)&&s.createElement(we,{reference:w,className:i()(Ne.search,D&&Ne.upperCase),placeholder:T||c.t(null,void 0,r(8573))},C&&s.createElement(pe,{state:ie,update:Re})),xe?s.createElement(Se,null):s.createElement(De,{otherSymbolsCount:q,onListTouchMove:function(){w.current?.blur()},onChangeSymbolTypeFilter:function(e){const{id:t}=e;y(t),o(-1)},onResetFilters:function(){m.isSeparateSymbolSearchTabs?"resetFilter"===U?y((0,m.getAllSymbolTypesValue)()):Ae&&p(Ae):(y((0,m.getAllSymbolTypesValue)()),Ae&&p(Ae));be(!1),a||w.current?.focus()},brokerTitle:ge,brokerLogoInfo:fe,isBrokerActive:ve,onBrokerToggle:be,listRef:le,listWrapRef:se,onLoadMoreSymbols:void 0,canLoadMore:void 0}),N);function Ce(){if(!w.current)return;const[e,t,r]=v(w.current,D);$.current=t,ie.current={selectedIndexValue:-1,searchSpreadsValue:(0,d.isSpread)(r),searchTokenValue:e},ce.current||(ce.current=setTimeout(Re,0))}function Ee(){if(!w.current)return;const[,e]=v(w.current,D);e!==$.current&&Ce()}function Ie(){u.enabled("show_spread_operators")?Ce():w.current&&(ie.current={selectedIndexValue:-1,searchSpreadsValue:!1,searchTokenValue:w.current.value},ce.current||(ce.current=setTimeout(Re,0)))}function Re(){const{selectedIndexValue:e,searchTokenValue:t,searchSpreadsValue:r}=ie.current;ce.current=null,(0,X.unstable_batchedUpdates)((()=>{k(r),o(e),ae(D?t.toUpperCase():t)}))}async function Le(e,t,r,n){try{"noop"===U?V("loading"):n?V("loadingWithPaginated"):(Pe(),Fe(),ue.current=setTimeout((()=>{const r=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(t)),n=F?.[t];x({token:e,canChangeExchange:r,tabSelectFilters:n,withFilters:Boolean(r||n?.length),currentSymbolType:t,currentSelectedSearchSource:l,currentTabAvailableSearchSources:Q,renderSymbolSearchList:[],symbolsRemaining:0,symbolStartIndex:0}),V("loading")}),500)),We();(0,m.getAllSymbolTypesValue)();const o=!1;let a;if(ve&&me){a=(await(0,J.respectAbort)(G.current.signal,me.accountMetainfo())).prefix}const s=u.enabled("show_spread_operators")?g(e)??a??r?.getRequestExchangeValue():l?.getRequestExchangeValue(),i=g(e)?void 0:(r||l)?.getRequestCountryValue(),[c,d]=await Promise.all([Be(G.current.signal,e,t,r,s,i,n),o&&!n?getRecent():Promise.resolve([])]),p=d.filter((e=>s?e.exchange?.toLowerCase()===s.toLowerCase():!i||e.country?.toLowerCase()===i.toLowerCase())),h=new Set(p.map((e=>`${e.exchange}_${e.symbol}`))),f=c.symbols.filter((e=>!h.has(`${e.exchange}_${e.symbol}`)));let v=function(e,t=window.ChartApiInstance.symbolsGrouping()){const r={},n=[];for(let o=0;o<e.length;++o){const a=e[o];if(a.prefix||Array.isArray(a.contracts))return e;const s=t[a.type];if(void 0===s){n.push(a);continue}
|
||||
const l=s.exec(a.symbol);if(l){const e=l[1];let t;r.hasOwnProperty(e)?t=r[e]:(t=n.length,r[e]=t,n.push({type:a.type,symbol:e,exchange:a.exchange,description:a.description,full_name:a.exchange+":"+e,contracts:[]})),n[t].contracts?.push(a)}else n.push(a)}return n}([...p,...f]);if(n&&(v=[...S.renderSymbolSearchList,...v]),!v.length)return x((r=>{const n=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(t)),o=F?.[t];return{...r,canChangeExchange:n,tabSelectFilters:o,token:e,symbolsRemaining:0,withFilters:Boolean(n||o?.length),currentSymbolType:t,currentSelectedSearchSource:l,currentTabAvailableSearchSources:Q}})),Pe(),V("empty"),void Te();Pe(),x((r=>{const n=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(t)),o=F?.[t];return{...r,canChangeExchange:n,tabSelectFilters:o,renderSymbolSearchList:v,token:e,symbolsRemaining:c.symbols_remaining,withFilters:Boolean(n||o?.length),currentSymbolType:t,currentSelectedSearchSource:l,currentTabAvailableSearchSources:Q,symbolStartIndex:r.symbolStartIndex+c.symbols.length}})),V("good")}catch(e){(0,J.skipAbortError)(e)}}function Te(){z&&(de.current=setTimeout((()=>z()),1e3))}async function Be(e,t,r,n,o,a,s){const l={serverHighlight:!1,text:u.enabled("show_spread_operators")?(0,d.shortName)(t):w.current?.value,exchange:o,country:a,type:r,lang:window.language||"",sortByCountry:void 0,brokerId:he,onlyTradable:Boolean(he)&&ve,unhideSymbolSearchGroups:ye,signal:e,start:s,filterQueryParams:W},i=(0,re.getSearchRequestDelay)();return void 0!==i&&await(0,J.delay)(e,i),H(l)}function Me(){We(),V("empty"),ae(""),k(!1),x((e=>({...e,symbolStartIndex:0}))),Pe()}function Oe(){"watchlist"===Z.current&&(n("symbolSearch"),(0,ne.trackEvent)("Watchlist","Mobile SS","Go to SS page"))}function _e(e){switch((0,oe.hashFromEvent)(e)){case 37:case 39:Ee()}}function Pe(){ue.current&&clearTimeout(ue.current)}function Fe(){de.current&&clearTimeout(de.current)}function We(){G.current.abort(),G.current=new AbortController}}var Fe=r(48199),We=r(74395),Qe=r(58442),Ue=r(56840);function Ve(e){const[t,r]=(0,s.useState)((()=>{const{defaultSearchSource:t,searchSources:r}=e,n=Ue.getValue("symboledit.exchangefilter","");return r.find((e=>e.value()===n))||t}));return[t,(0,s.useCallback)((e=>{var t;r(e),t=e,Ue.setValue("symboledit.exchangefilter",t.value())}),[])]}function Ke(e){const[t,r]=(0,s.useState)((()=>{if(1===e.types.length)return e.types[0].value;const t=Ue.getValue("symboledit.filter",(0,m.getAllSymbolTypesValue)());return e.types.find((e=>e.value===t))?t:(0,m.getAllSymbolTypesValue)()}));return[t,(0,s.useCallback)((e=>{var t;r(e),t=e,Ue.setValue("symboledit.filter",t)}),[])]}var ze=r(36947),He=r(82708),Ze=r(88145),Ge=r(76460),qe=r(63748);const je=!1,$e=(0,m.getAvailableSearchSources)(),Ye=(0,m.getDefaultSearchSource)(),Xe=u.enabled("uppercase_instrument_names");function Je(e){
|
||||
const{onClose:t,symbolTypeFilter:n,initialMode:o,defaultValue:a="",showSpreadActions:l,hideMarkedListFlag:i,selectSearchOnInit:d=!0,onSearchComplete:p,dialogTitle:h=c.t(null,void 0,r(51165)),placeholder:g,fullscreen:v,initialScreen:x,wrapper:w,dialog:k,contentItem:C,footer:I,searchInput:R,emptyState:T,autofocus:N,dialogWidth:M,onKeyDown:D,searchSourcesScreen:O,customSearchSymbols:A,isDisableFiltering:_,disableRecents:P,shouldReturnFocus:F,onSymbolFiltersParamsChange:W,onEmptyResults:Q,enableOptionsChain:U}=e,V=(0,s.useMemo)((()=>{if(_)return[];const t=e.symbolTypes??(0,m.getAvailableSymbolTypes)();return n?n(t):t}),[]),K=void 0!==e.input,z=_?[]:$e,[H,Z]=(0,s.useState)((()=>at(a,U)?"options":o)),[G,j]=(0,s.useState)((()=>at(a,U))),[$,Y]=(0,s.useState)((()=>null)),X=(0,s.useRef)(function(e,t){const r=at(e,t);return(0,m.isOptionDefaultValue)(e)?r??e.value:e}(a,U)),[J,re]=Ve({searchSources:z,defaultSearchSource:Ye}),[ne,ae]=[],[se,le]=Ke({types:V}),[ie,ce]=[{},()=>{}],[ue,de]=(0,s.useState)(!1),[me,pe]=(0,s.useState)(-1),[he,ge]=(0,s.useState)("noop"),fe=m.isSeparateSymbolSearchTabs?TAB_SELECT_FILTER_MAP:void 0,ve=m.isSeparateSymbolSearchTabs?ne?.[se]||Ye:J,be=(0,s.useMemo)((()=>{if(!m.isSeparateSymbolSearchTabs)return z;return z.filter((e=>{const t=TAB_SOURCE_FILTER_MAP[se];if(!t)return!1;if(!se)return!0;const r=e.group();return r===ExchangeGroup.AllExchanges||r&&t.value.includes(r)}))}),[z,se]),[ye,Se]=(0,s.useState)((()=>{const e=Boolean(J&&$e.length>1&&!(0,m.exchangeSelectDisabled)(se)),t=fe?.[se];return{canChangeExchange:e,tabSelectFilters:t,withFilters:Boolean(e||t?.length),renderSymbolSearchList:[],token:X.current,symbolsRemaining:0,currentSymbolType:se,currentSelectedSearchSource:ve,currentTabAvailableSearchSources:be,symbolStartIndex:0}})),xe=(0,s.useCallback)((e=>{trackEvent("New SS",se,"Change sources"),ae?.(se,e),Se((t=>({...t,currentSelectedSearchSource:e})))}),[se,Se]),we=(0,s.useRef)(e.input??null),[ke,Ce]=(0,s.useState)(!1),Ee=(0,ze.useForceUpdate)(),[Re,Le]=(0,s.useState)(new Set),{broker:Te=null,brokerId:Be,unhideSymbolSearchGroups:Ne="",displayBrokerSymbol:Me=!1}={brokerId:void 0};(0,s.useLayoutEffect)((()=>{!we?.current||!K&&Boolean(we.current?.value)||(K||"compare"===H||(we.current.value=X.current),!N||K&&"symbolSearch"!==H||we.current.focus())}),[H]),(0,s.useEffect)((()=>{we?.current&&d&&N&&we.current.select()}),[]);const De=(0,s.useMemo)((()=>ye.renderSymbolSearchList.reduce(((e,t)=>{const r=rt(t),n=Re.has(r);return e.push(t),n&&t.contracts&&e.push(...t.contracts.map((e=>({...e,parent:t})))),e}),[])),[ye.renderSymbolSearchList,Re]),Oe=(0,s.useRef)(null);(0,s.useEffect)((()=>{-1!==me&&Oe.current?.scrollIntoView({block:"nearest"})}),[me,Oe]);const Ae=b.includes(se),_e=(0,s.useMemo)((()=>De.map(((e,t)=>{if(ee(e)){const r=rt(e),n=e.contracts?Re.has(r):void 0,o=t===me,a=ye.renderSymbolSearchList.findIndex((t=>t.symbol===e.symbol&&t.exchange===e.exchange))+1;return{key:t,numberInList:a,id:r,title:tt(e,Me),description:e.description,isOffset:!1,onClick:mt.bind(null,e,a),providerId:e.provider_id,
|
||||
source:e.source,source2:e.source2,country:e.country?.toLocaleLowerCase(),type:e.type,exchangeName:null===e.exchange?void 0:e.exchange,exchangeTooltip:"",prefix:e.prefix||void 0,marketType:(0,We.marketType)(e.type,e.typespecs,!1),hideMarketType:Ae,isEod:e.params?.includes("eod")&&"economic"!==e.type,isYield:(0,Ze.isYield)(e),isExpanded:n,onExpandClick:e.contracts?pt.bind(null,r):void 0,fullSymbolName:e.contracts?Qe.QualifiedSources.fromSymbolSearchResult(e,e.contracts[0]):Qe.QualifiedSources.fromSymbolSearchResult(e),itemRef:o?Oe:void 0,isSelected:t===me,hideMarkedListFlag:i,item:e,logoId:e.logoid,currencyLogoId:e["currency-logoid"],baseCurrencyLogoId:e["base-currency-logoid"],shortName:(0,He.safeShortName)(Qe.QualifiedSources.fromSymbolSearchResult(e)),currencyCode:e.currency_code,isPrimary:e.is_primary_listing}}{const{parent:r}=e,n=rt(r),o=t===me,a=ye.renderSymbolSearchList.findIndex((e=>e.symbol===r.symbol&&e.exchange===r.exchange))+1;return{key:t,numberInList:a,id:n+e.symbol,dangerousTitleHTML:tt(e,Me),dangerousDescriptionHTML:`${r.description}`+(e.description?` (${e.description})`:""),isOffset:!0,isEod:e.params?.includes("eod"),isYield:(0,Ze.isYield)(e),onClick:ht.bind(null,e.parent,e,a),providerId:r.provider_id,country:r.country?.toLowerCase(),type:r.type,exchangeName:null===r.exchange?void 0:r.exchange,exchangeTooltip:"",marketType:(0,We.marketType)(r.type,e.typespecs,!1),hideMarketType:Ae,fullSymbolName:Qe.QualifiedSources.fromSymbolSearchResult(e.parent,e),itemRef:o?Oe:void 0,isSelected:o,hideMarkedListFlag:i,item:e}}}))),[ye.renderSymbolSearchList,Re,H,me,D]),Ue=(0,s.useMemo)((()=>function(e,t,r){const n=t?.[e],o=new Map(n?.map((e=>[e.id,e.urlParam]))),a=r[e];let s;if(a){s={};for(const[e,t]of Object.entries(a)){const r=o.get(e);r&&(s[r]=t)}}return s}(se,fe,ie)),[se,fe,ie]),Je=(0,s.useMemo)((()=>ye.renderSymbolSearchList.slice(0,20).map((e=>e.contracts?Qe.QualifiedSources.fromSymbolSearchResult(e,e.contracts[0]):Qe.QualifiedSources.fromSymbolSearchResult(e)))),[ye.renderSymbolSearchList]);(0,s.useEffect)((()=>{if(!W)return;const e=["resetFilter","resetTabFilter","empty"].includes(he)?[]:Je,t={...Ue,result_list:e};if(t.search_type||(t.search_type="bitcoin,crypto"===se?"crypto":se),!m.isSeparateSymbolSearchTabs)return t.exchange=ve?.getRequestCountryValue()??null,void W(t);if(se){const e=ve?.getRequestCountryValue()??null;e&&(t.country=e);const r=ve?.getRequestExchangeValue()??null;r&&(t.exchange=r)}W(t)}),[se,Ue,Je,ve,he]);const st=(0,s.useMemo)((()=>{if(A)return A}),[se,A,Ue,U]),lt=k??ot,it=lt!==ot&&!K,ct=(e,r)=>({mode:H,setMode:Z,selectedSearchSource:ve,setSelectedSearchSource:m.isSeparateSymbolSearchTabs?xe:re,isAllSearchSourcesSelected:B.isAllSearchSourcesSelected,allSearchSourcesTitle:m.isSeparateSymbolSearchTabs?TAB_SOURCE_FILTER_MAP[ye.currentSymbolType]?.allSearchSourcesTitle:void 0,selectedSymbolType:se,setSelectedSymbolType:le,selectedIndex:me,setSelectedIndex:pe,onClose:t,setSymbolSearchContent:Se,symbolSearchContent:ye,searchRef:we,cachedInputValue:X,searchSpreads:ue,setSearchSpreads:de,
|
||||
handleListWidth:gt,isSmallWidth:ke,feedItems:_e,isMobile:e,showSpreadActions:l,selectSearchOnInit:d,isTablet:r,selectedItem:De[me],forceUpdate:Ee,placeholder:g,initialScreen:x,toggleExpand:pt,openedItems:Re,onSubmit:bt,onSearchComplete:p,footer:I,symbolTypes:V,contentItem:C,searchInput:R,emptyState:T,autofocus:N,upperCaseEnabled:Xe,externalInput:K,handleKeyDown:it?void 0:vt,customSearchSymbols:st,searchSources:be,filterDefinitions:fe,selectedFilterValues:ie,setSelectedFilterValues:ce,filterQueryParams:Ue,symbolSearchState:he,setSymbolSearchState:ge,onEmptyResults:void 0}),ut=O??q,dt=w??"div";return s.createElement(dt,null,s.createElement(y.MatchMediaMap,{rules:S.DialogBreakpoints},(({TabletSmall:e,TabletNormal:n})=>s.createElement(E.SymbolSearchItemsDialogContext.Provider,{value:ct(e,n)},s.createElement(lt,{..."exchange"===H?{title:c.t(null,void 0,r(28628)),dataName:"exchanges-search",render:()=>s.createElement(ut,{searchSources:ye.currentTabAvailableSearchSources}),additionalHeaderElement:s.createElement(Fe.BackButton,{onClick:()=>Z("symbolSearch"),className:qe.backButton,size:"medium","aria-label":c.t(null,{context:"input"},r(41256)),preservePaddings:!0,flipIconOnRtl:(0,Ie.isRtl)()}),additionalElementPos:"before"}:{title:h,dataName:"symbol-search-items-dialog",render:()=>s.createElement(Pe,null),additionalElementPos:"after"},shouldReturnFocus:F,fullScreen:v,onClose:t,onClickOutside:t,onKeyDown:it?void 0:vt,isOpened:!0})))));function mt(e,t,r){if(e.contracts)return e.contracts.length?void ht(e,e.contracts[0],t,r):void pt(rt(e));ht(e,void 0,t,r)}function pt(e){const t=new Set(Re);t.has(e)?t.delete(e):t.add(e),Le(t)}function ht(e,r,n,o){const a=r||e,{exchange:s}=e;if(u.enabled("show_spread_operators")){const e={name:a.symbol,exchange:s,prefix:a.prefix,fullName:a.full_name};if(ue)return ft(e),void Ee();if(we.current&&we.current.value.includes(","))return void ft(e)}yt([{resolved:!0,symbol:Qe.QualifiedSources.fromSymbolSearchResult(e,r),result:a}],n,o),t()}function gt(e){Ce("fixed"===M||e<=640)}function ft(e){if(!we.current)return;const[t,r]=f(we.current,e,Xe);we.current.value=t,we.current.setSelectionRange(r,r),we.current.focus()}function vt(e){if(e.target&&e.target!==we.current)return;const r=(0,oe.hashFromEvent)(e);switch(r){case 13:e.preventDefault(),bt(!0);break;case 27:if(e.preventDefault(),"exchange"===H)return void Z("symbolSearch");if("options"===H)return Z("symbolSearch"),j(null),void Y(null);t()}switch((0,L.mapKeyCodeToDirection)(r)){case"blockPrev":if(e.preventDefault(),0===me||"good"!==he)return;if(-1===me)return void pe(0);pe(me-1);break;case"blockNext":if(e.preventDefault(),me===_e.length-1||"good"!==he)return;pe(me+1);break;case"inlinePrev":{if(-1===me)return;const t=_e[me],{id:r,isOffset:n,onExpandClick:o}=t;if(!n&&r&&Re.has(r)&&Boolean(o)&&!Boolean(D)&&(e.preventDefault(),pt(r)),o)return void D?.(e,!0);break}case"inlineNext":{if(-1===me)return;const t=_e[me],{id:r,isOffset:n,onExpandClick:o}=t;if(n||!r||Re.has(r)||!Boolean(o)||Boolean(D)||(e.preventDefault(),pt(r)),o)return void D?.(e,!0);break}}D?.(e)
|
||||
}function bt(e){if(!we.current)return;let r=we.current.value;if(u.enabled("show_spread_operators")&&ue&&r){const n=_e[me];if(n&&void 0!==n.isExpanded&&(n.onClick(),r=we.current.value),r.includes(",")){return yt(nt(r).map(et),null),void(e&&t())}return yt([{symbol:Xe?r.toUpperCase():r,resolved:!1}],null),void(e&&t())}if(r.includes(","))return yt(nt(r).map(et),null),void(e&&t());if(-1!==me){_e[me].onClick()}else if(u.enabled("allow_arbitrary_symbol_search_input")){const n=Xe?r.toUpperCase():r;if(n&&""!==n.trim()){const e=nt(n);if(je||void 0===Be||-1!==n.indexOf(":")){yt(e.map(et),null)}else(function(e){let t=!1;return Promise.all(e.map((e=>-1!==e.indexOf(":")||t?Promise.resolve({symbol:e,resolved:!1}):(t=!0,async function(e){await(Te?.accountMetainfo());const t=void 0,r=await te({strictMatch:!0,serverHighlight:!1,text:e,lang:window.language||"",brokerId:Be,onlyTradable:!0,unhideSymbolSearchGroups:Ne,exchange:t});if(0!==r.symbols.length){const e=r.symbols[0],{contracts:t}=e,n=t&&t.length>0?t[0]:void 0,o=e.prefix||e.exchange,a=n?n.symbol:e.symbol;if(o&&a)return{symbol:Qe.QualifiedSources.fromSymbolSearchResult(e,n),resolved:!0,result:e}}return{symbol:e,resolved:!1}}(e)))))})(e).then((e=>yt(e,null)))}e&&t()}else if("empty"!==he&&_e.length>0){_e[0].onClick()}}async function yt(e,t,r){const[{result:n,symbol:o,resolved:a}]=e,s=we.current?.value,l=!r||(0,Ge.isKeyboardClick)(r);let i=ue;void 0!==n&&ee(n)&&(i="spread"===n.type),p(e,{symbolType:se,isKeyboardEvent:l,numberInList:t,inputValue:s,isSpread:i})}}function et(e){return{symbol:Xe?e.toUpperCase():e,resolved:!1}}function tt(e,t){const{broker_symbol:r,symbol:n,description:o}=e;return`${"spread"===e.type?o:n}${t&&r?` (${r})`:""}`}function rt(e){return e.symbol+e.exchange+e.description}function nt(e){return e.split(",").map((e=>e.trim())).filter((e=>""!==e))}function ot(e){const{isMobile:t,isTablet:r}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext);return s.createElement(x.AdaptivePopupDialog,{...e,className:i()(qe.dialog,!t&&(r?qe.tabletDialog:qe.desktopDialog)),backdrop:!0,draggable:!1})}function at(e,t){return null}},81319:(e,t,r)=>{"use strict";r.d(t,{createGroupColumns:()=>p,exchangeSelectDisabled:()=>m,getAllSymbolTypesValue:()=>d,getAvailableSearchSources:()=>c,getAvailableSymbolTypes:()=>u,getDefaultSearchSource:()=>i,getSymbolFullName:()=>l,isOptionDefaultValue:()=>g,isSeparateSymbolSearchTabs:()=>h});var n=r(11542),o=r(20882);class a{constructor(e){this._exchange=e}value(){return this._exchange.value}name(){return(0,o.isAllSearchSourcesSelected)(this)?n.t(null,void 0,r(34040)):this._exchange.name}description(){return this._exchange.desc}country(){return this._exchange.country}providerId(){return this._exchange.providerId}group(){return this._exchange.group}includes(e){return function(e,t){const r=t.toLowerCase(),{name:n,desc:o,searchTerms:a}=e;return n.toLowerCase().includes(r)||o.toLowerCase().includes(r)||void 0!==a&&a.some((e=>e.toLowerCase().includes(r)))}(this._exchange,e)}getRequestExchangeValue(){return this._exchange.value}getRequestCountryValue(){}
|
||||
}var s=r(3685);function l(e){if(e.fullName)return e.fullName;let t;return t=e.prefix||e.exchange?(e.prefix||e.exchange)+":"+e.name:e.name,t.replace(/<\/?[^>]+(>|$)/g,"")}function i(){const e=c();return e.find(o.isAllSearchSourcesSelected)||e[0]||null}function c(){return(0,o.createSearchSources)(a,(0,s.getExchanges)())}function u(){return window.ChartApiInstance.supportedSymbolsTypes()}function d(){return""}function m(e){return!!h&&!TAB_SOURCE_FILTER_MAP[e]}function p(e,t=2){if(0===e.length)return[];if(1===t)return[e];const r=Math.floor(e.length/2)+e.length%2;return[e.slice(0,r),e.slice(r)].filter((e=>e.length>0))}const h=!1;function g(e){return"string"!=typeof e}},82708:(e,t,r)=>{"use strict";r.d(t,{safeShortName:()=>o});var n=r(13665);function o(e){try{return(0,n.shortName)(e)}catch(t){return e}}},44254:(e,t,r)=>{"use strict";r.d(t,{factorOutBraces:()=>m,getTokenAtPos:()=>d,isBinaryOperator:()=>c,isSpread:()=>u,parseToken:()=>h,shortName:()=>p,symbolTokenEscapeRe:()=>a,tokenize:()=>i});var n,o=r(18429);!function(e){e.Symbol="symbol",e.IncompleteSymbol="incompleteSymbol",e.Number="number",e.IncompleteNumber="incompleteNumber",e.SeparatorPrefix="separatorPrefix",e.OpenBrace="openBrace",e.CloseBrace="closeBrace",e.Plus="plus",e.Minus="minus",e.Multiply="multiply",e.Divide="divide",e.Power="power",e.Whitespace="whitespace",e.Unparsed="unparsed"}(n||(n={}));const a=/[+\-/*]/,s={number:/\d+(?:\.\d*|(?![a-zA-Z0-9_!:.&]))|\.\d+/,incompleteNumber:/\./,symbol:/(?:[^-+\/*^\s]'|[a-zA-Z0-9_\u0370-\u1FFF_\u2E80-\uFFFF^])(?:[^-+\/*^\s]'|[a-zA-Z0-9_\u0020\u0370-\u1FFF_\u2E80-\uFFFF_!:.&])*|'.+?'/,incompleteSymbol:/'[^']*/,separatorPrefix:o.SEPARATOR_PREFIX,openBrace:"(",closeBrace:")",plus:"+",minus:"-",multiply:"*",divide:"/",power:"^",whitespace:/[\0-\x20\s]+/,unparsed:null},l=new RegExp(Object.values(s).map((e=>{return null===e?"":`(${"string"==typeof e?(t=e,t.replace(/[\^$()[\]{}*+?|\\]/g,"\\$&")):e.source})`;var t})).filter((e=>""!==e)).concat(".").join("|"),"g");function i(e){if(!e)return[];const t=[],r=Object.keys(s);let n;for(;n=l.exec(e);){let e=!1;for(let o=r.length;o--;)if(n[o+1]){r[o]&&t.push({value:n[o+1],type:r[o],precedence:0,offset:n.index}),e=!0;break}e||t.push({value:n[0],type:"unparsed",precedence:0,offset:n.index})}return t}function c(e){return"plus"===e||"minus"===e||"multiply"===e||"divide"===e||"power"===e}function u(e){return e.length>1&&e.some((e=>c(e.type)))}function d(e,t){for(let r=0;r<e.length;r++){const n=e[r],o="symbol"===n.type||"incompleteSymbol"===n.type||"number"===n.type;if(n.offset<=t&&t<=n.offset+n.value.length&&o)return n}return null}function m(e){e=function(e){const t=[];for(const r of e)"whitespace"!==r.type&&t.push(r);return t}(e);const t=[],r=[];let n;for(let o=0;o<e.length;o++){const a=e[o];switch(a.type){case"plus":case"minus":case"multiply":case"divide":case"power":r.length&&r[r.length-1].minPrecedence>a.precedence&&(r[r.length-1].minPrecedence=a.precedence);break;case"openBrace":n={minPrecedence:1/0,openBraceIndex:o},r.push(n);break;case"closeBrace":{if(n=r.pop(),!n)break
|
||||
;const a=e[n.openBraceIndex-1],s=e[o+1],l=a&&("plus"===a.type||"multiply"===a.type);(!c(s?.type)||s?.precedence<=n.minPrecedence)&&(!c(a?.type)||a?.precedence<n?.minPrecedence||a?.precedence===n?.minPrecedence&&l)&&(t.unshift(n.openBraceIndex),t.push(o),r.length&&r[r.length-1].minPrecedence>n.minPrecedence&&(r[r.length-1].minPrecedence=n.minPrecedence))}}}for(let r=t.length;r--;)e.splice(t[r],1);return e}function p(e){return m(i(e)).reduce(((e,t)=>{if("symbol"!==t.type)return e+t.value;const[,r]=h(t);return r?e+r:e}),"")}function h(e){const t=/^'?(?:([A-Z0-9_]+):)?(.*?)'?$/i.exec(e.value);return null===t?[void 0,void 0]:[t[1],t[2]]}},618:(e,t,r)=>{"use strict";r.d(t,{removeUsdFromCryptoPairLogos:()=>s,resolveLogoUrls:()=>a});var n=r(36279);const o=(0,n.getLogoUrlResolver)();function a(e,t=n.LogoSize.Medium){const r=e.logoid,a=e["base-currency-logoid"],s=e["currency-logoid"],l=r&&o.getSymbolLogoUrl(r,t);if(l)return[l];const i=a&&o.getSymbolLogoUrl(a,t),c=s&&o.getSymbolLogoUrl(s,t);return i&&c?[i,c]:i?[i]:c?[c]:[]}function s(e){return 2!==e.length?e:function(e){return e.some((e=>l(e)))}(e)&&!function(e){return e.some((e=>e.includes("country")&&!l(e)))}(e)?e.filter((e=>!l(e))):e}function l(e){return!1}},39330:(e,t,r)=>{"use strict";r.d(t,{getBlockStyleClasses:()=>l,getLogoStyleClasses:()=>i});var n=r(97754),o=r(52292),a=r(78217),s=r.n(a);function l(e,t){return n(s().pair,s()[e],t)}function i(e,t=2,r=!0){return n(s().logo,s()[e],s().skeleton,o.skeletonTheme.wrapper,!r&&s().empty,1===t&&n(o.skeletonTheme.animated))}},58492:(e,t,r)=>{"use strict";r.d(t,{getStyleClasses:()=>n.getStyleClasses});var n=r(53885)},97006:(e,t,r)=>{"use strict";r.d(t,{createRegExpList:()=>l,getHighlightedChars:()=>i,rankedSearch:()=>s});var n=r(37265);function o(e){return e.replace(/[!-/[-^{-}?]/g,"\\$&")}var a;function s(e){const{data:t,rules:r,queryString:o,isPreventedFromFiltering:a,primaryKey:s,secondaryKey:l=s,optionalPrimaryKey:i,tertiaryKey:c}=e;return t.map((e=>{const t=i&&e[i]?e[i]:e[s],a=e[l],u=c&&e[c];let d,m=0;return r.forEach((e=>{const{re:r,fullMatch:s}=e;if(r.lastIndex=0,(0,n.isString)(t)&&t&&t.toLowerCase()===o.toLowerCase())return m=4,void(d=t.match(s)?.index);if((0,n.isString)(t)&&s.test(t))return m=3,void(d=t.match(s)?.index);if((0,n.isString)(a)&&s.test(a))return m=2,void(d=a.match(s)?.index);if((0,n.isString)(a)&&r.test(a))return m=2,void(d=a.match(r)?.index);if(Array.isArray(u))for(const e of u)if(s.test(e))return m=1,void(d=e.match(s)?.index)})),{matchPriority:m,matchIndex:d,item:e}})).filter((e=>a||e.matchPriority)).sort(((e,t)=>{if(e.matchPriority<t.matchPriority)return 1;if(e.matchPriority>t.matchPriority)return-1;if(e.matchPriority===t.matchPriority){if(void 0===e.matchIndex||void 0===t.matchIndex)return 0;if(e.matchIndex>t.matchIndex)return 1;if(e.matchIndex<t.matchIndex)return-1}return 0})).map((({item:e})=>e))}function l(e,t){const r=[],n=e.toLowerCase(),a=e.split("").map(((e,t)=>`(${0!==t?`[/\\s-]${o(e)}`:o(e)})`)).join("(.*?)")+"(.*)";return r.push({fullMatch:new RegExp(`(${o(e)})`,"i"),re:new RegExp(`^${a}`,"i"),
|
||||
reserveRe:new RegExp(a,"i"),fuzzyHighlight:!0}),t&&t.hasOwnProperty(n)&&r.push({fullMatch:t[n],re:t[n],fuzzyHighlight:!1}),r}function i(e,t,r){const n=[];return e&&r?(r.forEach((e=>{const{fullMatch:r,re:o,reserveRe:a}=e;r.lastIndex=0,o.lastIndex=0;const s=r.exec(t),l=s||o.exec(t)||a&&a.exec(t);if(e.fuzzyHighlight=!s,l)if(e.fuzzyHighlight){let e=l.index;for(let t=1;t<l.length;t++){const r=l[t],o=l[t].length;if(t%2){const t=r.startsWith(" ")||r.startsWith("/")||r.startsWith("-");n[t?e+1:e]=!0}e+=o}}else for(let e=0;e<l[0].length;e++)n[l.index+e]=!0})),n):n}!function(e){e[e.Low=0]="Low",e[e.MediumLow=1]="MediumLow",e[e.Medium=2]="Medium",e[e.High=3]="High",e[e.Highest=4]="Highest"}(a||(a={}))},24637:(e,t,r)=>{"use strict";r.d(t,{HighlightedText:()=>l});var n=r(50959),o=r(97754),a=r(97006),s=r(95059);function l(e){const{queryString:t,rules:r,text:l,className:i}=e,c=(0,n.useMemo)((()=>(0,a.getHighlightedChars)(t,l,r)),[t,r,l]);return n.createElement(n.Fragment,null,c.length?l.split("").map(((e,t)=>n.createElement(n.Fragment,{key:t},c[t]?n.createElement("span",{className:o(s.highlighted,i)},e):n.createElement("span",null,e)))):l)}},78036:(e,t,r)=>{"use strict";r.d(t,{useEnsuredContext:()=>a});var n=r(50959),o=r(50151);function a(e){return(0,o.ensureNotNull)((0,n.useContext)(e))}},36947:(e,t,r)=>{"use strict";r.d(t,{useForceUpdate:()=>n.useForceUpdate});var n=r(125)},29006:(e,t,r)=>{"use strict";r.d(t,{useResizeObserver:()=>n.useResizeObserver});var n=r(67842)},77975:(e,t,r)=>{"use strict";r.d(t,{useWatchedValueReadonly:()=>o});var n=r(50959);const o=(e,t=!1,r=[])=>{const o="watchedValue"in e?e.watchedValue:void 0,a="defaultValue"in e?e.defaultValue:e.watchedValue.value(),[s,l]=(0,n.useState)(o?o.value():a);return(t?n.useLayoutEffect:n.useEffect)((()=>{if(o){l(o.value());const e=e=>l(e);return o.subscribe(e),()=>o.unsubscribe(e)}return()=>{}}),[o,...r]),s}},84877:(e,t,r)=>{"use strict";r.d(t,{MatchMediaMap:()=>s});var n=r(50959),o=r(66783),a=r.n(o);class s extends n.Component{constructor(e){super(e),this._handleMediaChange=()=>{const e=i(this.state.queries,((e,t)=>t.matches));let t=!1;for(const r in e)if(e.hasOwnProperty(r)&&this.state.matches[r]!==e[r]){t=!0;break}t&&this.setState({matches:e})};const{rules:t}=this.props;this.state=l(t)}shouldComponentUpdate(e,t){return!a()(e,this.props)||(!a()(t.rules,this.state.rules)||!a()(t.matches,this.state.matches))}componentDidMount(){this._migrate(null,this.state.queries)}componentDidUpdate(e,t){a()(e.rules,this.props.rules)||this._migrate(t.queries,this.state.queries)}componentWillUnmount(){this._migrate(this.state.queries,null)}render(){return this.props.children(this.state.matches)}static getDerivedStateFromProps(e,t){if(a()(e.rules,t.rules))return null;const{rules:r}=e;return l(r)}_migrate(e,t){null!==e&&i(e,((e,t)=>{t.removeEventListener("change",this._handleMediaChange)})),null!==t&&i(t,((e,t)=>{t.addEventListener("change",this._handleMediaChange)}))}}function l(e){const t=i(e,((e,t)=>window.matchMedia(t)));return{queries:t,matches:i(t,((e,t)=>t.matches)),rules:{...e}}}
|
||||
function i(e,t){const r={};for(const n in e)e.hasOwnProperty(n)&&(r[n]=t(n,e[n]));return r}},47308:(e,t,r)=>{"use strict";r.d(t,{RoundButtonTabs:()=>$});var n=r(50959),o=r(97754),a=r(11542),s=r(63273),l=r(47201),i=r(35020),c=r(86240),u=r(86781);var d=r(95854),m=r(36966),p=r(7953),h=r(38528),g=r(66686);r(34869);const f=n.createContext({children:{},setIsReady:()=>{}});function v(){return!function(){const[e,t]=(0,n.useState)(!0);return(0,n.useEffect)((()=>{t(!1)}),[]),e}()}var b=r(67842);function y(e,t,r){const{id:o,items:a,activationType:s,orientation:y,disabled:S,onActivate:x,isActive:w,overflowBehaviour:k,enableActiveStateStyles:C,tablistLabelId:E,tablistLabel:I,preventDefaultIfKeyboardActionHandled:R,stopPropagationIfKeyboardActionHandled:L,keyboardNavigationLoop:T,defaultKeyboardFocus:B,focusableItemAttributes:N}=t,M=(0,i.useMobileTouchState)(),D=function(e){const t=(0,u.useSafeMatchMedia)(c["media-mf-phone-landscape"],!0),r=(0,i.useMobileTouchState)();return e??(r||!t?"scroll":"collapse")}(k),O=(0,n.useRef)(!1),A=(0,n.useCallback)((e=>e.id),[]),_=C??!M,P=function(){const{setIsReady:e,children:t}=(0,n.useContext)(f),r=(0,n.useRef)((0,n.useId)());return t[r.current]||(t[r.current]={isReady:!1}),(0,n.useCallback)((()=>{t[r.current].isReady=!0,e(Object.values(t).every((e=>e.isReady)))}),[t,e])}(),{visibleItems:F,hiddenItems:W,containerRefCallback:Q,innerContainerRefCallback:U,moreButtonRef:V,setItemRef:K,itemsMeasurements:z}=(0,d.useCollapsible)(a,A,w),H=function(e){const t=(0,n.useRef)(null);return(0,n.useEffect)((()=>{t.current=e}),[e]),t.current}(z.current?.containerWidth)??0,Z=v(),G=z.current?.containerWidth??0;let q=!1;z.current&&Z&&(q=function(e,t,r,n,o){if("collapse"!==n)return!0;const a=function(e,t,r){const n=e.filter((e=>t.find((t=>t.id===e[0]))));return t.length>0?n[0][1]+r:0}(Array.from(e.widthsMap.entries()),t,o),s=e.moreButtonWidth??0;let l=function(e,t){return e.reduce(((e,r)=>e+(t.get(r.id)??0)),0)}(r,e.widthsMap);return l+=t.length>0?s:0,function(e,t,r,n){return 0!==e?t-r<e&&t-r>n:r<t}(a,e.containerWidth,l,o)}(z.current,W,F,D,r.gap??0)||0===G);const j=(0,b.useResizeObserver)((([e])=>{const t=Z&&0===H&&0===W.length;(q&&e.contentRect.width===H||t)&&P()})),$="collapse"===D?F:a,Y=(0,n.useMemo)((()=>"collapse"===D?W:[]),[D,W]),X=(0,n.useCallback)((e=>Y.includes(e)),[Y]),{isOpened:J,open:ee,close:te,onButtonClick:re}=(0,p.useDisclosure)({id:o,disabled:S}),{tabsBindings:ne,tablistBinding:oe,scrollWrapBinding:ae,onActivate:se,onHighlight:le,isHighlighted:ie}=(0,m.useTabs)({id:o,items:[...$,...Y],activationType:s,orientation:y,disabled:S,tablistLabelId:E,tablistLabel:I,preventDefaultIfKeyboardActionHandled:R,scrollIntoViewOptions:r.scrollIntoViewOptions,onActivate:x,isActive:w,isCollapsed:X,isRtl:r.isRtl,isDisclosureOpened:J,isRadioGroup:r.isRadioGroup,stopPropagationIfKeyboardActionHandled:L,keyboardNavigationLoop:T,defaultKeyboardFocus:B,focusableItemAttributes:N}),ce=Y.find(ie),ue=(0,n.useCallback)((()=>{const e=a.find(w);e&&le(e)}),[le,w,a]),de=(0,n.useCallback)((e=>ne.find((t=>t.id===e.id))),[ne]),me=(0,
|
||||
n.useCallback)((()=>{te(),ue(),O.current=!0}),[te,ue]),pe=(0,n.useCallback)((()=>{ce&&(se(ce),le(ce,250))}),[se,le,ce]);ae.ref=(0,h.useMergedRefs)([j,ae.ref,Q]),oe.ref=(0,h.useMergedRefs)([oe.ref,U]),oe.onKeyDown=(0,l.createSafeMulticastEventHandler)((0,g.useKeyboardEventHandler)([(0,g.useKeyboardClose)(J,me),(0,g.useKeyboardActionHandler)([13,32],pe,(0,n.useCallback)((()=>Boolean(ce)),[ce]))],R),oe.onKeyDown);const he=(0,n.useCallback)((e=>{O.current=!0,re(e)}),[O,re]),ge=(0,n.useCallback)((e=>{e&&se(e)}),[se]);return(0,n.useEffect)((()=>{O.current?O.current=!1:(ce&&!J&&ee(),!ce&&J&&te())}),[ce,J,ee,te]),{enableActiveStateStyles:_,moreButtonRef:V,setItemRef:K,getBindings:de,handleMoreButtonClick:he,handleCollapsedItemClick:ge,scrollWrapBinding:ae,overflowBehaviour:D,tablistBinding:oe,visibleTabs:$,hiddenTabs:Y,handleActivate:se,isMobileTouch:M,getItemId:A,isDisclosureOpened:J,isHighlighted:ie,closeDisclosure:te}}var S=r(8304),x=r(53017),w=r(17946),k=r(9745),C=r(2948),E=r(90854);const I="xsmall",R="primary";function L(e){const t=(0,n.useContext)(w.CustomBehaviourContext),{size:r="xsmall",variant:a="primary",active:s,fake:l,startIcon:i,endIcon:c,showCaret:u,iconOnly:d,anchor:m,enableActiveStateStyles:p=t.enableActiveStateStyles,disableFocusOutline:h=!1,tooltip:g}=e;return o(E.roundTabButton,E[r],E[a],i&&E.withStartIcon,(c||u)&&E.withEndIcon,d&&E.iconOnly,s&&E.selected,l&&E.fake,m&&E.enableCursorPointer,!p&&E.disableActiveStateStyles,h&&E.disableFocusOutline,g&&"apply-common-tooltip")}function T(e){const{startIcon:t,endIcon:r,showCaret:a,iconOnly:s,children:l}=e;return n.createElement(n.Fragment,null,t&&n.createElement(k.Icon,{icon:t,className:E.startIconWrap,"aria-hidden":!0}),l&&n.createElement("span",{className:o(E.content,s&&E.visuallyHidden)},l),(!s&&r||a)&&n.createElement(B,{icon:r,showCaret:a}))}function B(e){const{icon:t,showCaret:r}=e;return n.createElement(k.Icon,{className:o(E.endIconWrap,r&&E.caret),icon:r?C:t,"aria-hidden":!0})}const N=(0,n.forwardRef)(((e,t)=>{const{id:r,size:o,variant:a,active:s,fake:l,startIcon:i,endIcon:c,showCaret:u,iconOnly:d,children:m,enableActiveStateStyles:p,disableFocusOutline:h,tooltip:g,...f}=e;return n.createElement("button",{...f,id:r,ref:t,"data-tooltip":g,className:L({size:o,variant:a,active:s,fake:l,startIcon:i,endIcon:c,showCaret:u,iconOnly:d,enableActiveStateStyles:p,disableFocusOutline:h,tooltip:g})},n.createElement(T,{startIcon:i,endIcon:c,showCaret:u,iconOnly:d},m))}));N.displayName="RoundTabsBaseButton";const M=(0,n.createContext)({size:"small",variant:"primary",isHighlighted:!1,isCollapsed:!1,disabled:!1});function D(e){const{item:t,highlighted:r,handleItemRef:o,reference:a,onClick:s,"aria-disabled":l,...i}=e,c=(0,n.useCallback)((e=>{i.disabled&&e.preventDefault(),s&&s(t)}),[s,t,i.disabled]),u=(0,n.useCallback)((e=>{o&&o(t,e),(0,x.isomorphicRef)(a)(e)}),[t,o]),d={size:i.size??I,variant:i.variant??R,isHighlighted:Boolean(i.active),isCollapsed:!1,disabled:i.disabled??!1};return n.createElement(N,{...i,id:t.id,onClick:c,ref:u,startIcon:t.startIcon,endIcon:t.endIcon,
|
||||
tooltip:t.tooltip,"aria-label":"radio"===i.role?t.children:void 0},n.createElement(M.Provider,{value:d},t.children))}var O=r(16396),A=r(4523),_=r(16829),P=r(89882),F=r(2057),W=r(93524);function Q(e){const{disabled:t,isOpened:r,enableActiveStateStyles:o,disableFocusOutline:a,fake:s,items:l,buttonText:i,buttonPreset:c="text",buttonRef:u,size:d,variant:m,isAnchorTabs:p,isHighlighted:g,onButtonClick:f,onItemClick:v,onClose:b}=e,y=(0,n.useRef)(null),S=(0,h.useMergedRefs)([u,y]),x="text"===c?void 0:"xsmall"===d?P:F;return n.createElement(A.PopupMenuDisclosureView,{buttonRef:y,listboxTabIndex:-1,isOpened:r,onClose:b,listboxAria:{"aria-hidden":!0},button:n.createElement(N,{"aria-hidden":!0,disabled:t,active:r,onClick:f,ref:S,tabIndex:-1,size:d,variant:m,startIcon:x,showCaret:"text"===c,iconOnly:"meatballs"===c,enableActiveStateStyles:o,disableFocusOutline:a,fake:s},i),popupChildren:n.createElement(n.Fragment,null,"meatballs"===c&&n.createElement(_.ToolWidgetMenuSummary,null,i),l.map((e=>n.createElement(O.PopupMenuItem,{key:e.id,className:p?W.linkItem:void 0,onClick:v,onClickArg:e,isActive:g(e),label:n.createElement(U,{isHighlighted:g(e),size:d,variant:m,disabled:e.disabled},e.children),isDisabled:e.disabled,link:"href"in e?e.href:void 0,rel:"rel"in e?e.rel:void 0,target:"target"in e?e.target:void 0,icon:e.startIcon,toolbox:e.endIcon&&n.createElement(k.Icon,{icon:e.endIcon}),renderComponent:"renderComponent"in e?e.renderComponent:void 0,dontClosePopup:!0}))))})}function U(e){const{isHighlighted:t,size:r,variant:o,children:a,disabled:s}=e,l={size:r??I,variant:o??R,isHighlighted:t,isCollapsed:!0,disabled:s??!1};return n.createElement(M.Provider,{value:l},a)}var V,K,z,H,Z=r(76912);function G(e){const{overflowBehaviour:t}=e;return o(Z.scrollWrap,"scroll"===t&&Z.overflowScroll,"wrap"===t&&Z.overflowWrap)}function q(e){const{align:t="start"}=e;return o(Z.roundTabs,Z[t])}function j(e){const{children:t,disabled:l,moreButtonText:i=a.t(null,void 0,r(37117)),moreButtonPreset:c,className:u,size:d,variant:m,align:p,style:h={},"data-name":g,isRadioGroup:f,"aria-controls":v}=e,b=function(e="xsmall"){switch(e){case"small":return 8;case"xsmall":return 4;default:return 16}}(d),{enableActiveStateStyles:x,moreButtonRef:w,setItemRef:k,getBindings:C,handleMoreButtonClick:E,handleCollapsedItemClick:I,scrollWrapBinding:R,overflowBehaviour:L,tablistBinding:T,visibleTabs:B,hiddenTabs:N,handleActivate:M,isMobileTouch:O,getItemId:A,isDisclosureOpened:_,isHighlighted:P,closeDisclosure:F}=y(S.TabNames.RoundButtonTabs,e,{isRtl:s.isRtl,scrollIntoViewOptions:{additionalScroll:b},isRadioGroup:f,gap:b});return n.createElement("div",{...R,className:o(G({overflowBehaviour:L}),u),style:{...h,"--ui-lib-round-tabs-gap":`${b}px`},"data-name":g},n.createElement("div",{...T,className:q({align:p,overflowBehaviour:L})},B.map((e=>n.createElement(D,{...C(e),key:e.id,item:e,onClick:()=>M(e),variant:m,size:d,enableActiveStateStyles:x,disableFocusOutline:O,reference:k(A(e)),...e.dataId&&{"data-id":e.dataId},"aria-controls":v}))),N.map((e=>n.createElement(D,{...C(e),key:e.id,
|
||||
item:e,variant:m,size:d,reference:k(A(e)),"aria-controls":v,fake:!0}))),n.createElement(Q,{disabled:l,isOpened:_,items:N,buttonText:i,buttonPreset:c,buttonRef:w,isHighlighted:P,onButtonClick:E,onItemClick:I,onClose:F,variant:m,size:d,enableActiveStateStyles:x,disableFocusOutline:O,fake:0===N.length}),t))}function $(e){const{"data-name":t="round-tabs-buttons",...r}=e;return n.createElement(j,{...r,"data-name":t})}!function(e){e.Primary="primary",e.Ghost="ghost"}(V||(V={})),function(e){e.XSmall="xsmall",e.Small="small",e.Large="large"}(K||(K={})),function(e){e.Start="start",e.Center="center"}(z||(z={})),function(e){e.Text="text",e.Meatballs="meatballs"}(H||(H={}));r(21593)},63932:(e,t,r)=>{"use strict";r.d(t,{Spinner:()=>i});var n=r(50959),o=r(97754),a=r(58096),s=(r(15216),r(85862)),l=r.n(s);function i(e){const{ariaLabel:t,ariaLabelledby:r,className:s,style:i,size:c,id:u,disableSelfPositioning:d}=e;return n.createElement("div",{className:o(s,"tv-spinner","tv-spinner--shown",`tv-spinner--size_${a.spinnerSizeMap[c||a.DEFAULT_SIZE]}`,d&&l().disableSelfPositioning),style:i,role:"progressbar",id:u,"aria-label":t,"aria-labelledby":r})}},10381:(e,t,r)=>{"use strict";r.d(t,{ToolWidgetCaret:()=>i});var n=r(50959),o=r(97754),a=r(9745),s=r(49128),l=r(578);function i(e){const{dropped:t,className:r}=e;return n.createElement(a.Icon,{className:o(r,s.icon,{[s.dropped]:t}),icon:l})}},4237:(e,t,r)=>{"use strict";var n=r(32227);t.createRoot=n.createRoot,n.hydrateRoot},38576:e=>{e.exports={button:"button-GwQQdU8S",hover:"hover-GwQQdU8S",clicked:"clicked-GwQQdU8S",isInteractive:"isInteractive-GwQQdU8S",accessible:"accessible-GwQQdU8S",isGrouped:"isGrouped-GwQQdU8S",isActive:"isActive-GwQQdU8S",isOpened:"isOpened-GwQQdU8S",isDisabled:"isDisabled-GwQQdU8S",text:"text-GwQQdU8S",icon:"icon-GwQQdU8S",endIcon:"endIcon-GwQQdU8S"}},55973:e=>{e.exports={title:"title-u3QJgF_p"}},81348:(e,t,r)=>{"use strict";r.d(t,{DEFAULT_TOOL_WIDGET_BUTTON_THEME:()=>l,ToolWidgetButton:()=>i});var n=r(50959),o=r(97754),a=r(9745),s=r(38576);const l=s,i=n.forwardRef(((e,t)=>{const{tag:r="div",icon:l,endIcon:i,isActive:c,isOpened:u,isDisabled:d,isGrouped:m,isHovered:p,isClicked:h,onClick:g,text:f,textBeforeIcon:v,title:b,theme:y=s,className:S,forceInteractive:x,inactive:w,"data-name":k,"data-tooltip":C,...E}=e,I=o(S,y.button,(b||C)&&"apply-common-tooltip",{[y.isActive]:c,[y.isOpened]:u,[y.isInteractive]:(x||Boolean(g))&&!d&&!w,[y.isDisabled]:Boolean(d||w),[y.isGrouped]:m,[y.hover]:p,[y.clicked]:h}),R=l&&("string"==typeof l?n.createElement(a.Icon,{className:y.icon,icon:l}):n.cloneElement(l,{className:o(y.icon,l.props.className)}));return"button"===r?n.createElement("button",{...E,ref:t,type:"button",className:o(I,y.accessible),disabled:d&&!w,onClick:g,title:b,"data-name":k,"data-tooltip":C},v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f),R,!v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f)):n.createElement("div",{...E,ref:t,"data-role":"button",className:I,onClick:d?void 0:g,title:b,"data-name":k,"data-tooltip":C
|
||||
},v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f),R,!v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f),i&&n.createElement(a.Icon,{icon:i,className:s.endIcon}))}))},16829:(e,t,r)=>{"use strict";r.d(t,{ToolWidgetMenuSummary:()=>s});var n=r(50959),o=r(97754),a=r(55973);function s(e){return n.createElement("div",{className:o(e.className,a.title)},e.children)}},74395:(e,t,r)=>{"use strict";r.d(t,{VISIBLE_TYPESPECS:()=>s,marketType:()=>l});var n=r(11542);const o=new Map([["cfd",n.t(null,void 0,r(79599))],["dr",n.t(null,void 0,r(47268))],["index",n.t(null,void 0,r(87464))],["forex",n.t(null,void 0,r(17770))],["right",n.t(null,{context:"symbol_type"},r(53174))],["bond",n.t(null,void 0,r(42358))],["bitcoin",n.t(null,void 0,r(46128))],["crypto",n.t(null,void 0,r(46128))],["economic",n.t(null,void 0,r(54094))],["indices",n.t(null,void 0,r(90250))],["futures",n.t(null,void 0,r(4723))],["stock",n.t(null,void 0,r(76752))],["commodity",n.t(null,void 0,r(70932))]]);r(21251);const a=new Map,s=new Set(["cfd","spreadbet","defi","yield","government","corporate","mutual","money","etf","unit","trust","reit","etn","convertible","closedend","crypto","oracle"]);function l(e,t=[],r=!0){const n=t.filter((e=>s.has(e))),l=`${e}_${n.sort().join("_")}`,i=a.get(l);if(void 0!==i)return i;const c=r?function(e){return o.get(e)||e}(e):e,u=Boolean(t.length)?[c,...n].join(" "):c;return a.set(l,u),u}},52019:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M13.35 5.35a.5.5 0 0 0-.7-.7L9 8.29 5.35 4.65a.5.5 0 1 0-.7.7L8.29 9l-3.64 3.65a.5.5 0 0 0 .7.7L9 9.71l3.65 3.64a.5.5 0 0 0 .7-.7L9.71 9l3.64-3.65z"/></svg>'},89882:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M5 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm6 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/></svg>'},2057:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M9 14a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm8 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm5 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/></svg>'},95694:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M17 22.5 6.85 12.35a.5.5 0 0 1 0-.7L17 1.5"/></svg>'},49498:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M12 16.5 4.85 9.35a.5.5 0 0 1 0-.7L12 1.5"/></svg>'},60176:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" width="14" height="14" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M9.5 12.5 3.9 7.37a.5.5 0 0 1 0-.74L9.5 1.5"/></svg>'},35369:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" width="12" height="12" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M8 10.5 3.85 6.35a.5.5 0 0 1 0-.7L8 1.5"/></svg>'},58478:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M7 8.5 3.85 5.35a.5.5 0 0 1 0-.7L7 1.5"/></svg>'},73063:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M17 22.5 6.85 12.35a.5.5 0 0 1 0-.7L17 1.5"/></svg>'},14127:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M12 16.5 4.85 9.35a.5.5 0 0 1 0-.7L12 1.5"/></svg>'},18073:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" width="14" height="14" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M9.5 12.5 3.9 7.37a.5.5 0 0 1 0-.74L9.5 1.5"/></svg>'},99243:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" width="12" height="12" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M8 10.5 3.85 6.35a.5.5 0 0 1 0-.7L8 1.5"/></svg>'},42576:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M7 8.5 3.85 5.35a.5.5 0 0 1 0-.7L7 1.5"/></svg>'},578:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 8" width="16" height="8"><path fill="currentColor" d="M0 1.475l7.396 6.04.596.485.593-.49L16 1.39 14.807 0 7.393 6.122 8.58 6.12 1.186.08z"/></svg>'},91540:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" d="M2.5 14.5c1.68-1.26 3.7-2 6.5-2s4.91.74 6.5 2m-13-11c1.68 1.26 3.7 2 6.5 2s4.91-.74 6.5-2"/><circle stroke="currentColor" cx="9" cy="9" r="8.5"/><path stroke="currentColor" d="M13.5 9c0 2.42-.55 4.58-1.4 6.12-.87 1.56-1.98 2.38-3.1 2.38s-2.23-.82-3.1-2.38c-.85-1.54-1.4-3.7-1.4-6.12s.55-4.58 1.4-6.12C6.77 1.32 7.88.5 9 .5s2.23.82 3.1 2.38c.85 1.54 1.4 3.7 1.4 6.12z"/></svg>'},66619:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120"><path fill="#B2B5BE" fill-rule="evenodd" d="M23 39a36 36 0 0 1 72 0v13.15l15.1 8.44 2.16 1.2-1.64 1.86-12.85 14.59 3.73 4.03L98.57 85 95 81.13V117H77v-12H67v9H50V95H40v22H23V81.28l-3.8 3.61-2.76-2.9 4.05-3.84-12.77-14.5-1.64-1.86 2.16-1.2L23 52.34V39Zm72 36.33 10.98-12.46L95 56.73v18.6ZM23 56.92v18.03L12.35 62.87 23 56.92ZM59 7a32 32 0 0 0-32 32v74h9V91h18v19h9v-9h18v12h10V39A32 32 0 0 0 59 7Zm-7 36a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm19 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/></svg>'},67562:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120"><path fill="#131722" fill-rule="evenodd" d="M23 39a36 36 0 0 1 72 0v13.15l15.1 8.44 2.16 1.2-1.64 1.86-12.85 14.59 3.73 4.03L98.57 85 95 81.13V117H77v-12H67v9H50V95H40v22H23V81.28l-3.8 3.61-2.76-2.9 4.05-3.84-12.77-14.5-1.64-1.86 2.16-1.2L23 52.34V39Zm72 36.33 10.98-12.46L95 56.73v18.6ZM23 56.92v18.03L12.35 62.87 23 56.92ZM59 7a32 32 0 0 0-32 32v74h9V91h18v19h9v-9h18v12h10V39A32 32 0 0 0 59 7Zm-7 36a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm19 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/></svg>'},69533:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path stroke="currentColor" d="M8 5l3.5 3.5L8 12"/></svg>'},486:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M2.5 6.5h9"/><circle fill="currentColor" cx="7" cy="3" r="1"/><circle fill="currentColor" cx="7" cy="10" r="1"/></svg>'},63861:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><g fill="none" fill-rule="evenodd" stroke="currentColor"><path stroke-linecap="square" stroke-linejoin="round" d="M3.5 10V2.5L1 5"/><path stroke-linecap="square" d="M1.5 10.5h4"/><path d="M8 12l3-11"/></g></svg>'},81574:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M2.5 6.5h8"/></svg>'},32617:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M3 10l7-7M3 3l7 7"/></svg>'},35119:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M2.5 6.5h8m-4-4v8"/></svg>'},69135:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M3 7l3.5-3.5L10 7"/></svg>'},54313:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M18.5 12.5a6 6 0 1 1-12 0 6 6 0 0 1 12 0Zm-1.25 5.8a7.5 7.5 0 1 1 1.06-1.06l4.22 4.23.53.53L22 23.06l-.53-.53-4.22-4.22Z"/></svg>'},6347:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M17.4 17.5a7 7 0 1 0-4.9 2c1.9 0 3.64-.76 4.9-2zm0 0l5.1 5"/></svg>'}}]);
|
||||
32
charting_library/bundles/2751.f5e7294780401a4b0339.js
Normal file
32
charting_library/bundles/2751.f5e7294780401a4b0339.js
Normal file
@@ -0,0 +1,32 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2751],{66783:e=>{"use strict";var t=Object.prototype.hasOwnProperty;function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}e.exports=function(e,n){if(r(e,n))return!0;if("object"!=typeof e||null===e||"object"!=typeof n||null===n)return!1;var o=Object.keys(e),a=Object.keys(n);if(o.length!==a.length)return!1;for(var s=0;s<o.length;s++)if(!t.call(n,o[s])||!r(e[o[s]],n[o[s]]))return!1;return!0}},88317:e=>{e.exports={pills:"pills-PVWoXu5j",primary:"primary-PVWoXu5j",gray:"gray-PVWoXu5j",selected:"selected-PVWoXu5j",grouped:"grouped-PVWoXu5j",active:"active-PVWoXu5j",disableActiveOnTouch:"disableActiveOnTouch-PVWoXu5j",disableActiveStateStyles:"disableActiveStateStyles-PVWoXu5j",withGrouped:"withGrouped-PVWoXu5j","quiet-primary":"quiet-primary-PVWoXu5j",green:"green-PVWoXu5j",red:"red-PVWoXu5j",blue:"blue-PVWoXu5j",secondary:"secondary-PVWoXu5j",ghost:"ghost-PVWoXu5j"}},1538:e=>{e.exports={lightButton:"lightButton-bYDQcOkp",link:"link-bYDQcOkp",ltr:"ltr-bYDQcOkp",rtl:"rtl-bYDQcOkp","typography-regular16px":"typography-regular16px-bYDQcOkp","typography-medium16px":"typography-medium16px-bYDQcOkp","typography-regular14px":"typography-regular14px-bYDQcOkp","typography-semibold14px":"typography-semibold14px-bYDQcOkp","typography-semibold16px":"typography-semibold16px-bYDQcOkp",content:"content-bYDQcOkp",visuallyHidden:"visuallyHidden-bYDQcOkp",nowrap:"nowrap-bYDQcOkp",ellipsisContainer:"ellipsisContainer-bYDQcOkp",textWrapContainer:"textWrapContainer-bYDQcOkp",textWrapWithEllipsis:"textWrapWithEllipsis-bYDQcOkp",slot:"slot-bYDQcOkp",caret:"caret-bYDQcOkp",activeCaret:"activeCaret-bYDQcOkp",xsmall:"xsmall-bYDQcOkp",withStartSlot:"withStartSlot-bYDQcOkp",withEndSlot:"withEndSlot-bYDQcOkp",noContent:"noContent-bYDQcOkp",wrap:"wrap-bYDQcOkp",small:"small-bYDQcOkp",medium:"medium-bYDQcOkp"}},78217:e=>{e.exports={pair:"pair-ocURKVwI",xxceptionallysmalldonotusebrv1023:"xxceptionallysmalldonotusebrv1023-ocURKVwI",xxxxsmall:"xxxxsmall-ocURKVwI",xxxsmall:"xxxsmall-ocURKVwI",xxsmall:"xxsmall-ocURKVwI",xsmall:"xsmall-ocURKVwI",small:"small-ocURKVwI",medium:"medium-ocURKVwI",large:"large-ocURKVwI",xlarge:"xlarge-ocURKVwI",xxlarge:"xxlarge-ocURKVwI",xxxlarge:"xxxlarge-ocURKVwI",logo:"logo-ocURKVwI",skeleton:"skeleton-ocURKVwI",empty:"empty-ocURKVwI"}},34869:e=>{e.exports={hidden:"hidden-DgcIT6Uz",fadeInWrapper:"fadeInWrapper-DgcIT6Uz"}},85862:e=>{e.exports={disableSelfPositioning:"disableSelfPositioning-dYiqkKAE"}},79566:e=>{e.exports={container:"container-M1mz4quA",pairContainer:"pairContainer-M1mz4quA",logo:"logo-M1mz4quA",hidden:"hidden-M1mz4quA"}},92335:e=>{e.exports={container:"container-qm7Rg5MB",mobile:"mobile-qm7Rg5MB",inputContainer:"inputContainer-qm7Rg5MB",withCancel:"withCancel-qm7Rg5MB",input:"input-qm7Rg5MB",icon:"icon-qm7Rg5MB",cancel:"cancel-qm7Rg5MB"}},10070:e=>{e.exports={actions:"actions-rarsm4ka",actionButton:"actionButton-rarsm4ka"}},94869:e=>{e.exports={logo:"logo-d0vVmGvT"}},92069:e=>{e.exports={
|
||||
"tablet-small-breakpoint":"(max-width: 440px)",itemRow:"itemRow-oRSs8UQo",multiLine:"multiLine-oRSs8UQo",cell:"cell-oRSs8UQo",itemInfoCell:"itemInfoCell-oRSs8UQo",description:"description-oRSs8UQo",symbolDescription:"symbolDescription-oRSs8UQo",flag:"flag-oRSs8UQo",exchangeDescription:"exchangeDescription-oRSs8UQo",marketType:"marketType-oRSs8UQo",exchangeName:"exchangeName-oRSs8UQo",actionHandleWrap:"actionHandleWrap-oRSs8UQo",source:"source-oRSs8UQo",hover:"hover-oRSs8UQo",selected:"selected-oRSs8UQo",active:"active-oRSs8UQo",highlighted:"highlighted-oRSs8UQo",light:"light-oRSs8UQo","highlight-animation-theme-light":"highlight-animation-theme-light-oRSs8UQo",dark:"dark-oRSs8UQo","highlight-animation-theme-dark":"highlight-animation-theme-dark-oRSs8UQo",markedFlag:"markedFlag-oRSs8UQo",offset:"offset-oRSs8UQo",descriptionCell:"descriptionCell-oRSs8UQo",addition:"addition-oRSs8UQo",exchangeCell:"exchangeCell-oRSs8UQo",fixedWidth:"fixedWidth-oRSs8UQo",expandHandle:"expandHandle-oRSs8UQo",expanded:"expanded-oRSs8UQo",symbolTitle:"symbolTitle-oRSs8UQo",invalid:"invalid-oRSs8UQo",noDescription:"noDescription-oRSs8UQo",highlightedText:"highlightedText-oRSs8UQo",icon:"icon-oRSs8UQo",narrow:"narrow-oRSs8UQo",wide:"wide-oRSs8UQo",dataMode:"dataMode-oRSs8UQo",actionsCell:"actionsCell-oRSs8UQo",action:"action-oRSs8UQo",targetAction:"targetAction-oRSs8UQo",removeAction:"removeAction-oRSs8UQo",addAction:"addAction-oRSs8UQo",markedFlagWrap:"markedFlagWrap-oRSs8UQo",markedFlagMobile:"markedFlagMobile-oRSs8UQo",logo:"logo-oRSs8UQo",isExpandable:"isExpandable-oRSs8UQo",primaryIcon:"primaryIcon-oRSs8UQo"}},6963:e=>{e.exports={icon:"icon-OJpk_CAQ"}},6109:e=>{e.exports={wrap:"wrap-IxKZEhmO",libAllSelected:"libAllSelected-IxKZEhmO",container:"container-IxKZEhmO",iconWrap:"iconWrap-IxKZEhmO",icon:"icon-IxKZEhmO",title:"title-IxKZEhmO",highlighted:"highlighted-IxKZEhmO",description:"description-IxKZEhmO",mobile:"mobile-IxKZEhmO",allSelected:"allSelected-IxKZEhmO",desktop:"desktop-IxKZEhmO",allSelectedIcon:"allSelectedIcon-IxKZEhmO",selected:"selected-IxKZEhmO",focused:"focused-IxKZEhmO",titleWithoutDesc:"titleWithoutDesc-IxKZEhmO",textBlock:"textBlock-IxKZEhmO",bordered:"bordered-IxKZEhmO"}},96137:e=>{e.exports={container:"container-dfKL9A7t",contentList:"contentList-dfKL9A7t",contentListDesktop:"contentListDesktop-dfKL9A7t",searchSourceItemsContainer:"searchSourceItemsContainer-dfKL9A7t",oneColumn:"oneColumn-dfKL9A7t",searchSourceItemsContainerDesktop:"searchSourceItemsContainerDesktop-dfKL9A7t",groupTitleDesktop:"groupTitleDesktop-dfKL9A7t",column:"column-dfKL9A7t",emptyText:"emptyText-dfKL9A7t",emptyIcon:"emptyIcon-dfKL9A7t",noResultsDesktop:"noResultsDesktop-dfKL9A7t"}},6591:e=>{e.exports={wrap:"wrap-gjrLBBL3",item:"item-gjrLBBL3",small:"small-gjrLBBL3",newStyles:"newStyles-gjrLBBL3",mobile:"mobile-gjrLBBL3",text:"text-gjrLBBL3",exchange:"exchange-gjrLBBL3",filterItem:"filterItem-gjrLBBL3",brokerWrap:"brokerWrap-gjrLBBL3"}},44458:e=>{e.exports={wrap:"wrap-dlewR1s1",watchlist:"watchlist-dlewR1s1",noFeed:"noFeed-dlewR1s1",
|
||||
newStyles:"newStyles-dlewR1s1",scrollContainer:"scrollContainer-dlewR1s1",listContainer:"listContainer-dlewR1s1",multiLineItemsContainer:"multiLineItemsContainer-dlewR1s1",withSpinner:"withSpinner-dlewR1s1",spinnerContainer:"spinnerContainer-dlewR1s1",largeSpinner:"largeSpinner-dlewR1s1"}},76717:e=>{e.exports={search:"search-ZXzPWcCf",upperCase:"upperCase-ZXzPWcCf",bubblesContainer:"bubblesContainer-ZXzPWcCf",mobile:"mobile-ZXzPWcCf",bubbles:"bubbles-ZXzPWcCf",withFilters:"withFilters-ZXzPWcCf",spinnerWrap:"spinnerWrap-ZXzPWcCf",emptyText:"emptyText-ZXzPWcCf",emptyIcon:"emptyIcon-ZXzPWcCf",noResultsDesktop:"noResultsDesktop-ZXzPWcCf",brokerButtonWrap:"brokerButtonWrap-ZXzPWcCf"}},92244:e=>{e.exports={flagWrap:"flagWrap-QKnxaZOG",icon:"icon-QKnxaZOG",caret:"caret-QKnxaZOG",title:"title-QKnxaZOG",button:"button-QKnxaZOG",withFlag:"withFlag-QKnxaZOG",buttonContent:"buttonContent-QKnxaZOG"}},63748:e=>{e.exports={dialog:"dialog-u2dP3kv1",tabletDialog:"tabletDialog-u2dP3kv1",desktopDialog:"desktopDialog-u2dP3kv1",backButton:"backButton-u2dP3kv1"}},24517:e=>{e.exports={childrenWrapper:"childrenWrapper-_RhDhmVQ",container:"container-_RhDhmVQ"}},95059:e=>{e.exports={highlighted:"highlighted-cwp8YRo6"}},93524:e=>{e.exports={linkItem:"linkItem-zMVwkifW"}},90854:e=>{e.exports={roundTabButton:"roundTabButton-JbssaNvk",disableFocusOutline:"disableFocusOutline-JbssaNvk",enableCursorPointer:"enableCursorPointer-JbssaNvk",large:"large-JbssaNvk",withStartIcon:"withStartIcon-JbssaNvk",iconOnly:"iconOnly-JbssaNvk",withEndIcon:"withEndIcon-JbssaNvk",startIconWrap:"startIconWrap-JbssaNvk",endIconWrap:"endIconWrap-JbssaNvk",small:"small-JbssaNvk",xsmall:"xsmall-JbssaNvk",primary:"primary-JbssaNvk",selected:"selected-JbssaNvk",disableActiveStateStyles:"disableActiveStateStyles-JbssaNvk",ghost:"ghost-JbssaNvk",fake:"fake-JbssaNvk",caret:"caret-JbssaNvk",visuallyHidden:"visuallyHidden-JbssaNvk"}},76912:e=>{e.exports={scrollWrap:"scrollWrap-vgCB17hK",overflowScroll:"overflowScroll-vgCB17hK",roundTabs:"roundTabs-vgCB17hK",center:"center-vgCB17hK",overflowWrap:"overflowWrap-vgCB17hK",start:"start-vgCB17hK"}},49128:e=>{e.exports={icon:"icon-WB2y0EnP",dropped:"dropped-WB2y0EnP"}},18429:(e,t,r)=>{"use strict";r.d(t,{SEPARATOR_PREFIX:()=>n,isSeparatorItem:()=>o});const n="###";function o(e){return e.startsWith(n)}},48199:(e,t,r)=>{"use strict";r.d(t,{BackButton:()=>v});var n,o=r(50959),a=r(64388),s=r(95694),l=r(49498),i=r(60176),c=r(35369),u=r(58478),d=r(73063),m=r(14127),p=r(18073),h=r(99243),g=r(42576);function f(e="large",t="1.2"){switch(e){case"large":return"1.2"===t?s:d;case"medium":return"1.2"===t?l:m;case"small":return"1.2"===t?i:p;case"xsmall":return"1.2"===t?c:h;case"xxsmall":return"1.2"===t?u:g;default:return l}}!function(e){e.Thin="1.2",e.Medium="1.5"}(n||(n={}));const v=o.forwardRef(((e,t)=>{const{"aria-label":r,flipIconOnRtl:n,...s}=e;return o.createElement(a.NavButton,{...s,"aria-label":r,ref:t,icon:f(e.size,e.iconStrokeWidth),flipIconOnRtl:n})}))},27011:(e,t,r)=>{"use strict";function n(e,t){
|
||||
return t||null==e||("string"==typeof e||Array.isArray(e))&&0===e.length}r.d(t,{isIconOnly:()=>n})},14543:(e,t,r)=>{"use strict";r.d(t,{LightButton:()=>n.LightButton});r(9038);var n=r(15893);r(50959),r(21593),r(66860),r(1538),r(88317);r(49406)},9038:(e,t,r)=>{"use strict";r.d(t,{useLightButtonClasses:()=>c});var n=r(50959),o=r(97754),a=r(17946),s=r(27011),l=r(86332);const i=n.createContext({isInButtonGroup:!1,isGroupPrimary:!1}),c=(e,t,r)=>{const c=(0,n.useContext)(a.CustomBehaviourContext),{className:u,isSelected:d,children:m,showCaret:p,forceDirection:h,iconOnly:g,color:f="gray",variant:v="primary",size:b="medium",enableActiveStateStyles:y=c.enableActiveStateStyles,typography:S,isLink:x=!1,textWrap:w,isPills:k,isActive:C,startSlot:E,endSlot:I}=t,R=e[`typography-${((e,t,r)=>{if(r){const e=r.replace(/^\D+/g,"");return t?`semibold${e}`:r}switch(e){case"xsmall":return t?"semibold14px":"regular14px";case"small":case"medium":return t?"semibold16px":"regular16px";default:return""}})(b,d||k,S||void 0)}`],L=(0,n.useContext)(l.ControlGroupContext),{isInButtonGroup:T,isGroupPrimary:B}=(0,n.useContext)(i);return o(u,e.lightButton,x&&e.link,C&&e.active,d&&e.selected,(0,s.isIconOnly)(m,g)&&e.noContent,!!E&&e.withStartSlot,(p||!!I)&&e.withEndSlot,r&&e.withGrouped,h&&e[h],e[B?"primary":v],e[B?"gray":f],e[b],R,!y&&e.disableActiveStateStyles,L.isGrouped&&e.grouped,w&&e.wrap,T&&e.disableActiveOnTouch,k&&e.pills)}},66860:(e,t,r)=>{"use strict";r.d(t,{LightButtonContent:()=>m});var n=r(50959),o=r(97754),a=r(34094),s=r(27011),l=r(9745),i=r(2948),c=r(1538),u=r.n(c);const d=e=>n.createElement(l.Icon,{className:o(u().caret,e&&u().activeCaret),icon:i});function m(e){const{showCaret:t,iconOnly:r,ellipsis:l=!0,textWrap:i,tooltipText:c,children:m,endSlot:p,startSlot:h,isActiveCaret:g}=e;[p,t].filter((e=>!!e));return n.createElement(n.Fragment,null,h&&n.createElement("span",{className:o(u().slot,u().startSlot)},h),!(0,s.isIconOnly)(m,r)&&n.createElement("span",{className:o(u().content,!i&&u().nowrap,"apply-overflow-tooltip","apply-overflow-tooltip--check-children-recursively","apply-overflow-tooltip--allow-text"),"data-overflow-tooltip-text":c??(0,a.getTextForTooltip)(m)},i||l?n.createElement(n.Fragment,null,n.createElement("span",{className:o(!i&&l&&u().ellipsisContainer,i&&u().textWrapContainer,i&&l&&u().textWrapWithEllipsis)},m),n.createElement("span",{className:u().visuallyHidden,"aria-hidden":!0},m)):n.createElement(n.Fragment,null,m,n.createElement("span",{className:u().visuallyHidden,"aria-hidden":!0},m))),p&&n.createElement("span",{className:o(u().slot,u().endSlot)},p),t&&d(g))}},15893:(e,t,r)=>{"use strict";r.d(t,{LightButton:()=>d});var n=r(50959),o=r(86332),a=r(9038),s=r(66860),l=r(1538),i=r.n(l),c=r(88317),u=r.n(c);function d(e){
|
||||
const{isGrouped:t}=n.useContext(o.ControlGroupContext),{reference:r,className:l,isSelected:c,children:d,iconOnly:m,ellipsis:p,showCaret:h,forceDirection:g,endSlot:f,startSlot:v,color:b,variant:y,size:S,enableActiveStateStyles:x,typography:w,textWrap:k=!1,maxLines:C,style:E={},isPills:I,isActive:R,tooltipText:L,role:T,...B}=e,N=k?C??2:1,M=N>0?{...E,"--ui-lib-light-button-content-max-lines":N}:E;return n.createElement("button",{...B,className:(0,a.useLightButtonClasses)({...u(),...i()},{className:l,isSelected:c,children:d,iconOnly:m,showCaret:h,forceDirection:g,endSlot:f,startSlot:v,color:b,variant:y,size:S,enableActiveStateStyles:x,typography:w,textWrap:k,isPills:I,isActive:R},t),ref:r,style:M,role:T},n.createElement(s.LightButtonContent,{showCaret:h,isActiveCaret:h&&(I||R||c),iconOnly:m,ellipsis:p,textWrap:k,tooltipText:L,endSlot:f,startSlot:v},d))}},125:(e,t,r)=>{"use strict";r.d(t,{useForceUpdate:()=>o});var n=r(50959);const o=()=>{const[,e]=(0,n.useReducer)((e=>e+1),0);return e}},34094:(e,t,r)=>{"use strict";r.d(t,{getTextForTooltip:()=>s});var n=r(50959);const o=e=>(0,n.isValidElement)(e)&&Boolean(e.props.children),a=e=>null==e||"boolean"==typeof e||"{}"===JSON.stringify(e)?"":e.toString()+" ",s=e=>Array.isArray(e)||(0,n.isValidElement)(e)?n.Children.toArray(e).reduce(((e,t)=>{let r="";return r=(0,n.isValidElement)(t)&&o(t)?s(t.props.children):(0,n.isValidElement)(t)&&!o(t)?"":a(t),e.concat(r)}),"").trim():a(e)},3685:(e,t,r)=>{"use strict";function n(){return window.configurationData?.exchanges?.map((e=>({...e,country:"",providerId:"",flag:""})))??[]}r.d(t,{getExchanges:()=>n})},36279:(e,t,r)=>{"use strict";var n;r.d(t,{LogoSize:()=>n,getLogoUrlResolver:()=>s}),function(e){e[e.Medium=0]="Medium",e[e.Large=1]="Large"}(n||(n={}));class o{getSymbolLogoUrl(e){return e}getCountryFlagUrl(){return""}getCryptoLogoUrl(e){return e}getProviderLogoUrl(e){return e}getSourceLogoUrl(e){return e}getBlockchainContractLogoUrl(e){return e}}let a;function s(){return a||(a=new o),a}},69654:(e,t,r)=>{"use strict";r.d(t,{DialogSearch:()=>d});var n=r(50959),o=r(97754),a=r.n(o),s=r(11542),l=r(9745),i=r(6347),c=r(54313),u=r(92335);function d(e){const{children:t,isMobile:o,renderInput:d,onCancel:p,containerClassName:h,inputContainerClassName:g,iconClassName:f,cancelTitle:v=s.t(null,void 0,r(4543)),...b}=e;return n.createElement("div",{className:a()(u.container,o&&u.mobile,h)},n.createElement("div",{className:a()(u.inputContainer,o&&u.mobile,g,p&&u.withCancel)},d||n.createElement(m,{isMobile:o,...b})),t,n.createElement(l.Icon,{className:a()(u.icon,o&&u.mobile,f),icon:o?c:i}),p&&(!o||""!==b.value)&&n.createElement("div",{className:a()(u.cancel,o&&u.mobile),onClick:p},v))}function m(e){const{className:t,reference:r,isMobile:o,value:s,onChange:l,onFocus:i,onBlur:c,onKeyDown:d,onSelect:m,placeholder:p,activeDescendant:h,...g}=e;return n.createElement("input",{...g,ref:r,type:"text",className:a()(t,u.input,o&&u.mobile),autoComplete:"off",role:"searchbox","data-role":"search",placeholder:p,value:s,onChange:l,onFocus:i,onBlur:c,onSelect:m,
|
||||
onKeyDown:d,"aria-activedescendant":h})}},96967:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchDialogContentItem:()=>D});var n=r(50959),o=r(97754),a=r.n(o),s=(r(11542),r(50151)),l=r(9745),i=r(56570),c=r(24637),u=r(97006),d=r(84524),m=r(24633),p=r(77975),h=r(45345),g=r(32563),f=r(91682),v=r(618),b=r(36279),y=r(59695),S=r(58492),x=r(39330),w=r(19938),k=r(43010),C=r(79566);function E(e){const{className:t,placeholderLetter:r,url1:o,url2:s,size:l="xxxsmall"}=e,i=(0,n.useRef)(null),c=(0,n.useRef)(null),u=(0,n.useRef)(null),d=(0,n.useRef)(null),m=(0,n.useRef)(null),p=(0,n.useRef)(null);return(0,k.useIsomorphicLayoutEffect)((()=>{const e=void 0===o?[]:void 0===s?[o]:[o,s],t=p.current=(r=e,Promise.all(r.map((e=>(0,w.getImage)(`symbol_logo_${e}`,e,R).then((e=>e.cloneNode()))))));var r;t.catch((()=>[])).then((e=>{if(t===p.current)switch(e.length){case 0:u.current?.classList.add(C.hidden),c.current?.classList.add(y.hiddenCircleLogoClass),i.current?.classList.remove(y.hiddenCircleLogoClass);break;case 1:I(c.current,e[0]),u.current?.classList.add(C.hidden),c.current?.classList.remove(y.hiddenCircleLogoClass),i.current?.classList.add(y.hiddenCircleLogoClass);break;case 2:I(d.current,e[0]),I(m.current,e[1]),u.current?.classList.remove(C.hidden),c.current?.classList.add(y.hiddenCircleLogoClass),i.current?.classList.add(y.hiddenCircleLogoClass)}}))}),[o,s]),n.createElement("span",{className:a()(t,C.container)},n.createElement("span",{ref:u,className:a()(C.pairContainer,C.hidden)},n.createElement("span",{className:(0,x.getBlockStyleClasses)(l)},n.createElement("span",{ref:m,className:a()(C.logo,(0,x.getLogoStyleClasses)(l))}),n.createElement("span",{ref:d,className:a()(C.logo,(0,x.getLogoStyleClasses)(l))}))),n.createElement("span",{ref:c,className:a()(C.logo,y.hiddenCircleLogoClass,(0,S.getStyleClasses)(l))}),n.createElement("span",{ref:i,className:a()(C.logo,(0,S.getStyleClasses)(l))},n.createElement(y.CircleLogo,{size:l,placeholderLetter:r})))}function I(e,t){e&&(e.innerHTML="",e.appendChild(t))}function R(e){e.crossOrigin="",e.decoding="async"}var L=r(94869);function T(e){const{logoId:t,baseCurrencyLogoId:r,currencyLogoId:o,placeholder:s,className:l,size:i="xsmall"}=e,c=(0,n.useMemo)((()=>{const e={logoid:t,"currency-logoid":o,"base-currency-logoid":r};return(0,v.removeUsdFromCryptoPairLogos)((0,v.resolveLogoUrls)(e,b.LogoSize.Medium))}),[t,o,r]);return n.createElement(E,{key:i,className:a()(L.logo,l),url1:c[0],url2:c[1],placeholderLetter:s,size:i})}var B=r(29562),N=r(69533),M=r(92069);function D(e){
|
||||
const{dangerousTitleHTML:t,title:r,dangerousDescriptionHTML:o,description:v,searchToken:b,exchangeName:y,marketType:S,onClick:x,isSelected:w,isEod:k=!1,isActive:C=!1,isOffset:E=!1,invalid:I=!1,isHighlighted:R=!1,hideExchange:L=!1,hideMarkedListFlag:D=!1,onExpandClick:O,isExpanded:A,hoverComponent:P,country:_,providerId:F,source:W,source2:Q,type:U,flag:V,itemRef:K,onMouseOut:z,onMouseOver:H,className:Z,actions:G,reference:q,fullSymbolName:j,logoId:$,currencyLogoId:Y,baseCurrencyLogoId:X,shortName:J,hideLogo:ee=!1,exchangeTooltip:te,hideMarketType:re,isPrimary:ne}=e,{isSmallWidth:oe,isMobile:ae}=(0,s.ensureNotNull)((0,n.useContext)(d.SymbolSearchItemsDialogContext)),se=Boolean(P),le=!I&&!L&&(ae||!se),ie=(0,p.useWatchedValueReadonly)({watchedValue:h.watchedTheme})===m.StdTheme.Dark?M.dark:M.light,ce=P,ue=i.enabled("show_symbol_logos"),de=i.enabled("show_exchange_logos"),me=ue||!1,pe=Q?.description??W,he=Q?.name??W;return n.createElement("div",{className:a()(M.itemRow,oe&&M.multiLine,R&&M.highlighted,R&&ie,w&&M.selected,C&&M.active,I&&M.invalid,!ae&&g.mobiletouch&&se&&M.hover,Z),onClick:function(e){if(!x||e.defaultPrevented)return;e.preventDefault(),x(e)},"data-role":e["data-role"]||"list-item","data-active":C,"data-type":S,"data-name":"symbol-search-dialog-content-item",onMouseOut:z,onMouseOver:H,ref:q},n.createElement("div",{ref:K,className:a()(M.itemInfoCell,M.cell,E&&M.offset)},n.createElement("div",{className:a()(M.actionHandleWrap,!me&&M.fixedWidth)},n.createElement(n.Fragment,null,!1,O&&n.createElement("div",{onClick:function(e){if(!O||e.defaultPrevented)return;e.preventDefault(),O(e)}},n.createElement(l.Icon,{className:a()(M.expandHandle,A&&M.expanded,w&&M.selected),icon:N})),me&&!E&&n.createElement("div",{className:a()(M.logo,Boolean(O)&&M.isExpandable)},n.createElement(T,{key:j,logoId:$,currencyLogoId:Y,baseCurrencyLogoId:X,placeholder:J?J[0]:void 0})))),n.createElement("div",{className:a()(M.description,me&&E&&M.offset)},r&&n.createElement("div",{className:a()(M.symbolTitle,C&&M.active,I&&M.invalid,!Boolean(o)&&M.noDescription,!g.mobiletouch&&"apply-overflow-tooltip"),"data-overflow-tooltip-text":r,"data-name":"list-item-title"},"string"==typeof r&&b?n.createElement(c.HighlightedText,{className:M.highlightedText,text:r,queryString:b,rules:(0,u.createRegExpList)(b)}):r,k&&n.createElement("span",{className:M.dataMode},"E")),!r&&t&&n.createElement("div",{className:a()(M.symbolTitle,C&&M.active,I&&M.invalid,!g.mobiletouch&&"apply-overflow-tooltip"),"data-name":"list-item-title","data-overflow-tooltip-text":(0,f.removeTags)(t)},n.createElement("span",{dangerouslySetInnerHTML:{__html:t}}),k&&n.createElement("span",{className:M.dataMode},"E")),oe&&ge())),!oe&&n.createElement("div",{className:a()(M.cell,M.descriptionCell,Boolean(ce)&&M.addition)},ge(),ce?n.createElement(ce,{...e,className:M.actions,onMouseOver:void 0,onMouseOut:void 0}):null),oe&&ce?n.createElement(ce,{...e,className:M.cell,onMouseOver:void 0,onMouseOut:void 0}):null,le&&n.createElement("div",{className:a()(M.exchangeCell,M.cell)
|
||||
},n.createElement("div",{className:a()(M.exchangeDescription)},!re&&n.createElement("div",{className:a()(M.marketType,C&&M.active)},S),n.createElement("div",{className:M.source},!1,"economic"===U&&pe&&he?n.createElement("div",{className:a()(M.exchangeName,C&&M.active,"apply-common-tooltip",M.narrow,re&&M.wide),title:pe},he):n.createElement("div",{className:a()(M.exchangeName,C&&M.active,te&&"apply-common-tooltip"),title:te},y))),de&&n.createElement("div",{className:M.flag},n.createElement(B.SymbolSearchFlag,{key:de?`${j}_exchange`:`${_}_${F}_${Q?.id}_${U}_${V}`,className:M.icon,country:_,providerId:F,sourceId:"economic"===U&&Q?Q.id:void 0}))),n.createElement("div",{className:a()(M.cell,Boolean(G)&&M.actionsCell)},G));function ge(){if(I)return null;const e=a()(M.symbolDescription,C&&M.active,!g.mobiletouch&&"apply-overflow-tooltip apply-overflow-tooltip--allow-text");return v?n.createElement("div",{className:e},b?n.createElement(c.HighlightedText,{className:M.highlightedText,text:v,queryString:b,rules:(0,u.createRegExpList)(b)}):v):o?n.createElement("div",{"data-overflow-tooltip-text":(0,f.removeTags)(o),className:e,dangerouslySetInnerHTML:{__html:o}}):null}}},29562:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchFlag:()=>f});var n=r(50959),o=r(97754),a=r.n(o),s=r(24633),l=r(36279);const i=r.p+"mock-dark.16b5f3a431f502b03ae3.svg",c=r.p+"mock-light.d201313017eb2c1b989f.svg";function u(e){return e===s.StdTheme.Dark?i:c}var d=r(77975),m=r(45345),p=r(50151);const h=l.LogoSize.Medium;var g=r(6963);function f(e){const{country:t,tooltip:r,providerId:o,sourceId:s,className:i}=e,c=(0,d.useWatchedValueReadonly)({watchedValue:m.watchedTheme}),[f,v]=(0,n.useState)(function({country:e,providerId:t,sourceId:r}){const n=(0,l.getLogoUrlResolver)();return o=>{const a=e=>n.getProviderLogoUrl(e,h),s=[{value:r,resolve:a},{value:e,resolve:e=>n.getCountryFlagUrl(e.toUpperCase(),h)},{value:t,resolve:a}].find((({value:e})=>void 0!==e&&e.length>0));return void 0!==s?s.resolve((0,p.ensureDefined)(s.value)):u(o)}}({country:t,providerId:o,sourceId:s})(c));return n.createElement("img",{className:a()(i,"apply-common-tooltip",g.icon),crossOrigin:"","data-tooltip":r,src:f,onError:function(){v(u(c))}})}},58442:(e,t,r)=>{"use strict";r.d(t,{QualifiedSources:()=>n,qualifyProName:()=>s});var n,o=r(50151),a=r(56570);r(81319);function s(e){return e}!function(e){function t(e){return e.pro_name}function r(e){{const t=a.enabled("pay_attention_to_ticker_not_symbol")?e.ticker:e.name;return(0,o.ensureDefined)(t)}}e.fromQuotesSnapshot=function(e){return"error"===e.status?e.symbolname:e.values.pro_name},e.fromQuotesResponse=function(e){const{values:r,symbolname:n,status:o}=e;return"error"===o&&n?n:t(r)},e.fromQuotes=t,e.fromSymbolSearchResult=function(e,t){{const{ticker:r,symbol:n}=t??e;return a.enabled("pay_attention_to_ticker_not_symbol")?(0,o.ensureDefined)(r??n):(0,o.ensureDefined)(n)}},e.fromSymbolInfo=r,e.fromSymbolMessage=function(e,t){return"symbol_resolved"===t.method?r(t.params[1]):e}}(n||(n={}))},20882:(e,t,r)=>{"use strict";r.d(t,{createSearchSources:()=>l,
|
||||
filterSearchSources:()=>a,isAllSearchSourcesSelected:()=>o,splitSearchSourcesByGroup:()=>s});const n=[];function o(e){return""===e.value()}function a(e,t){return e.filter((e=>e.includes(t)))}function s(e){const t=new Map;e.forEach((e=>{t.has(e.group())?t.get(e.group()).push(e):t.set(e.group(),[e])}));for(const e of t.values()){e[0].group()!==ExchangeGroup.NorthAmerica&&e.sort(((e,t)=>e.name().toLowerCase()>t.name().toLowerCase()?1:-1))}return new Map([...t.entries()].sort((([e],[t])=>n.indexOf(e)-n.indexOf(t))))}function l(e,t){return t.map((t=>new e(t)))}},70613:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchDialogBodyContext:()=>n});const n=r(50959).createContext(null)},84524:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchItemsDialogContext:()=>n});const n=r(50959).createContext(null)},73280:(e,t,r)=>{"use strict";r.d(t,{SymbolSearchItemsDialog:()=>et});var n,o,a,s=r(50959),l=r(97754),i=r.n(l),c=r(11542),u=r(56570),d=r(44254),m=r(81319);function p(e){const t=function(e){let t,r=0,n=0;for(let o=0;o<e.length;o++){const a=e[o];if("whitespace"!==a.type)switch(r){case 0:if("number"!==a.type||1!=+a.value)return[];r=1;break;case 1:if(1!==r||"divide"!==a.type)return[];r=2,t=o+1;break;case 2:if("openBrace"===a.type)r=3,n=1;else if((0,d.isBinaryOperator)(a.type))return[];break;case 3:"openBrace"===a.type?n++:"closeBrace"===a.type&&(n--,n<=0&&(r=2))}}return e.slice(t)}(e);return t.length?(0,d.factorOutBraces)(t):(0,d.factorOutBraces)((0,d.tokenize)("1/("+h(e)+")"))}function h(e){return e.reduce(((e,t)=>"symbol"===t.type&&d.symbolTokenEscapeRe.test(t.value)?e+`'${t.value}'`:e+t.value),"")}function g(e){const t=function(e){const t=(0,d.tokenize)(e),r=[];return t.forEach((e=>{if("symbol"!==e.type)return;const[t]=(0,d.parseToken)(e);t&&r.push(t)})),r}(e);if(1===t.length)return t[0]}function f(e,t,r){const n=e.value,[o,a]=v(e,r),s=(0,m.getSymbolFullName)(t),l=d.symbolTokenEscapeRe.test(s)?`'${s}'`:s;return[n.substring(0,a)+l+n.substring(a+o.length),a+l.length]}function v(e,t){const{value:r,selectionStart:n}=e,o=(0,d.tokenize)(t?r.toUpperCase():r),a=(0,d.getTokenAtPos)(o,n||0);return[a?.value||"",a?a.offset:r.length,o]}!function(e){e.Init="init",e.Var="var",e.Operator="operator"}(n||(n={})),function(e){e[e.Init=0]="Init",e[e.Div=1]="Div",e[e.Expression=2]="Expression",e[e.BracedExpression=3]="BracedExpression"}(o||(o={})),function(e){e.Stocks="stocks",e.Futures="futures",e.Funds="funds",e.Forex="forex",e.Crypto="bitcoin,crypto",e.Index="index",e.Bond="bond",e.Economic="economic",e.Options="options"}(a||(a={}));const b=["futures","forex","bond","economic","options"];var y=r(84877),S=r(24437),x=r(79418),w=r(9745),k=r(86240),C=r(86781),E=r(84524),I=r(69654),R=r(3343),L=r(19291);function T(e,t,r){return`source-item-${e}-${t}-${r}`}var B=r(20882),N=r(24517);function M(e){const{children:t,className:r}=e;return s.createElement("div",{className:i()(N.container,r)},s.createElement("div",{className:N.childrenWrapper},t))}var D=r(50151),O=r(78036),A=r(24637),P=r(97006),_=r(91540),F=r(6109);function W(e){
|
||||
const{searchSource:t,onClick:r,queryString:n,isFocused:o,id:a}=e,{symbolSearchContent:l,isAllSearchSourcesSelected:c,allSearchSourcesTitle:u,isMobile:d}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),p=l.currentSelectedSearchSource,h=(0,D.ensureNotNull)(p).value(),g=c(t),f=t.value()===h,v=(0,s.useMemo)((()=>(0,P.createRegExpList)(n)),[n]),b=t.description(),y=b&&!g,S=m.isSeparateSymbolSearchTabs&&g&&u?u:t.name(),x=i()(F.container,d?F.mobile:F.desktop,f&&F.selected,o&&F.focused,g&&F.allSelected,g&&F.libAllSelected,!g&&d&&F.bordered);return s.createElement("div",{className:i()(!d&&F.wrap,g&&F.libAllSelected),onClick:r,id:a},s.createElement("div",{className:x},s.createElement("div",{className:F.iconWrap},!!g&&s.createElement(w.Icon,{className:i()(F.icon,F.allSelectedIcon),icon:_})),s.createElement("div",{className:F.textBlock},s.createElement("div",{className:i()(F.title,!y&&!d&&F.titleWithoutDesc)},s.createElement(A.HighlightedText,{className:i()(f&&F.highlighted),queryString:n,text:S,rules:v})),y&&s.createElement("div",{className:i()(F.description,"apply-overflow-tooltip")},s.createElement(A.HighlightedText,{className:F.highlighted,queryString:n,rules:v,text:b})))))}var Q=r(77975),U=r(45345),V=r(24633),K=r(70613),z=r(66619),H=r(67562),Z=r(96137);const G={emptyTextClassName:Z.emptyText};function q(e){const{searchSources:t}=e,{setSelectedIndex:n,setSelectedSearchSource:o,setMode:a,isMobile:l,emptyState:u,autofocus:d}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),p=(0,Q.useWatchedValueReadonly)({watchedValue:U.watchedTheme})===V.StdTheme.Dark?z:H,h=(0,C.useMatchMedia)(k["media-phone-vertical"]),[g,f]=(0,s.useState)(""),v=(0,s.useMemo)((()=>[{group:null,sources:(0,m.createGroupColumns)((0,B.filterSearchSources)(t,g),h?1:2)}]),[t,g,h]),b=((0,s.useMemo)((()=>({})),[]),(0,s.useRef)(null)),y=(0,s.useRef)(null),{focusedItem:S,activeDescendant:x,handleKeyDown:N,resetFocusedItem:D}=function(e,t,r){const[n,o]=(0,s.useState)(null),[a,l]=(0,s.useState)("");function i(t){const r=e[t.groupIndex].sources[t.col].length-1;if(t.row===r){const e=d(t.groupIndex+1);if(null===e)return;return t.col>0&&!u({...t,groupIndex:e,row:0})?void o({groupIndex:e,col:0,row:0}):void o({...t,groupIndex:e,row:0})}o({...t,row:t.row+1})}function c(t){if(0===t.row){const r=d(t.groupIndex-1,-1);if(null===r)return;const n=e[r].sources[t.col]?.length??0;return 0===n?void o({groupIndex:r,col:0,row:0}):void o({...t,groupIndex:r,row:n-1})}o({...t,row:t.row-1})}function u(t){return Boolean(e[t.groupIndex]?.sources[t.col]?.[t.row])}function d(t=0,r=1){const n=e.length;let o=(t+n)%n;for(;!u({groupIndex:o,col:0,row:0});)if(o=(o+r+n)%n,o===t)return null;return o}return(0,s.useEffect)((()=>{if(!r.current)return;if(!n)return void l("");const e=T(n.groupIndex,n.col,n.row),t=r.current.querySelector(`#${e}`);t?.scrollIntoView({block:"nearest"}),l(e)}),[n]),(0,s.useEffect)((()=>{o(null)}),[t]),{focusedItem:n,activeDescendant:a,handleKeyDown:function(a){if(!r.current)return;const s=(0,R.hashFromEvent)(a);if(32!==s&&13!==s)switch((0,
|
||||
L.mapKeyCodeToDirection)(s)){case"blockNext":if(a.preventDefault(),!n){const e=d();if(null===e)break;o({groupIndex:e,col:0,row:0});break}i(n);break;case"blockPrev":if(a.preventDefault(),!n)break;c(n);break;case"inlineNext":{if(!n||t)break;a.preventDefault();const r=e[n.groupIndex].sources.length;if(n.col===r-1||!u({...n,col:n.col+1})){i({...n,col:0});break}o({...n,col:n.col+1});break}case"inlinePrev":{if(!n||t)break;a.preventDefault();const r=e[n.groupIndex].sources.length;if(0===n.col){if(0!==n.row){c({...n,col:r-1});break}const t=d(n.groupIndex-1,-1);if(null===t)break;const a=e[t].sources.length,s=e[t].sources[0].length;if(!u({groupIndex:t,col:a-1,row:s-1})){c(n);break}o({groupIndex:t,col:a-1,row:s-1});break}o({...n,col:n.col-1});break}}else{if(!n)return;a.preventDefault();const e=r.current.querySelector(`#${T(n.groupIndex,n.col,n.row)}`);e instanceof HTMLElement&&e.click()}},resetFocusedItem:()=>o(null)}}(v,h,y);(0,s.useLayoutEffect)((()=>{d&&b?.current?.focus()}),[]);const A=u?s.createElement(u,null):s.createElement(M,{className:Z.noResultsDesktop},s.createElement(w.Icon,{icon:p,className:Z.emptyIcon}),s.createElement("div",{className:Z.emptyText},c.t(null,void 0,r(53182)))),P=!(v.length&&v.every((e=>0===e.sources.length)));return s.createElement(K.SymbolSearchDialogBodyContext.Provider,{value:G},s.createElement(I.DialogSearch,{placeholder:c.t(null,void 0,r(8573)),onChange:function(e){D(),f(e.target.value),y&&y.current&&(y.current.scrollTop=0)},reference:b,onKeyDown:N,onBlur:D,"aria-activedescendant":x}),P?s.createElement("div",{ref:y,className:i()(Z.contentList,!l&&Z.contentListDesktop),onTouchStart:function(){b.current?.blur()}},v.map(((e,t)=>{const{group:r,sources:n}=e;return 0===n.length?s.createElement(s.Fragment,{key:r}):s.createElement(s.Fragment,{key:r},!1,s.createElement("div",{className:i()(Z.searchSourceItemsContainer,!l&&Z.searchSourceItemsContainerDesktop,h&&Z.oneColumn)},n.map(((e,r)=>s.createElement("div",{key:`${t}-${r}`,className:Z.column},e.map(((e,n)=>s.createElement(W,{id:T(t,r,n),isFocused:!!S&&(S.groupIndex===t&&S.col===r&&S.row===n),key:e.value(),searchSource:e,queryString:g,onClick:_.bind(null,e)}))))))))}))):A);function _(e){o(e),a("symbolSearch"),n(-1)}}var j,$,Y,X,J=r(32227),ee=r(14051);r(84906);function te(e){return e.hasOwnProperty("exchange")}async function re(e){{const t=await async function(e){return new Promise((t=>{window.ChartApiInstance.searchSymbols(e.text||"",e.exchange||"",e.type||"",(e=>{t(e)}),e.searchInitiationPoint??"symbolSearch")}))}(e);return{symbols:t,symbols_remaining:0}}}!function(e){e.SourceId="source_id",e.EconomicCategory="economic_category",e.SearchType="search_type",e.Sector="sector",e.Product="product",e.Centralization="centralization",e.OnlyHasOptions="only_has_options"}(j||(j={})),function(e){e.SymbolSearch="symbolSearch",e.Watchlist="watchlist",e.Compare="compare",e.IndicatorInputs="indicatorInputs"}($||($={})),function(e){e[e.Prod=0]="Prod",e[e.Local=1]="Local"}(Y||(Y={})),function(e){e[e.Paginated=0]="Paginated",e[e.NoLimit=1]="NoLimit"}(X||(X={}))
|
||||
;new Map([].map((({value:e,search_type:t})=>[e,t])));var ne=r(78136),oe=r(51768),ae=r(68335),se=r(81348),le=r(486),ie=r(81574),ce=r(35119),ue=r(32617),de=r(69135),me=r(63861),pe=r(10070);function he(e){const{state:t,update:r}=e,{searchRef:n,forceUpdate:o,upperCaseEnabled:a}=(0,D.ensureNotNull)((0,s.useContext)(E.SymbolSearchItemsDialogContext)),l=(0,d.tokenize)(n.current?.value),i=function(e){const t={braceBalance:0,currentState:"var",warnings:[],errors:[]};if(!u.enabled("show_spread_operators"))return t;let r="init";const n=[];for(let o=0;o<e.length;o++){const a=e[o];if("whitespace"!==a.type){if("incompleteSymbol"===a.type||"incompleteNumber"===a.type){const r=o!==e.length-1,n={status:r?"error":"incomplete",reason:"incomplete_token",offset:a.offset,token:a};if(r?t.errors.push(n):t.warnings.push(n),r)continue}switch(a.type){case"symbol":case"number":if("var"===r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}r="var";break;case"plus":case"minus":case"multiply":case"divide":case"power":if("var"!==r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}r="operator";break;case"openBrace":if("var"===r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}n.push(a),r="init";break;case"closeBrace":if("var"!==r){t.errors.push({status:"error",reason:"unexpected_token",offset:a.offset,token:a});continue}n.pop()||t.errors.push({status:"error",reason:"unbalanced_brace",offset:a.offset,token:a}),r="var";break;case"unparsed":t.errors.push({status:"error",reason:"unparsed_entity",offset:a.offset,token:a})}}}for(t.braceBalance=n.length,"var"!==r&&t.warnings.push({status:"incomplete",token:e[e.length-1]});n.length;){const e=n.pop();e&&t.warnings.push({status:"incomplete",reason:"unbalanced_brace",offset:e.offset,token:e})}return t.currentState=r,t}(l);let c=[{icon:le,insert:"/",type:"binaryOp",name:"division"},{icon:ie,insert:"-",type:"binaryOp",name:"subtraction"},{icon:ce,insert:"+",type:"binaryOp",name:"addition"},{icon:ue,insert:"*",type:"binaryOp",name:"multiplication"}];return u.enabled("hide_exponentiation_spread_operator")||(c=c.concat([{icon:de,insert:"^",type:"binaryOp",name:"exponentiation"}])),u.enabled("hide_reciprocal_spread_operator")||(c=c.concat([{icon:me,type:"complete",name:"1/x",callback:()=>{!n.current||i.errors.length||i.warnings.length||(n.current.value=h(p(l)),o())}}])),s.createElement("div",{className:pe.actions},c.map((e=>s.createElement(se.ToolWidgetButton,{className:pe.actionButton,icon:e.icon,key:e.name,isDisabled:ge(e,i),onClick:()=>function(e){if(!ge(e,i)){if(e.insert&&n.current){const s=n.current.value+e.insert;n.current.value=s,n.current.setSelectionRange(s.length,s.length);const[l,,i]=v(n.current,a);t.current&&(t.current.selectedIndexValue=-1,t.current.searchSpreadsValue=(0,d.isSpread)(i),t.current.searchTokenValue=l),o(),r()}e.callback&&e.callback(),n.current?.focus(),(0,oe.trackEvent)("GUI","SS",e.name)}}(e)}))))}function ge(e,t){let r=!1;if(!t.errors.length)switch(e.type){
|
||||
case"binaryOp":r="var"===t.currentState;break;case"openBrace":r="var"!==t.currentState;break;case"closeBrace":r="var"===t.currentState&&t.braceBalance>0;break;case"complete":r=!t.errors.length&&!t.warnings.length}return!r}var fe=r(63932),ve=r(84952),be=r(29006),ye=r(14543),Se=r(10381),xe=r(52019),we=r(92244);const ke=(0,m.getDefaultSearchSource)();function Ce(e){const{mode:t,setMode:n,searchRef:o,cachedInputValue:a,setSelectedIndex:l,setSelectedSearchSource:u,isAllSearchSourcesSelected:d,allSearchSourcesTitle:p,upperCaseEnabled:h,symbolSearchContent:g}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),f=g.currentSelectedSearchSource,v=(0,D.ensureNotNull)(f),b="symbolSearch"===t,y=d(v),S=m.isSeparateSymbolSearchTabs&&y&&p?p:v.name(),x=(0,s.useCallback)((()=>{if(m.isSeparateSymbolSearchTabs&&!y&&ke)return u(ke),l(-1),void o.current?.focus();o.current&&(a.current=h?o.current.value.toUpperCase():o.current.value),n("exchange")}),[y,o,h,n,u]);return m.isSeparateSymbolSearchTabs?b?s.createElement(ye.LightButton,{onClick:x,isPills:!y,size:"xsmall",variant:y?"ghost":"quiet-primary",showCaret:y,endSlot:y?void 0:s.createElement(w.Icon,{icon:xe}),enableActiveStateStyles:!1,className:i()(we.button,!y&&we.withFlag),tabIndex:-1,"data-name":"sources-button"},s.createElement("div",{className:we.buttonContent},null,s.createElement("span",null,S))):null:b?s.createElement("div",{className:i()(we.flagWrap,"apply-common-tooltip",!y&&we.withFlag),title:c.t(null,void 0,r(57640)),onClick:x,"data-name":"sources-button"},y&&s.createElement(w.Icon,{className:we.icon,icon:_}),null,s.createElement("div",{className:i()(we.title)},S),s.createElement(Se.ToolWidgetCaret,{className:we.caret,dropped:!1})):null}var Ee=r(6591);function Ie(e){const{brokerButton:t=null}=e,{isSmallWidth:n,selectedFilterValues:o,setSelectedFilterValues:a,setSelectedIndex:l,isMobile:u,searchRef:d,symbolSearchContent:p}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),h=p.tabSelectFilters;return m.isSeparateSymbolSearchTabs?s.createElement("div",{className:i()(Ee.wrap,Ee.small,Ee.newStyles,u&&Ee.mobile)},t&&s.createElement("div",{className:Ee.brokerWrap},t),p.canChangeExchange&&s.createElement("div",{className:Ee.filterItem},s.createElement(Ce,null)),h&&h.map((e=>{const{id:t,options:r,label:n}=e,i=r.find((e=>e.value===FILTER_DEFAULT_VALUE));if(!i)throw new Error("There must be default filter value in filter definition");const c=r.find((e=>e.value===o[p.currentSymbolType]?.[t]))||i;return s.createElement("div",{key:t,className:Ee.filterItem},s.createElement(SymbolSearchSelectFilter,{selectedOption:c,defaultOption:i,options:r,onSelect:e=>{a(p.currentSymbolType,{[t]:e.value}),trackEvent("New SS",p.currentSymbolType,null===e.value?e.analyticsLabel:e.value),l(-1),d.current?.focus()},label:n,isMobile:u,"data-name":t}))}))):s.createElement("div",{className:i()(Ee.wrap,n&&Ee.small)},s.createElement("div",{className:Ee.item},s.createElement("div",{className:Ee.text},n?c.t(null,void 0,r(74007)):c.t(null,void 0,r(95481)))),s.createElement("div",{className:Ee.item
|
||||
},!n&&s.createElement("div",{className:Ee.text},c.t(null,void 0,r(78734))),p.canChangeExchange&&s.createElement("div",{className:Ee.exchange},s.createElement(Ce,null))))}var Re=r(63273),Le=r(44458);function Te(e){const{onTouchMove:t,listRef:r,className:n,listWrapRef:o,virtualListKey:a,items:l,getItemSize:c,hideFeed:u,canLoadMore:d,onLoadMoreSymbols:p}=e,{mode:h,isSmallWidth:g,handleListWidth:f}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),[v,b]=(0,s.useState)(null),y=(0,be.useResizeObserver)((function([e]){b(e.contentRect.height),f(e.contentRect.width)})),S=(0,s.useCallback)((e=>{const{index:t,style:r}=e;return s.createElement("div",{style:r},l[t])}),[l]),x=(0,s.useCallback)((e=>(0,D.ensure)(l[e].key)),[l]),w="watchlist"===h&&null!==v;return s.createElement("div",{className:i()(Le.wrap,w&&Le.watchlist,u&&Le.noFeed,u&&m.isSeparateSymbolSearchTabs&&Le.newStyles,n),onTouchMove:t,ref:y},s.createElement("div",{ref:o,className:i()(Le.scrollContainer,u&&Le.noFeed)},w?s.createElement(ve.VariableSizeList,{key:a,ref:r,className:Le.listContainer,width:"100%",height:(0,D.ensureNotNull)(v),itemCount:l.length,itemSize:c,children:S,itemKey:x,overscanCount:20,direction:(0,Re.isRtl)()?"rtl":"ltr"}):s.createElement(s.Fragment,null,s.createElement("div",{className:i()(Le.listContainer,g&&Le.multiLineItemsContainer)},!m.isSeparateSymbolSearchTabs&&s.createElement(Ie,null),...l,!1))))}var Be=r(96967),Ne=r(47308),Me=r(76717);const De=u.enabled("hide_image_invalid_symbol");function Oe(e){const{otherSymbolsCount:t,onChangeSymbolTypeFilter:r,onResetFilters:n,onListTouchMove:o,brokerTitle:a,brokerLogoInfo:i,isBrokerActive:c,onBrokerToggle:u,listRef:d,listWrapRef:p,onLoadMoreSymbols:h,canLoadMore:g}=e,{mode:f,isMobile:v,selectedSymbolType:b,symbolTypes:y,feedItems:S,contentItem:x,emptyState:w=Ae,symbolSearchContent:k,symbolSearchState:C}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),I=a?s.createElement(BrokerButton,{brokerTitle:a,isActive:c,onToggle:u,onKeyDown:e=>{const t=(0,R.hashFromEvent)(e);t!==9+R.Modifiers.Shift&&9!==t&&e.stopPropagation()},logoInfo:i}):null,L=y.map((e=>({id:e.value,children:e.name}))),T="symbolSearch"===f&&["good","loadingWithPaginated"].includes(C),B=x??Be.SymbolSearchDialogContentItem,N=(0,s.useMemo)((()=>S.map((e=>s.createElement(B,{...e,searchToken:k.token})))),[S]);return s.createElement(s.Fragment,null,"symbolSearch"===f&&s.createElement(s.Fragment,null,s.createElement("div",{className:l(Me.bubblesContainer,!v&&I&&Me.withButton,v&&Me.mobile)},y.length>0&&s.createElement(Ne.RoundButtonTabs,{id:"symbol-search-tabs",isActive:e=>e.id===b,onActivate:r,overflowBehaviour:v?"scroll":"wrap",className:l(Me.bubbles,v&&Me.mobile,m.isSeparateSymbolSearchTabs&&(k.withFilters||I)&&!v&&Me.withFilters),items:L},v?null:s.createElement("div",null,I)),!m.isSeparateSymbolSearchTabs&&v&&y.length>0&&a&&s.createElement("div",{className:Me.brokerButtonWrap},I)),m.isSeparateSymbolSearchTabs&&s.createElement(Ie,{brokerButton:v?I:void 0})),s.createElement(Te,{listRef:d,listWrapRef:p,onTouchMove:o,items:N,
|
||||
getItemSize:()=>_e,onLoadMoreSymbols:h,canLoadMore:g,hideFeed:!T}),"loading"===C&&s.createElement("div",{className:Me.spinnerWrap},s.createElement(fe.Spinner,null)),"symbolSearch"===f&&s.createElement(s.Fragment,null,!1,"empty"===C&&s.createElement(w,null)))}function Ae(e){const t=(0,Q.useWatchedValueReadonly)({watchedValue:U.watchedTheme})===V.StdTheme.Dark?z:H;return s.createElement(M,{className:Me.noResultsDesktop},!De&&s.createElement(w.Icon,{icon:t,className:Me.emptyIcon}),s.createElement("div",{className:Me.emptyText},c.t(null,void 0,r(76822))))}const Pe=(0,m.getDefaultSearchSource)(),_e=52;function Fe(e){const{mode:t,setMode:n,setSelectedIndex:o,isMobile:a,selectedSearchSource:l,setSelectedSearchSource:p,isAllSearchSourcesSelected:h,selectedSymbolType:b,setSelectedSymbolType:y,symbolSearchContent:S,setSymbolSearchContent:x,searchRef:w,setSearchSpreads:k,showSpreadActions:C,selectedItem:R,forceUpdate:L,placeholder:T,initialScreen:B,footer:N,searchInput:M,upperCaseEnabled:D,externalInput:A,handleKeyDown:P,customSearchSymbols:_,filterDefinitions:F,filterQueryParams:W,searchSources:Q,symbolSearchState:U,setSymbolSearchState:V,onEmptyResults:z,searchInitiationPoint:H}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext),Z=_??re,G=(0,s.useRef)(t);G.current=t;const q=(0,s.useRef)(new AbortController),[j,$]=(0,s.useState)(0),Y=(0,s.useRef)(0),[X,se]=(0,s.useState)(S.token),le=(0,s.useRef)(null),ie=(0,s.useRef)(null),ce=(0,s.useRef)({selectedIndexValue:-1,searchTokenValue:"",searchSpreadsValue:!0}),ue=(0,s.useRef)(null),de=(0,s.useRef)(null),me=(0,s.useRef)(null),{broker:pe=null,brokerId:ge,brokerTitle:fe,brokerLogoInfo:ve,isBrokerChecked:be=!1,setIsBrokerChecked:ye=()=>{},unhideSymbolSearchGroups:Se=""}={brokerId:void 0,brokerTitle:void 0,brokerLogoInfo:void 0};(0,s.useEffect)((()=>()=>{q.current.abort(),Fe(),We()}),[]),(0,s.useEffect)((()=>{w?.current&&se(w.current.value)}),[]),(0,s.useEffect)((()=>{const e=w.current;if(e)return e.addEventListener("input",Re),e.addEventListener("focus",Ae),e.addEventListener("select",Ie),e.addEventListener("click",Ie),e.addEventListener("keyup",_e),A&&P&&e.addEventListener("keydown",P),()=>{e&&(e.removeEventListener("input",Re),e.removeEventListener("focus",Ae),e.removeEventListener("select",Ie),e.removeEventListener("click",Ie),e.removeEventListener("keyup",_e),A&&P&&e.removeEventListener("keydown",P))}}),[P]),(0,s.useEffect)((()=>{Boolean(B)&&""===X.trim()?x((e=>{const t=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(b)),r=F?.[b];return{...e,tabSelectFilters:r,currentSymbolType:b,canChangeExchange:t,withFilters:Boolean(t||r?.length),token:X,currentTabAvailableSearchSources:Q,currentSelectedSearchSource:l}})):(x((e=>({...e,symbolStartIndex:0}))),Te(X,b,l).then((()=>{le.current&&(le.current.scrollTop=0)})))}),[X,b,l,be,B,W]),(0,s.useEffect)((()=>{if(!R||!w.current)return;if(!u.enabled("show_spread_operators"))return w.current.value=R.symbol,void L();const e=te(R)?R.exchange:R.parent.exchange;let t;t="contracts"in R&&R.contracts?.length?R.contracts[0]:R;const r={
|
||||
name:t.symbol,exchange:e,prefix:t.prefix,fullName:t.full_name},[n,o]=f(w.current,r,D);w.current.value=n,w.current.setSelectionRange(o,o),L()}),[R]);const xe=B??"div",we=Boolean(B)&&"symbolSearch"!==t,ke=M??I.DialogSearch,Ce=(0,s.useMemo)((()=>({listRef:ie,resetRecommends:De,updateRecommends:Te,searchToken:X,emptyTextClassName:Me.emptyText,isBrokerChecked:be,symbolSearchState:U,currentMode:G})),[ie,X,be,U,G,W]);return s.createElement(K.SymbolSearchDialogBodyContext.Provider,{value:Ce},!(A&&"symbolSearch"===t)&&s.createElement(ke,{reference:w,className:i()(Me.search,D&&Me.upperCase),placeholder:T||c.t(null,void 0,r(8573))},C&&s.createElement(he,{state:ce,update:Le})),we?s.createElement(xe,null):s.createElement(Oe,{otherSymbolsCount:j,onListTouchMove:function(){w.current?.blur()},onChangeSymbolTypeFilter:function(e){const{id:t}=e;y(t),o(-1)},onResetFilters:function(){m.isSeparateSymbolSearchTabs?"resetFilter"===U?y((0,m.getAllSymbolTypesValue)()):Pe&&p(Pe):(y((0,m.getAllSymbolTypesValue)()),Pe&&p(Pe));ye(!1),a||w.current?.focus()},brokerTitle:fe,brokerLogoInfo:ve,isBrokerActive:be,onBrokerToggle:ye,listRef:ie,listWrapRef:le,onLoadMoreSymbols:void 0,canLoadMore:void 0}),N);function Ee(){if(!w.current)return;const[e,t,r]=v(w.current,D);Y.current=t,ce.current={selectedIndexValue:-1,searchSpreadsValue:(0,d.isSpread)(r),searchTokenValue:e},ue.current||(ue.current=setTimeout(Le,0))}function Ie(){if(!w.current)return;const[,e]=v(w.current,D);e!==Y.current&&Ee()}function Re(){u.enabled("show_spread_operators")?Ee():w.current&&(ce.current={selectedIndexValue:-1,searchSpreadsValue:!1,searchTokenValue:w.current.value},ue.current||(ue.current=setTimeout(Le,0)))}function Le(){const{selectedIndexValue:e,searchTokenValue:t,searchSpreadsValue:r}=ce.current;ue.current=null,(0,J.unstable_batchedUpdates)((()=>{k(r),o(e),se(D?t.toUpperCase():t)}))}async function Te(e,t,r,n){try{"noop"===U?V("loading"):n?V("loadingWithPaginated"):(Fe(),We(),de.current=setTimeout((()=>{const r=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(t)),n=F?.[t];x({token:e,canChangeExchange:r,tabSelectFilters:n,withFilters:Boolean(r||n?.length),currentSymbolType:t,currentSelectedSearchSource:l,currentTabAvailableSearchSources:Q,renderSymbolSearchList:[],symbolsRemaining:0,symbolStartIndex:0}),V("loading")}),500)),Qe();(0,m.getAllSymbolTypesValue)();const o=!1;let a;if(be&&pe){a=(await(0,ee.respectAbort)(q.current.signal,pe.accountMetainfo())).prefix}const s=u.enabled("show_spread_operators")?g(e)??a??r?.getRequestExchangeValue():l?.getRequestExchangeValue(),i=g(e)?void 0:(r||l)?.getRequestCountryValue(),[c,d]=await Promise.all([Ne(q.current.signal,e,t,r,s,i,n),o&&!n?getRecent():Promise.resolve([])]),p=d.filter((e=>s?e.exchange?.toLowerCase()===s.toLowerCase():!i||e.country?.toLowerCase()===i.toLowerCase())),h=new Set(p.map((e=>`${e.exchange}_${e.symbol}`))),f=c.symbols.filter((e=>!h.has(`${e.exchange}_${e.symbol}`)));let v=function(e,t=window.ChartApiInstance.symbolsGrouping()){const r={},n=[];for(let o=0;o<e.length;++o){const a=e[o]
|
||||
;if(a.prefix||Array.isArray(a.contracts))return e;const s=t[a.type];if(void 0===s){n.push(a);continue}const l=s.exec(a.symbol);if(l){const e=l[1];let t;r.hasOwnProperty(e)?t=r[e]:(t=n.length,r[e]=t,n.push({type:a.type,symbol:e,exchange:a.exchange,description:a.description,full_name:a.exchange+":"+e,contracts:[]})),n[t].contracts?.push(a)}else n.push(a)}return n}([...p,...f]);if(n&&(v=[...S.renderSymbolSearchList,...v]),!v.length)return x((r=>{const n=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(t)),o=F?.[t];return{...r,canChangeExchange:n,tabSelectFilters:o,token:e,symbolsRemaining:0,withFilters:Boolean(n||o?.length),currentSymbolType:t,currentSelectedSearchSource:l,currentTabAvailableSearchSources:Q}})),Fe(),V("empty"),void Be();Fe(),x((r=>{const n=Boolean(l&&Q.length>1&&!(0,m.exchangeSelectDisabled)(t)),o=F?.[t];return{...r,canChangeExchange:n,tabSelectFilters:o,renderSymbolSearchList:v,token:e,symbolsRemaining:c.symbols_remaining,withFilters:Boolean(n||o?.length),currentSymbolType:t,currentSelectedSearchSource:l,currentTabAvailableSearchSources:Q,symbolStartIndex:r.symbolStartIndex+c.symbols.length}})),V("good")}catch(e){(0,ee.skipAbortError)(e)}}function Be(){z&&(me.current=setTimeout((()=>z()),1e3))}async function Ne(e,t,r,n,o,a,s){const l={serverHighlight:!1,text:u.enabled("show_spread_operators")?(0,d.shortName)(t):w.current?.value,exchange:o,country:a,type:r,lang:window.language||"",sortByCountry:void 0,brokerId:ge,onlyTradable:Boolean(ge)&&be,unhideSymbolSearchGroups:Se,signal:e,start:s,filterQueryParams:W,searchInitiationPoint:H},i=(0,ne.getSearchRequestDelay)();return void 0!==i&&await(0,ee.delay)(e,i),Z(l)}function De(){Qe(),V("empty"),se(""),k(!1),x((e=>({...e,symbolStartIndex:0}))),Fe()}function Ae(){"watchlist"===G.current&&(n("symbolSearch"),(0,oe.trackEvent)("Watchlist","Mobile SS","Go to SS page"))}function _e(e){switch((0,ae.hashFromEvent)(e)){case 37:case 39:Ie()}}function Fe(){de.current&&clearTimeout(de.current)}function We(){me.current&&clearTimeout(me.current)}function Qe(){q.current.abort(),q.current=new AbortController}}var We=r(48199),Qe=r(74395),Ue=r(58442),Ve=r(56840);function Ke(e){const[t,r]=(0,s.useState)((()=>{const{defaultSearchSource:t,searchSources:r}=e,n=Ve.getValue("symboledit.exchangefilter","");return r.find((e=>e.value()===n))||t}));return[t,(0,s.useCallback)((e=>{var t;r(e),t=e,Ve.setValue("symboledit.exchangefilter",t.value())}),[])]}function ze(e){const[t,r]=(0,s.useState)((()=>{if(1===e.types.length)return e.types[0].value;const t=Ve.getValue("symboledit.filter",(0,m.getAllSymbolTypesValue)());return e.types.find((e=>e.value===t))?t:(0,m.getAllSymbolTypesValue)()}));return[t,(0,s.useCallback)((e=>{var t;r(e),t=e,Ve.setValue("symboledit.filter",t)}),[])]}var He=r(36947),Ze=r(82708),Ge=r(88145),qe=r(76460),je=r(63748);const $e=!1,Ye=(0,m.getAvailableSearchSources)(),Xe=(0,m.getDefaultSearchSource)(),Je=u.enabled("uppercase_instrument_names");function et(e){
|
||||
const{onClose:t,symbolTypeFilter:n,initialMode:o,defaultValue:a="",showSpreadActions:l,hideMarkedListFlag:i,selectSearchOnInit:d=!0,onSearchComplete:p,dialogTitle:h=c.t(null,void 0,r(51165)),placeholder:g,fullscreen:v,initialScreen:x,wrapper:w,dialog:k,contentItem:C,footer:I,searchInput:R,emptyState:T,autofocus:N,dialogWidth:M,onKeyDown:D,searchSourcesScreen:O,customSearchSymbols:A,isDisableFiltering:P,disableRecents:_,shouldReturnFocus:F,onSymbolFiltersParamsChange:W,onEmptyResults:Q,enableOptionsChain:U,searchInitiationPoint:V="symbolSearch"}=e,K=(0,s.useMemo)((()=>{if(P)return[];const t=e.symbolTypes??(0,m.getAvailableSymbolTypes)();return n?n(t):t}),[]),z=void 0!==e.input,H=P?[]:Ye,[Z,G]=(0,s.useState)((()=>st(a,U)?"options":o)),[j,$]=(0,s.useState)((()=>st(a,U))),[Y,X]=(0,s.useState)((()=>null)),J=(0,s.useRef)(function(e,t){const r=st(e,t);return(0,m.isOptionDefaultValue)(e)?r??e.value:e}(a,U)),[ee,ne]=Ke({searchSources:H,defaultSearchSource:Xe}),[oe,se]=[],[le,ie]=ze({types:K}),[ce,ue]=[{},()=>{}],[de,me]=(0,s.useState)(!1),[pe,he]=(0,s.useState)(-1),[ge,fe]=(0,s.useState)("noop"),ve=m.isSeparateSymbolSearchTabs?TAB_SELECT_FILTER_MAP:void 0,be=m.isSeparateSymbolSearchTabs?oe?.[le]||Xe:ee,ye=(0,s.useMemo)((()=>{if(!m.isSeparateSymbolSearchTabs)return H;return H.filter((e=>{const t=TAB_SOURCE_FILTER_MAP[le];if(!t)return!1;if(!le)return!0;const r=e.group();return r===ExchangeGroup.AllExchanges||r&&t.value.includes(r)}))}),[H,le]),[Se,xe]=(0,s.useState)((()=>{const e=Boolean(ee&&Ye.length>1&&!(0,m.exchangeSelectDisabled)(le)),t=ve?.[le];return{canChangeExchange:e,tabSelectFilters:t,withFilters:Boolean(e||t?.length),renderSymbolSearchList:[],token:J.current,symbolsRemaining:0,currentSymbolType:le,currentSelectedSearchSource:be,currentTabAvailableSearchSources:ye,symbolStartIndex:0}})),we=(0,s.useCallback)((e=>{trackEvent("New SS",le,"Change sources"),se?.(le,e),xe((t=>({...t,currentSelectedSearchSource:e})))}),[le,xe]),ke=(0,s.useRef)(e.input??null),[Ce,Ee]=(0,s.useState)(!1),Ie=(0,He.useForceUpdate)(),[Le,Te]=(0,s.useState)(new Set),{broker:Be=null,brokerId:Ne,unhideSymbolSearchGroups:Me="",displayBrokerSymbol:De=!1}={brokerId:void 0};(0,s.useLayoutEffect)((()=>{!ke?.current||!z&&Boolean(ke.current?.value)||(z||"compare"===Z||(ke.current.value=J.current),!N||z&&"symbolSearch"!==Z||ke.current.focus())}),[Z]),(0,s.useEffect)((()=>{ke?.current&&d&&N&&ke.current.select()}),[]);const Oe=(0,s.useMemo)((()=>Se.renderSymbolSearchList.reduce(((e,t)=>{const r=nt(t),n=Le.has(r);return e.push(t),n&&t.contracts&&e.push(...t.contracts.map((e=>({...e,parent:t})))),e}),[])),[Se.renderSymbolSearchList,Le]),Ae=(0,s.useRef)(null);(0,s.useEffect)((()=>{-1!==pe&&Ae.current?.scrollIntoView({block:"nearest"})}),[pe,Ae]);const Pe=b.includes(le),_e=(0,s.useMemo)((()=>Oe.map(((e,t)=>{if(te(e)){const r=nt(e),n=e.contracts?Le.has(r):void 0,o=t===pe,a=Se.renderSymbolSearchList.findIndex((t=>t.symbol===e.symbol&&t.exchange===e.exchange))+1;return{key:t,numberInList:a,id:r,title:rt(e,De),description:e.description,isOffset:!1,
|
||||
onClick:pt.bind(null,e,a),providerId:e.provider_id,source:e.source,source2:e.source2,country:e.country?.toLocaleLowerCase(),type:e.type,exchangeName:null===e.exchange?void 0:e.exchange,exchangeTooltip:"",prefix:e.prefix||void 0,marketType:(0,Qe.marketType)(e.type,e.typespecs,!1),hideMarketType:Pe,isEod:e.params?.includes("eod")&&"economic"!==e.type,isYield:(0,Ge.isYield)(e),isExpanded:n,onExpandClick:e.contracts?ht.bind(null,r):void 0,fullSymbolName:e.contracts?Ue.QualifiedSources.fromSymbolSearchResult(e,e.contracts[0]):Ue.QualifiedSources.fromSymbolSearchResult(e),itemRef:o?Ae:void 0,isSelected:t===pe,hideMarkedListFlag:i,item:e,logoId:e.logoid,currencyLogoId:e["currency-logoid"],baseCurrencyLogoId:e["base-currency-logoid"],shortName:(0,Ze.safeShortName)(Ue.QualifiedSources.fromSymbolSearchResult(e)),currencyCode:e.currency_code,isPrimary:e.is_primary_listing}}{const{parent:r}=e,n=nt(r),o=t===pe,a=Se.renderSymbolSearchList.findIndex((e=>e.symbol===r.symbol&&e.exchange===r.exchange))+1;return{key:t,numberInList:a,id:n+e.symbol,dangerousTitleHTML:rt(e,De),dangerousDescriptionHTML:`${r.description}`+(e.description?` (${e.description})`:""),isOffset:!0,isEod:e.params?.includes("eod"),isYield:(0,Ge.isYield)(e),onClick:gt.bind(null,e.parent,e,a),providerId:r.provider_id,country:r.country?.toLowerCase(),type:r.type,exchangeName:null===r.exchange?void 0:r.exchange,exchangeTooltip:"",marketType:(0,Qe.marketType)(r.type,e.typespecs,!1),hideMarketType:Pe,fullSymbolName:Ue.QualifiedSources.fromSymbolSearchResult(e.parent,e),itemRef:o?Ae:void 0,isSelected:o,hideMarkedListFlag:i,item:e}}}))),[Se.renderSymbolSearchList,Le,Z,pe,D]),Ve=(0,s.useMemo)((()=>function(e,t,r){const n=t?.[e],o=new Map(n?.map((e=>[e.id,e.urlParam]))),a=r[e];let s;if(a){s={};for(const[e,t]of Object.entries(a)){const r=o.get(e);r&&(s[r]=t)}}return s}(le,ve,ce)),[le,ve,ce]),et=(0,s.useMemo)((()=>Se.renderSymbolSearchList.slice(0,20).map((e=>e.contracts?Ue.QualifiedSources.fromSymbolSearchResult(e,e.contracts[0]):Ue.QualifiedSources.fromSymbolSearchResult(e)))),[Se.renderSymbolSearchList]);(0,s.useEffect)((()=>{if(!W)return;const e=["resetFilter","resetTabFilter","empty"].includes(ge)?[]:et,t={...Ve,result_list:e};if(t.search_type||(t.search_type="bitcoin,crypto"===le?"crypto":le),!m.isSeparateSymbolSearchTabs)return t.exchange=be?.getRequestCountryValue()??null,void W(t);if(le){const e=be?.getRequestCountryValue()??null;e&&(t.country=e);const r=be?.getRequestExchangeValue()??null;r&&(t.exchange=r)}W(t)}),[le,Ve,et,be,ge]);const lt=(0,s.useMemo)((()=>{if(A)return A}),[le,A,Ve,U]),it=k??at,ct=it!==at&&!z,ut=(e,r)=>({mode:Z,setMode:G,selectedSearchSource:be,setSelectedSearchSource:m.isSeparateSymbolSearchTabs?we:ne,isAllSearchSourcesSelected:B.isAllSearchSourcesSelected,allSearchSourcesTitle:m.isSeparateSymbolSearchTabs?TAB_SOURCE_FILTER_MAP[Se.currentSymbolType]?.allSearchSourcesTitle:void 0,selectedSymbolType:le,setSelectedSymbolType:ie,selectedIndex:pe,setSelectedIndex:he,onClose:t,setSymbolSearchContent:xe,symbolSearchContent:Se,searchRef:ke,
|
||||
cachedInputValue:J,searchSpreads:de,setSearchSpreads:me,handleListWidth:ft,isSmallWidth:Ce,feedItems:_e,isMobile:e,showSpreadActions:l,selectSearchOnInit:d,isTablet:r,selectedItem:Oe[pe],forceUpdate:Ie,placeholder:g,initialScreen:x,toggleExpand:ht,openedItems:Le,onSubmit:yt,onSearchComplete:p,footer:I,symbolTypes:K,contentItem:C,searchInput:R,emptyState:T,autofocus:N,upperCaseEnabled:Je,externalInput:z,handleKeyDown:ct?void 0:bt,customSearchSymbols:lt,searchSources:ye,filterDefinitions:ve,selectedFilterValues:ce,setSelectedFilterValues:ue,filterQueryParams:Ve,symbolSearchState:ge,setSymbolSearchState:fe,onEmptyResults:void 0,searchInitiationPoint:V}),dt=O??q,mt=w??"div";return s.createElement(mt,null,s.createElement(y.MatchMediaMap,{rules:S.DialogBreakpoints},(({TabletSmall:e,TabletNormal:n})=>s.createElement(E.SymbolSearchItemsDialogContext.Provider,{value:ut(e,n)},s.createElement(it,{..."exchange"===Z?{title:c.t(null,void 0,r(28628)),dataName:"exchanges-search",render:()=>s.createElement(dt,{searchSources:Se.currentTabAvailableSearchSources}),additionalHeaderElement:s.createElement(We.BackButton,{onClick:()=>G("symbolSearch"),className:je.backButton,size:"medium","aria-label":c.t(null,{context:"input"},r(41256)),preservePaddings:!0,flipIconOnRtl:(0,Re.isRtl)()}),additionalElementPos:"before"}:{title:h,dataName:"symbol-search-items-dialog",render:()=>s.createElement(Fe,null),additionalElementPos:"after"},shouldReturnFocus:F,fullScreen:v,onClose:t,onClickOutside:t,onKeyDown:ct?void 0:bt,isOpened:!0})))));function pt(e,t,r){if(e.contracts)return e.contracts.length?void gt(e,e.contracts[0],t,r):void ht(nt(e));gt(e,void 0,t,r)}function ht(e){const t=new Set(Le);t.has(e)?t.delete(e):t.add(e),Te(t)}function gt(e,r,n,o){const a=r||e,{exchange:s}=e;if(u.enabled("show_spread_operators")){const e={name:a.symbol,exchange:s,prefix:a.prefix,fullName:a.full_name};if(de)return vt(e),void Ie();if(ke.current&&ke.current.value.includes(","))return void vt(e)}St([{resolved:!0,symbol:Ue.QualifiedSources.fromSymbolSearchResult(e,r),result:a}],n,o),t()}function ft(e){Ee("fixed"===M||e<=640)}function vt(e){if(!ke.current)return;const[t,r]=f(ke.current,e,Je);ke.current.value=t,ke.current.setSelectionRange(r,r),ke.current.focus()}function bt(e){if(e.target&&e.target!==ke.current)return;const r=(0,ae.hashFromEvent)(e);switch(r){case 13:e.preventDefault(),yt(!0);break;case 27:if(e.preventDefault(),"exchange"===Z)return void G("symbolSearch");if("options"===Z)return G("symbolSearch"),$(null),void X(null);t()}switch((0,L.mapKeyCodeToDirection)(r)){case"blockPrev":if(e.preventDefault(),0===pe||"good"!==ge)return;if(-1===pe)return void he(0);he(pe-1);break;case"blockNext":if(e.preventDefault(),pe===_e.length-1||"good"!==ge)return;he(pe+1);break;case"inlinePrev":{if(-1===pe)return;const t=_e[pe],{id:r,isOffset:n,onExpandClick:o}=t;if(!n&&r&&Le.has(r)&&Boolean(o)&&!Boolean(D)&&(e.preventDefault(),ht(r)),o)return void D?.(e,!0);break}case"inlineNext":{if(-1===pe)return;const t=_e[pe],{id:r,isOffset:n,onExpandClick:o}=t
|
||||
;if(n||!r||Le.has(r)||!Boolean(o)||Boolean(D)||(e.preventDefault(),ht(r)),o)return void D?.(e,!0);break}}D?.(e)}function yt(e){if(!ke.current)return;let r=ke.current.value;if(u.enabled("show_spread_operators")&&de&&r){const n=_e[pe];if(n&&void 0!==n.isExpanded&&(n.onClick(),r=ke.current.value),r.includes(",")){return St(ot(r).map(tt),null),void(e&&t())}return St([{symbol:Je?r.toUpperCase():r,resolved:!1}],null),void(e&&t())}if(r.includes(","))return St(ot(r).map(tt),null),void(e&&t());if(-1!==pe){_e[pe].onClick()}else if(u.enabled("allow_arbitrary_symbol_search_input")){const n=Je?r.toUpperCase():r;if(n&&""!==n.trim()){const e=ot(n);if($e||void 0===Ne||-1!==n.indexOf(":")){St(e.map(tt),null)}else(function(e){let t=!1;return Promise.all(e.map((e=>-1!==e.indexOf(":")||t?Promise.resolve({symbol:e,resolved:!1}):(t=!0,async function(e){await(Be?.accountMetainfo());const t=void 0,r=await re({strictMatch:!0,serverHighlight:!1,text:e,lang:window.language||"",brokerId:Ne,onlyTradable:!0,unhideSymbolSearchGroups:Me,exchange:t});if(0!==r.symbols.length){const e=r.symbols[0],{contracts:t}=e,n=t&&t.length>0?t[0]:void 0,o=e.prefix||e.exchange,a=n?n.symbol:e.symbol;if(o&&a)return{symbol:Ue.QualifiedSources.fromSymbolSearchResult(e,n),resolved:!0,result:e}}return{symbol:e,resolved:!1}}(e)))))})(e).then((e=>St(e,null)))}e&&t()}else if("empty"!==ge&&_e.length>0){_e[0].onClick()}}async function St(e,t,r){const[{result:n,symbol:o,resolved:a}]=e,s=ke.current?.value,l=!r||(0,qe.isKeyboardClick)(r);let i=de;void 0!==n&&te(n)&&(i="spread"===n.type),p(e,{symbolType:le,isKeyboardEvent:l,numberInList:t,inputValue:s,isSpread:i})}}function tt(e){return{symbol:Je?e.toUpperCase():e,resolved:!1}}function rt(e,t){const{broker_symbol:r,symbol:n,description:o}=e;return`${"spread"===e.type?o:n}${t&&r?` (${r})`:""}`}function nt(e){return e.symbol+e.exchange+e.description}function ot(e){return e.split(",").map((e=>e.trim())).filter((e=>""!==e))}function at(e){const{isMobile:t,isTablet:r}=(0,O.useEnsuredContext)(E.SymbolSearchItemsDialogContext);return s.createElement(x.AdaptivePopupDialog,{...e,className:i()(je.dialog,!t&&(r?je.tabletDialog:je.desktopDialog)),backdrop:!0,draggable:!1})}function st(e,t){return null}},81319:(e,t,r)=>{"use strict";r.d(t,{createGroupColumns:()=>p,exchangeSelectDisabled:()=>m,getAllSymbolTypesValue:()=>d,getAvailableSearchSources:()=>c,getAvailableSymbolTypes:()=>u,getDefaultSearchSource:()=>i,getSymbolFullName:()=>l,isOptionDefaultValue:()=>g,isSeparateSymbolSearchTabs:()=>h});var n=r(11542),o=r(20882);class a{constructor(e){this._exchange=e}value(){return this._exchange.value}name(){return(0,o.isAllSearchSourcesSelected)(this)?n.t(null,void 0,r(34040)):this._exchange.name}description(){return this._exchange.desc}country(){return this._exchange.country}providerId(){return this._exchange.providerId}group(){return this._exchange.group}includes(e){return function(e,t){const r=t.toLowerCase(),{name:n,desc:o,searchTerms:a}=e
|
||||
;return n.toLowerCase().includes(r)||o.toLowerCase().includes(r)||void 0!==a&&a.some((e=>e.toLowerCase().includes(r)))}(this._exchange,e)}getRequestExchangeValue(){return this._exchange.value}getRequestCountryValue(){}}var s=r(3685);function l(e){if(e.fullName)return e.fullName;let t;return t=e.prefix||e.exchange?(e.prefix||e.exchange)+":"+e.name:e.name,t.replace(/<\/?[^>]+(>|$)/g,"")}function i(){const e=c();return e.find(o.isAllSearchSourcesSelected)||e[0]||null}function c(){return(0,o.createSearchSources)(a,(0,s.getExchanges)())}function u(){return window.ChartApiInstance.supportedSymbolsTypes()}function d(){return""}function m(e){return!!h&&!TAB_SOURCE_FILTER_MAP[e]}function p(e,t=2){if(0===e.length)return[];if(1===t)return[e];const r=Math.floor(e.length/2)+e.length%2;return[e.slice(0,r),e.slice(r)].filter((e=>e.length>0))}const h=!1;function g(e){return"string"!=typeof e}},82708:(e,t,r)=>{"use strict";r.d(t,{safeShortName:()=>o});var n=r(13665);function o(e){try{return(0,n.shortName)(e)}catch(t){return e}}},44254:(e,t,r)=>{"use strict";r.d(t,{factorOutBraces:()=>m,getTokenAtPos:()=>d,isBinaryOperator:()=>c,isSpread:()=>u,parseToken:()=>h,shortName:()=>p,symbolTokenEscapeRe:()=>a,tokenize:()=>i});var n,o=r(18429);!function(e){e.Symbol="symbol",e.IncompleteSymbol="incompleteSymbol",e.Number="number",e.IncompleteNumber="incompleteNumber",e.SeparatorPrefix="separatorPrefix",e.OpenBrace="openBrace",e.CloseBrace="closeBrace",e.Plus="plus",e.Minus="minus",e.Multiply="multiply",e.Divide="divide",e.Power="power",e.Whitespace="whitespace",e.Unparsed="unparsed"}(n||(n={}));const a=/[+\-/*]/,s={number:/\d+(?:\.\d*|(?![a-zA-Z0-9_!:.&]))|\.\d+/,incompleteNumber:/\./,symbol:/(?:[^-+\/*^\s]'|[a-zA-Z0-9_\u0370-\u1FFF_\u2E80-\uFFFF^])(?:[^-+\/*^\s]'|[a-zA-Z0-9_\u0020\u0370-\u1FFF_\u2E80-\uFFFF_!:.&])*|'.+?'/,incompleteSymbol:/'[^']*/,separatorPrefix:o.SEPARATOR_PREFIX,openBrace:"(",closeBrace:")",plus:"+",minus:"-",multiply:"*",divide:"/",power:"^",whitespace:/[\0-\x20\s]+/,unparsed:null},l=new RegExp(Object.values(s).map((e=>{return null===e?"":`(${"string"==typeof e?(t=e,t.replace(/[\^$()[\]{}*+?|\\]/g,"\\$&")):e.source})`;var t})).filter((e=>""!==e)).concat(".").join("|"),"g");function i(e){if(!e)return[];const t=[],r=Object.keys(s);let n;for(;n=l.exec(e);){let e=!1;for(let o=r.length;o--;)if(n[o+1]){r[o]&&t.push({value:n[o+1],type:r[o],precedence:0,offset:n.index}),e=!0;break}e||t.push({value:n[0],type:"unparsed",precedence:0,offset:n.index})}return t}function c(e){return"plus"===e||"minus"===e||"multiply"===e||"divide"===e||"power"===e}function u(e){return e.length>1&&e.some((e=>c(e.type)))}function d(e,t){for(let r=0;r<e.length;r++){const n=e[r],o="symbol"===n.type||"incompleteSymbol"===n.type||"number"===n.type;if(n.offset<=t&&t<=n.offset+n.value.length&&o)return n}return null}function m(e){e=function(e){const t=[];for(const r of e)"whitespace"!==r.type&&t.push(r);return t}(e);const t=[],r=[];let n;for(let o=0;o<e.length;o++){const a=e[o];switch(a.type){case"plus":case"minus":case"multiply":case"divide":case"power":
|
||||
r.length&&r[r.length-1].minPrecedence>a.precedence&&(r[r.length-1].minPrecedence=a.precedence);break;case"openBrace":n={minPrecedence:1/0,openBraceIndex:o},r.push(n);break;case"closeBrace":{if(n=r.pop(),!n)break;const a=e[n.openBraceIndex-1],s=e[o+1],l=a&&("plus"===a.type||"multiply"===a.type);(!c(s?.type)||s?.precedence<=n.minPrecedence)&&(!c(a?.type)||a?.precedence<n?.minPrecedence||a?.precedence===n?.minPrecedence&&l)&&(t.unshift(n.openBraceIndex),t.push(o),r.length&&r[r.length-1].minPrecedence>n.minPrecedence&&(r[r.length-1].minPrecedence=n.minPrecedence))}}}for(let r=t.length;r--;)e.splice(t[r],1);return e}function p(e){return m(i(e)).reduce(((e,t)=>{if("symbol"!==t.type)return e+t.value;const[,r]=h(t);return r?e+r:e}),"")}function h(e){const t=/^'?(?:([A-Z0-9_]+):)?(.*?)'?$/i.exec(e.value);return null===t?[void 0,void 0]:[t[1],t[2]]}},618:(e,t,r)=>{"use strict";r.d(t,{removeUsdFromCryptoPairLogos:()=>s,resolveLogoUrls:()=>a});var n=r(36279);const o=(0,n.getLogoUrlResolver)();function a(e,t=n.LogoSize.Medium){const r=e.logoid,a=e["base-currency-logoid"],s=e["currency-logoid"],l=r&&o.getSymbolLogoUrl(r,t);if(l)return[l];const i=a&&o.getSymbolLogoUrl(a,t),c=s&&o.getSymbolLogoUrl(s,t);return i&&c?[i,c]:i?[i]:c?[c]:[]}function s(e){return 2!==e.length?e:function(e){return e.some((e=>l(e)))}(e)&&!function(e){return e.some((e=>e.includes("country")&&!l(e)))}(e)?e.filter((e=>!l(e))):e}function l(e){return!1}},39330:(e,t,r)=>{"use strict";r.d(t,{getBlockStyleClasses:()=>l,getLogoStyleClasses:()=>i});var n=r(97754),o=r(52292),a=r(78217),s=r.n(a);function l(e,t){return n(s().pair,s()[e],t)}function i(e,t=2,r=!0){return n(s().logo,s()[e],s().skeleton,o.skeletonTheme.wrapper,!r&&s().empty,1===t&&n(o.skeletonTheme.animated))}},58492:(e,t,r)=>{"use strict";r.d(t,{getStyleClasses:()=>n.getStyleClasses});var n=r(53885)},97006:(e,t,r)=>{"use strict";r.d(t,{createRegExpList:()=>l,getHighlightedChars:()=>i,rankedSearch:()=>s});var n=r(37265);function o(e){return e.replace(/[!-/[-^{-}?]/g,"\\$&")}var a;function s(e){const{data:t,rules:r,queryString:o,isPreventedFromFiltering:a,primaryKey:s,secondaryKey:l=s,optionalPrimaryKey:i,tertiaryKey:c}=e;return t.map((e=>{const t=i&&e[i]?e[i]:e[s],a=e[l],u=c&&e[c];let d,m=0;return r.forEach((e=>{const{re:r,fullMatch:s}=e;if(r.lastIndex=0,(0,n.isString)(t)&&t&&t.toLowerCase()===o.toLowerCase())return m=4,void(d=t.match(s)?.index);if((0,n.isString)(t)&&s.test(t))return m=3,void(d=t.match(s)?.index);if((0,n.isString)(a)&&s.test(a))return m=2,void(d=a.match(s)?.index);if((0,n.isString)(a)&&r.test(a))return m=2,void(d=a.match(r)?.index);if(Array.isArray(u))for(const e of u)if(s.test(e))return m=1,void(d=e.match(s)?.index)})),{matchPriority:m,matchIndex:d,item:e}})).filter((e=>a||e.matchPriority)).sort(((e,t)=>{if(e.matchPriority<t.matchPriority)return 1;if(e.matchPriority>t.matchPriority)return-1;if(e.matchPriority===t.matchPriority){if(void 0===e.matchIndex||void 0===t.matchIndex)return 0;if(e.matchIndex>t.matchIndex)return 1;if(e.matchIndex<t.matchIndex)return-1}return 0})).map((({item:e})=>e))}
|
||||
function l(e,t){const r=[],n=e.toLowerCase(),a=e.split("").map(((e,t)=>`(${0!==t?`[/\\s-]${o(e)}`:o(e)})`)).join("(.*?)")+"(.*)";return r.push({fullMatch:new RegExp(`(${o(e)})`,"i"),re:new RegExp(`^${a}`,"i"),reserveRe:new RegExp(a,"i"),fuzzyHighlight:!0}),t&&t.hasOwnProperty(n)&&r.push({fullMatch:t[n],re:t[n],fuzzyHighlight:!1}),r}function i(e,t,r){const n=[];return e&&r?(r.forEach((e=>{const{fullMatch:r,re:o,reserveRe:a}=e;r.lastIndex=0,o.lastIndex=0;const s=r.exec(t),l=s||o.exec(t)||a&&a.exec(t);if(e.fuzzyHighlight=!s,l)if(e.fuzzyHighlight){let e=l.index;for(let t=1;t<l.length;t++){const r=l[t],o=l[t].length;if(t%2){const t=r.startsWith(" ")||r.startsWith("/")||r.startsWith("-");n[t?e+1:e]=!0}e+=o}}else for(let e=0;e<l[0].length;e++)n[l.index+e]=!0})),n):n}!function(e){e[e.Low=0]="Low",e[e.MediumLow=1]="MediumLow",e[e.Medium=2]="Medium",e[e.High=3]="High",e[e.Highest=4]="Highest"}(a||(a={}))},24637:(e,t,r)=>{"use strict";r.d(t,{HighlightedText:()=>l});var n=r(50959),o=r(97754),a=r(97006),s=r(95059);function l(e){const{queryString:t,rules:r,text:l,className:i}=e,c=(0,n.useMemo)((()=>(0,a.getHighlightedChars)(t,l,r)),[t,r,l]);return n.createElement(n.Fragment,null,c.length?l.split("").map(((e,t)=>n.createElement(n.Fragment,{key:t},c[t]?n.createElement("span",{className:o(s.highlighted,i)},e):n.createElement("span",null,e)))):l)}},78036:(e,t,r)=>{"use strict";r.d(t,{useEnsuredContext:()=>a});var n=r(50959),o=r(50151);function a(e){return(0,o.ensureNotNull)((0,n.useContext)(e))}},36947:(e,t,r)=>{"use strict";r.d(t,{useForceUpdate:()=>n.useForceUpdate});var n=r(125)},29006:(e,t,r)=>{"use strict";r.d(t,{useResizeObserver:()=>n.useResizeObserver});var n=r(67842)},77975:(e,t,r)=>{"use strict";r.d(t,{useWatchedValueReadonly:()=>o});var n=r(50959);const o=(e,t=!1,r=[])=>{const o="watchedValue"in e?e.watchedValue:void 0,a="defaultValue"in e?e.defaultValue:e.watchedValue.value(),[s,l]=(0,n.useState)(o?o.value():a);return(t?n.useLayoutEffect:n.useEffect)((()=>{if(o){l(o.value());const e=e=>l(e);return o.subscribe(e),()=>o.unsubscribe(e)}return()=>{}}),[o,...r]),s}},84877:(e,t,r)=>{"use strict";r.d(t,{MatchMediaMap:()=>s});var n=r(50959),o=r(66783),a=r.n(o);class s extends n.Component{constructor(e){super(e),this._handleMediaChange=()=>{const e=i(this.state.queries,((e,t)=>t.matches));let t=!1;for(const r in e)if(e.hasOwnProperty(r)&&this.state.matches[r]!==e[r]){t=!0;break}t&&this.setState({matches:e})};const{rules:t}=this.props;this.state=l(t)}shouldComponentUpdate(e,t){return!a()(e,this.props)||(!a()(t.rules,this.state.rules)||!a()(t.matches,this.state.matches))}componentDidMount(){this._migrate(null,this.state.queries)}componentDidUpdate(e,t){a()(e.rules,this.props.rules)||this._migrate(t.queries,this.state.queries)}componentWillUnmount(){this._migrate(this.state.queries,null)}render(){return this.props.children(this.state.matches)}static getDerivedStateFromProps(e,t){if(a()(e.rules,t.rules))return null;const{rules:r}=e;return l(r)}_migrate(e,t){null!==e&&i(e,((e,t)=>{t.removeEventListener("change",this._handleMediaChange)
|
||||
})),null!==t&&i(t,((e,t)=>{t.addEventListener("change",this._handleMediaChange)}))}}function l(e){const t=i(e,((e,t)=>window.matchMedia(t)));return{queries:t,matches:i(t,((e,t)=>t.matches)),rules:{...e}}}function i(e,t){const r={};for(const n in e)e.hasOwnProperty(n)&&(r[n]=t(n,e[n]));return r}},47308:(e,t,r)=>{"use strict";r.d(t,{RoundButtonTabs:()=>$});var n=r(50959),o=r(97754),a=r(11542),s=r(63273),l=r(47201),i=r(35020),c=r(86240),u=r(86781);var d=r(95854),m=r(36966),p=r(7953),h=r(38528),g=r(66686);r(34869);const f=n.createContext({children:{},setIsReady:()=>{}});function v(){return!function(){const[e,t]=(0,n.useState)(!0);return(0,n.useEffect)((()=>{t(!1)}),[]),e}()}var b=r(67842);function y(e,t,r){const{id:o,items:a,activationType:s,orientation:y,disabled:S,onActivate:x,isActive:w,overflowBehaviour:k,enableActiveStateStyles:C,tablistLabelId:E,tablistLabel:I,preventDefaultIfKeyboardActionHandled:R,stopPropagationIfKeyboardActionHandled:L,keyboardNavigationLoop:T,defaultKeyboardFocus:B,focusableItemAttributes:N}=t,M=(0,i.useMobileTouchState)(),D=function(e){const t=(0,u.useSafeMatchMedia)(c["media-mf-phone-landscape"],!0),r=(0,i.useMobileTouchState)();return e??(r||!t?"scroll":"collapse")}(k),O=(0,n.useRef)(!1),A=(0,n.useCallback)((e=>e.id),[]),P=C??!M,_=function(){const{setIsReady:e,children:t}=(0,n.useContext)(f),r=(0,n.useRef)((0,n.useId)());return t[r.current]||(t[r.current]={isReady:!1}),(0,n.useCallback)((()=>{t[r.current].isReady=!0,e(Object.values(t).every((e=>e.isReady)))}),[t,e])}(),{visibleItems:F,hiddenItems:W,containerRefCallback:Q,innerContainerRefCallback:U,moreButtonRef:V,setItemRef:K,itemsMeasurements:z}=(0,d.useCollapsible)(a,A,w),H=function(e){const t=(0,n.useRef)(null);return(0,n.useEffect)((()=>{t.current=e}),[e]),t.current}(z.current?.containerWidth)??0,Z=v(),G=z.current?.containerWidth??0;let q=!1;z.current&&Z&&(q=function(e,t,r,n,o){if("collapse"!==n)return!0;const a=function(e,t,r){const n=e.filter((e=>t.find((t=>t.id===e[0]))));return t.length>0?n[0][1]+r:0}(Array.from(e.widthsMap.entries()),t,o),s=e.moreButtonWidth??0;let l=function(e,t){return e.reduce(((e,r)=>e+(t.get(r.id)??0)),0)}(r,e.widthsMap);return l+=t.length>0?s:0,function(e,t,r,n){return 0!==e?t-r<e&&t-r>n:r<t}(a,e.containerWidth,l,o)}(z.current,W,F,D,r.gap??0)||0===G);const j=(0,b.useResizeObserver)((([e])=>{const t=Z&&0===H&&0===W.length;(q&&e.contentRect.width===H||t)&&_()})),$="collapse"===D?F:a,Y=(0,n.useMemo)((()=>"collapse"===D?W:[]),[D,W]),X=(0,n.useCallback)((e=>Y.includes(e)),[Y]),{isOpened:J,open:ee,close:te,onButtonClick:re}=(0,p.useDisclosure)({id:o,disabled:S}),{tabsBindings:ne,tablistBinding:oe,scrollWrapBinding:ae,onActivate:se,onHighlight:le,isHighlighted:ie}=(0,m.useTabs)({id:o,items:[...$,...Y],activationType:s,orientation:y,disabled:S,tablistLabelId:E,tablistLabel:I,preventDefaultIfKeyboardActionHandled:R,scrollIntoViewOptions:r.scrollIntoViewOptions,onActivate:x,isActive:w,isCollapsed:X,isRtl:r.isRtl,isDisclosureOpened:J,isRadioGroup:r.isRadioGroup,stopPropagationIfKeyboardActionHandled:L,
|
||||
keyboardNavigationLoop:T,defaultKeyboardFocus:B,focusableItemAttributes:N}),ce=Y.find(ie),ue=(0,n.useCallback)((()=>{const e=a.find(w);e&&le(e)}),[le,w,a]),de=(0,n.useCallback)((e=>ne.find((t=>t.id===e.id))),[ne]),me=(0,n.useCallback)((()=>{te(),ue(),O.current=!0}),[te,ue]),pe=(0,n.useCallback)((()=>{ce&&(se(ce),le(ce,250))}),[se,le,ce]);ae.ref=(0,h.useMergedRefs)([j,ae.ref,Q]),oe.ref=(0,h.useMergedRefs)([oe.ref,U]),oe.onKeyDown=(0,l.createSafeMulticastEventHandler)((0,g.useKeyboardEventHandler)([(0,g.useKeyboardClose)(J,me),(0,g.useKeyboardActionHandler)([13,32],pe,(0,n.useCallback)((()=>Boolean(ce)),[ce]))],R),oe.onKeyDown);const he=(0,n.useCallback)((e=>{O.current=!0,re(e)}),[O,re]),ge=(0,n.useCallback)((e=>{e&&se(e)}),[se]);return(0,n.useEffect)((()=>{O.current?O.current=!1:(ce&&!J&&ee(),!ce&&J&&te())}),[ce,J,ee,te]),{enableActiveStateStyles:P,moreButtonRef:V,setItemRef:K,getBindings:de,handleMoreButtonClick:he,handleCollapsedItemClick:ge,scrollWrapBinding:ae,overflowBehaviour:D,tablistBinding:oe,visibleTabs:$,hiddenTabs:Y,handleActivate:se,isMobileTouch:M,getItemId:A,isDisclosureOpened:J,isHighlighted:ie,closeDisclosure:te}}var S=r(8304),x=r(53017),w=r(17946),k=r(9745),C=r(2948),E=r(90854);const I="xsmall",R="primary";function L(e){const t=(0,n.useContext)(w.CustomBehaviourContext),{size:r="xsmall",variant:a="primary",active:s,fake:l,startIcon:i,endIcon:c,showCaret:u,iconOnly:d,anchor:m,enableActiveStateStyles:p=t.enableActiveStateStyles,disableFocusOutline:h=!1,tooltip:g}=e;return o(E.roundTabButton,E[r],E[a],i&&E.withStartIcon,(c||u)&&E.withEndIcon,d&&E.iconOnly,s&&E.selected,l&&E.fake,m&&E.enableCursorPointer,!p&&E.disableActiveStateStyles,h&&E.disableFocusOutline,g&&"apply-common-tooltip")}function T(e){const{startIcon:t,endIcon:r,showCaret:a,iconOnly:s,children:l}=e;return n.createElement(n.Fragment,null,t&&n.createElement(k.Icon,{icon:t,className:E.startIconWrap,"aria-hidden":!0}),l&&n.createElement("span",{className:o(E.content,s&&E.visuallyHidden)},l),(!s&&r||a)&&n.createElement(B,{icon:r,showCaret:a}))}function B(e){const{icon:t,showCaret:r}=e;return n.createElement(k.Icon,{className:o(E.endIconWrap,r&&E.caret),icon:r?C:t,"aria-hidden":!0})}const N=(0,n.forwardRef)(((e,t)=>{const{id:r,size:o,variant:a,active:s,fake:l,startIcon:i,endIcon:c,showCaret:u,iconOnly:d,children:m,enableActiveStateStyles:p,disableFocusOutline:h,tooltip:g,...f}=e;return n.createElement("button",{...f,id:r,ref:t,"data-tooltip":g,className:L({size:o,variant:a,active:s,fake:l,startIcon:i,endIcon:c,showCaret:u,iconOnly:d,enableActiveStateStyles:p,disableFocusOutline:h,tooltip:g})},n.createElement(T,{startIcon:i,endIcon:c,showCaret:u,iconOnly:d},m))}));N.displayName="RoundTabsBaseButton";const M=(0,n.createContext)({size:"small",variant:"primary",isHighlighted:!1,isCollapsed:!1,disabled:!1});function D(e){const{item:t,highlighted:r,handleItemRef:o,reference:a,onClick:s,"aria-disabled":l,...i}=e,c=(0,n.useCallback)((e=>{i.disabled&&e.preventDefault(),s&&s(t)}),[s,t,i.disabled]),u=(0,n.useCallback)((e=>{o&&o(t,e),(0,
|
||||
x.isomorphicRef)(a)(e)}),[t,o]),d={size:i.size??I,variant:i.variant??R,isHighlighted:Boolean(i.active),isCollapsed:!1,disabled:i.disabled??!1};return n.createElement(N,{...i,id:t.id,onClick:c,ref:u,startIcon:t.startIcon,endIcon:t.endIcon,tooltip:t.tooltip,"aria-label":"radio"===i.role?t.children:void 0},n.createElement(M.Provider,{value:d},t.children))}var O=r(16396),A=r(4523),P=r(16829),_=r(89882),F=r(2057),W=r(93524);function Q(e){const{disabled:t,isOpened:r,enableActiveStateStyles:o,disableFocusOutline:a,fake:s,items:l,buttonText:i,buttonPreset:c="text",buttonRef:u,size:d,variant:m,isAnchorTabs:p,isHighlighted:g,onButtonClick:f,onItemClick:v,onClose:b}=e,y=(0,n.useRef)(null),S=(0,h.useMergedRefs)([u,y]),x="text"===c?void 0:"xsmall"===d?_:F;return n.createElement(A.PopupMenuDisclosureView,{buttonRef:y,listboxTabIndex:-1,isOpened:r,onClose:b,listboxAria:{"aria-hidden":!0},button:n.createElement(N,{"aria-hidden":!0,disabled:t,active:r,onClick:f,ref:S,tabIndex:-1,size:d,variant:m,startIcon:x,showCaret:"text"===c,iconOnly:"meatballs"===c,enableActiveStateStyles:o,disableFocusOutline:a,fake:s},i),popupChildren:n.createElement(n.Fragment,null,"meatballs"===c&&n.createElement(P.ToolWidgetMenuSummary,null,i),l.map((e=>n.createElement(O.PopupMenuItem,{key:e.id,className:p?W.linkItem:void 0,onClick:v,onClickArg:e,isActive:g(e),label:n.createElement(U,{isHighlighted:g(e),size:d,variant:m,disabled:e.disabled},e.children),isDisabled:e.disabled,link:"href"in e?e.href:void 0,rel:"rel"in e?e.rel:void 0,target:"target"in e?e.target:void 0,icon:e.startIcon,toolbox:e.endIcon&&n.createElement(k.Icon,{icon:e.endIcon}),renderComponent:"renderComponent"in e?e.renderComponent:void 0,dontClosePopup:!0}))))})}function U(e){const{isHighlighted:t,size:r,variant:o,children:a,disabled:s}=e,l={size:r??I,variant:o??R,isHighlighted:t,isCollapsed:!0,disabled:s??!1};return n.createElement(M.Provider,{value:l},a)}var V,K,z,H,Z=r(76912);function G(e){const{overflowBehaviour:t}=e;return o(Z.scrollWrap,"scroll"===t&&Z.overflowScroll,"wrap"===t&&Z.overflowWrap)}function q(e){const{align:t="start"}=e;return o(Z.roundTabs,Z[t])}function j(e){const{children:t,disabled:l,moreButtonText:i=a.t(null,void 0,r(37117)),moreButtonPreset:c,className:u,size:d,variant:m,align:p,style:h={},"data-name":g,isRadioGroup:f,"aria-controls":v}=e,b=function(e="xsmall"){switch(e){case"small":return 8;case"xsmall":return 4;default:return 16}}(d),{enableActiveStateStyles:x,moreButtonRef:w,setItemRef:k,getBindings:C,handleMoreButtonClick:E,handleCollapsedItemClick:I,scrollWrapBinding:R,overflowBehaviour:L,tablistBinding:T,visibleTabs:B,hiddenTabs:N,handleActivate:M,isMobileTouch:O,getItemId:A,isDisclosureOpened:P,isHighlighted:_,closeDisclosure:F}=y(S.TabNames.RoundButtonTabs,e,{isRtl:s.isRtl,scrollIntoViewOptions:{additionalScroll:b},isRadioGroup:f,gap:b});return n.createElement("div",{...R,className:o(G({overflowBehaviour:L}),u),style:{...h,"--ui-lib-round-tabs-gap":`${b}px`},"data-name":g},n.createElement("div",{...T,className:q({align:p,overflowBehaviour:L})
|
||||
},B.map((e=>n.createElement(D,{...C(e),key:e.id,item:e,onClick:()=>M(e),variant:m,size:d,enableActiveStateStyles:x,disableFocusOutline:O,reference:k(A(e)),...e.dataId&&{"data-id":e.dataId},"aria-controls":v}))),N.map((e=>n.createElement(D,{...C(e),key:e.id,item:e,variant:m,size:d,reference:k(A(e)),"aria-controls":v,fake:!0}))),n.createElement(Q,{disabled:l,isOpened:P,items:N,buttonText:i,buttonPreset:c,buttonRef:w,isHighlighted:_,onButtonClick:E,onItemClick:I,onClose:F,variant:m,size:d,enableActiveStateStyles:x,disableFocusOutline:O,fake:0===N.length}),t))}function $(e){const{"data-name":t="round-tabs-buttons",...r}=e;return n.createElement(j,{...r,"data-name":t})}!function(e){e.Primary="primary",e.Ghost="ghost"}(V||(V={})),function(e){e.XSmall="xsmall",e.Small="small",e.Large="large"}(K||(K={})),function(e){e.Start="start",e.Center="center"}(z||(z={})),function(e){e.Text="text",e.Meatballs="meatballs"}(H||(H={}));r(21593)},63932:(e,t,r)=>{"use strict";r.d(t,{Spinner:()=>i});var n=r(50959),o=r(97754),a=r(58096),s=(r(15216),r(85862)),l=r.n(s);function i(e){const{ariaLabel:t,ariaLabelledby:r,className:s,style:i,size:c,id:u,disableSelfPositioning:d}=e;return n.createElement("div",{className:o(s,"tv-spinner","tv-spinner--shown",`tv-spinner--size_${a.spinnerSizeMap[c||a.DEFAULT_SIZE]}`,d&&l().disableSelfPositioning),style:i,role:"progressbar",id:u,"aria-label":t,"aria-labelledby":r})}},10381:(e,t,r)=>{"use strict";r.d(t,{ToolWidgetCaret:()=>i});var n=r(50959),o=r(97754),a=r(9745),s=r(49128),l=r(578);function i(e){const{dropped:t,className:r}=e;return n.createElement(a.Icon,{className:o(r,s.icon,{[s.dropped]:t}),icon:l})}},4237:(e,t,r)=>{"use strict";var n=r(32227);t.createRoot=n.createRoot,n.hydrateRoot},38576:e=>{e.exports={button:"button-GwQQdU8S",hover:"hover-GwQQdU8S",clicked:"clicked-GwQQdU8S",isInteractive:"isInteractive-GwQQdU8S",accessible:"accessible-GwQQdU8S",isGrouped:"isGrouped-GwQQdU8S",isActive:"isActive-GwQQdU8S",isOpened:"isOpened-GwQQdU8S",isDisabled:"isDisabled-GwQQdU8S",text:"text-GwQQdU8S",icon:"icon-GwQQdU8S",endIcon:"endIcon-GwQQdU8S"}},55973:e=>{e.exports={title:"title-u3QJgF_p"}},81348:(e,t,r)=>{"use strict";r.d(t,{DEFAULT_TOOL_WIDGET_BUTTON_THEME:()=>l,ToolWidgetButton:()=>i});var n=r(50959),o=r(97754),a=r(9745),s=r(38576);const l=s,i=n.forwardRef(((e,t)=>{const{tag:r="div",icon:l,endIcon:i,isActive:c,isOpened:u,isDisabled:d,isGrouped:m,isHovered:p,isClicked:h,onClick:g,text:f,textBeforeIcon:v,title:b,theme:y=s,className:S,forceInteractive:x,inactive:w,"data-name":k,"data-tooltip":C,...E}=e,I=o(S,y.button,(b||C)&&"apply-common-tooltip",{[y.isActive]:c,[y.isOpened]:u,[y.isInteractive]:(x||Boolean(g))&&!d&&!w,[y.isDisabled]:Boolean(d||w),[y.isGrouped]:m,[y.hover]:p,[y.clicked]:h}),R=l&&("string"==typeof l?n.createElement(a.Icon,{className:y.icon,icon:l}):n.cloneElement(l,{className:o(y.icon,l.props.className)}));return"button"===r?n.createElement("button",{...E,ref:t,type:"button",className:o(I,y.accessible),disabled:d&&!w,onClick:g,title:b,"data-name":k,"data-tooltip":C
|
||||
},v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f),R,!v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f)):n.createElement("div",{...E,ref:t,"data-role":"button",className:I,onClick:d?void 0:g,title:b,"data-name":k,"data-tooltip":C},v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f),R,!v&&f&&n.createElement("div",{className:o("js-button-text",y.text)},f),i&&n.createElement(a.Icon,{icon:i,className:s.endIcon}))}))},16829:(e,t,r)=>{"use strict";r.d(t,{ToolWidgetMenuSummary:()=>s});var n=r(50959),o=r(97754),a=r(55973);function s(e){return n.createElement("div",{className:o(e.className,a.title)},e.children)}},74395:(e,t,r)=>{"use strict";r.d(t,{VISIBLE_TYPESPECS:()=>s,marketType:()=>l});var n=r(11542);const o=new Map([["cfd",n.t(null,void 0,r(79599))],["dr",n.t(null,void 0,r(47268))],["index",n.t(null,void 0,r(87464))],["forex",n.t(null,void 0,r(17770))],["right",n.t(null,{context:"symbol_type"},r(53174))],["bond",n.t(null,void 0,r(42358))],["bitcoin",n.t(null,void 0,r(46128))],["crypto",n.t(null,void 0,r(46128))],["economic",n.t(null,void 0,r(54094))],["indices",n.t(null,void 0,r(90250))],["futures",n.t(null,void 0,r(4723))],["stock",n.t(null,void 0,r(76752))],["commodity",n.t(null,void 0,r(70932))]]);r(21251);const a=new Map,s=new Set(["cfd","spreadbet","defi","yield","government","corporate","mutual","money","etf","unit","trust","reit","etn","convertible","closedend","crypto","oracle"]);function l(e,t=[],r=!0){const n=t.filter((e=>s.has(e))),l=`${e}_${n.sort().join("_")}`,i=a.get(l);if(void 0!==i)return i;const c=r?function(e){return o.get(e)||e}(e):e,u=Boolean(t.length)?[c,...n].join(" "):c;return a.set(l,u),u}},52019:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M13.35 5.35a.5.5 0 0 0-.7-.7L9 8.29 5.35 4.65a.5.5 0 1 0-.7.7L8.29 9l-3.64 3.65a.5.5 0 0 0 .7.7L9 9.71l3.65 3.64a.5.5 0 0 0 .7-.7L9.71 9l3.64-3.65z"/></svg>'},89882:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M5 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm6 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/></svg>'},2057:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M9 14a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm8 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm5 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/></svg>'},95694:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M17 22.5 6.85 12.35a.5.5 0 0 1 0-.7L17 1.5"/></svg>'},49498:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M12 16.5 4.85 9.35a.5.5 0 0 1 0-.7L12 1.5"/></svg>'},60176:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" width="14" height="14" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M9.5 12.5 3.9 7.37a.5.5 0 0 1 0-.74L9.5 1.5"/></svg>'},35369:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" width="12" height="12" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M8 10.5 3.85 6.35a.5.5 0 0 1 0-.7L8 1.5"/></svg>'},58478:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M7 8.5 3.85 5.35a.5.5 0 0 1 0-.7L7 1.5"/></svg>'},73063:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M17 22.5 6.85 12.35a.5.5 0 0 1 0-.7L17 1.5"/></svg>'},14127:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M12 16.5 4.85 9.35a.5.5 0 0 1 0-.7L12 1.5"/></svg>'},18073:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" width="14" height="14" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M9.5 12.5 3.9 7.37a.5.5 0 0 1 0-.74L9.5 1.5"/></svg>'},99243:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" width="12" height="12" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M8 10.5 3.85 6.35a.5.5 0 0 1 0-.7L8 1.5"/></svg>'},42576:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M7 8.5 3.85 5.35a.5.5 0 0 1 0-.7L7 1.5"/></svg>'},578:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 8" width="16" height="8"><path fill="currentColor" d="M0 1.475l7.396 6.04.596.485.593-.49L16 1.39 14.807 0 7.393 6.122 8.58 6.12 1.186.08z"/></svg>'},91540:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" d="M2.5 14.5c1.68-1.26 3.7-2 6.5-2s4.91.74 6.5 2m-13-11c1.68 1.26 3.7 2 6.5 2s4.91-.74 6.5-2"/><circle stroke="currentColor" cx="9" cy="9" r="8.5"/><path stroke="currentColor" d="M13.5 9c0 2.42-.55 4.58-1.4 6.12-.87 1.56-1.98 2.38-3.1 2.38s-2.23-.82-3.1-2.38c-.85-1.54-1.4-3.7-1.4-6.12s.55-4.58 1.4-6.12C6.77 1.32 7.88.5 9 .5s2.23.82 3.1 2.38c.85 1.54 1.4 3.7 1.4 6.12z"/></svg>'},66619:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120"><path fill="#B2B5BE" fill-rule="evenodd" d="M23 39a36 36 0 0 1 72 0v13.15l15.1 8.44 2.16 1.2-1.64 1.86-12.85 14.59 3.73 4.03L98.57 85 95 81.13V117H77v-12H67v9H50V95H40v22H23V81.28l-3.8 3.61-2.76-2.9 4.05-3.84-12.77-14.5-1.64-1.86 2.16-1.2L23 52.34V39Zm72 36.33 10.98-12.46L95 56.73v18.6ZM23 56.92v18.03L12.35 62.87 23 56.92ZM59 7a32 32 0 0 0-32 32v74h9V91h18v19h9v-9h18v12h10V39A32 32 0 0 0 59 7Zm-7 36a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm19 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/></svg>'},67562:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120"><path fill="#131722" fill-rule="evenodd" d="M23 39a36 36 0 0 1 72 0v13.15l15.1 8.44 2.16 1.2-1.64 1.86-12.85 14.59 3.73 4.03L98.57 85 95 81.13V117H77v-12H67v9H50V95H40v22H23V81.28l-3.8 3.61-2.76-2.9 4.05-3.84-12.77-14.5-1.64-1.86 2.16-1.2L23 52.34V39Zm72 36.33 10.98-12.46L95 56.73v18.6ZM23 56.92v18.03L12.35 62.87 23 56.92ZM59 7a32 32 0 0 0-32 32v74h9V91h18v19h9v-9h18v12h10V39A32 32 0 0 0 59 7Zm-7 36a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm19 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/></svg>'},69533:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path stroke="currentColor" d="M8 5l3.5 3.5L8 12"/></svg>'},486:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M2.5 6.5h9"/><circle fill="currentColor" cx="7" cy="3" r="1"/><circle fill="currentColor" cx="7" cy="10" r="1"/></svg>'},63861:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><g fill="none" fill-rule="evenodd" stroke="currentColor"><path stroke-linecap="square" stroke-linejoin="round" d="M3.5 10V2.5L1 5"/><path stroke-linecap="square" d="M1.5 10.5h4"/><path d="M8 12l3-11"/></g></svg>'},81574:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M2.5 6.5h8"/></svg>'},32617:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M3 10l7-7M3 3l7 7"/></svg>'},35119:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M2.5 6.5h8m-4-4v8"/></svg>'},69135:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13" width="13" height="13"><path fill="none" stroke="currentColor" stroke-linecap="square" d="M3 7l3.5-3.5L10 7"/></svg>'},54313:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M18.5 12.5a6 6 0 1 1-12 0 6 6 0 0 1 12 0Zm-1.25 5.8a7.5 7.5 0 1 1 1.06-1.06l4.22 4.23.53.53L22 23.06l-.53-.53-4.22-4.22Z"/></svg>'},6347:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M17.4 17.5a7 7 0 1 0-4.9 2c1.9 0 3.64-.76 4.9-2zm0 0l5.1 5"/></svg>'}}]);
|
||||
10
charting_library/bundles/4482.047c81d44aa4df09a0eb.js
Normal file
10
charting_library/bundles/4482.047c81d44aa4df09a0eb.js
Normal file
@@ -0,0 +1,10 @@
|
||||
"use strict";(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4482],{52305:(e,i,t)=>{t.d(i,{convertToInt:()=>r,floor:()=>n,limitedPrecision:()=>l});var o=t(73866);function n(e){return Math.floor(e)}function r(e){return parseInt(String(e))}function l(e){const i=new o.LimitedPrecisionNumericFormatter(e,!0);return e=>{if(null===e)return e;const t=i.parse(i.format(e));return t.res?t.value:null}}},74343:(e,i,t)=>{t.d(i,{basePriceSources:()=>d,createPriceSourceDefinition:()=>u});var o=t(11542),n=t(14139),r=t(64147),l=t(32097),s=t(23869),a=t(68805);const c=o.t(null,void 0,t(84684)),d=[{title:o.t(null,void 0,t(16610)),value:"open",id:"price-source-open"},{title:o.t(null,void 0,t(78254)),value:"high",id:"price-source-high"},{title:o.t(null,void 0,t(65318)),value:"low",id:"price-source-low"},{title:o.t(null,void 0,t(62578)),value:"close",id:"price-source-close"},{title:o.t(null,void 0,t(69303)),value:"hl2",id:"price-source-hl2"},{title:o.t(null,void 0,t(27311)),value:"hlc3",id:"price-source-hlc3"},{title:o.t(null,void 0,t(4348)),value:"ohlc4",id:"price-source-ohlc4"}];function u(e,i,t,o,d,u){const p=void 0,h=(0,s.createWVFromGetterAndSubscriptions)((()=>!(0,a.isCloseBasedSymbol)(e.mainSeries().symbolInfo())),[e.mainSeries().dataEvents().symbolResolved(),e.mainSeries().dataEvents().symbolError()]);return(0,n.createOptionsPropertyDefinition)({disabled:p&&(0,l.convertFromReadonlyWVToDefinitionProperty)(p.weakReference()),option:(0,l.convertToDefinitionProperty)(e,i.priceSource,u),visible:(0,l.convertFromReadonlyWVToDefinitionProperty)(h.ownership())},{id:`${o}${d}`,title:c,options:new r.WatchedValue(t)})}},18653:(e,i,t)=>{t.d(i,{getSeriesStylePropertiesDefinitions:()=>Te});var o=t(11542),n=t(45126),r=t(32097),l=(t(20596),t(64147)),s=t(56570),a=t(37265),c=t(52305),d=t(91682),u=t(74343);const p=new n.TranslatedString("change line price source",o.t(null,void 0,t(41837))),h=new n.TranslatedString("change line color",o.t(null,void 0,t(88640))),y=new n.TranslatedString("change line width",o.t(null,void 0,t(48339))),f=o.t(null,void 0,t(3554));function v(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolLinePriceSource",p),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.color,null,h),gradientColor1:i.gradientStartColor&&(0,r.getColorDefinitionProperty)(e,i.gradientStartColor,null,h),gradientColor2:i.gradientEndColor&&(0,r.getColorDefinitionProperty)(e,i.gradientEndColor,null,h),type:i.colorType&&(0,r.convertToDefinitionProperty)(e,i.colorType,h),width:(0,r.convertToDefinitionProperty)(e,i.linewidth,y)},{id:`${o}SymbolLineStyle`,title:f})]}
|
||||
const g=new n.TranslatedString("change color bars based on previous close",o.t(null,void 0,t(43090))),S=new n.TranslatedString("change HLC bars",o.t(null,void 0,t(27068))),b=new n.TranslatedString("change bar up color",o.t(null,void 0,t(33464))),w=new n.TranslatedString("change bar down color",o.t(null,void 0,t(59622))),P=new n.TranslatedString("change thin bars",o.t(null,void 0,t(60834))),m=new n.TranslatedString("change area price source",o.t(null,void 0,t(4640))),T=new n.TranslatedString("change area line color",o.t(null,void 0,t(29605))),D=new n.TranslatedString("change area line width",o.t(null,void 0,t(89346))),C=new n.TranslatedString("change area fill color",o.t(null,void 0,t(86866))),_=new n.TranslatedString("change baseline price source",o.t(null,void 0,t(68609))),k=new n.TranslatedString("change baseline top line color",o.t(null,void 0,t(69044))),W=new n.TranslatedString("change baseline top line width",o.t(null,void 0,t(68197))),$=new n.TranslatedString("change baseline bottom line color",o.t(null,void 0,t(71785))),M=new n.TranslatedString("change baseline bottom line width",o.t(null,void 0,t(56175))),V=new n.TranslatedString("change baseline fill top area color",o.t(null,void 0,t(92873))),L=new n.TranslatedString("change baseline fill bottom area color",o.t(null,void 0,t(97216))),I=new n.TranslatedString("change base level",o.t(null,void 0,t(42190))),O=new n.TranslatedString("change high-low body visibility",o.t(null,void 0,t(73021))),B=new n.TranslatedString("change high-low body color",o.t(null,void 0,t(6026))),E=new n.TranslatedString("change high-low borders visibility",o.t(null,void 0,t(15801))),x=new n.TranslatedString("change high-low border color",o.t(null,void 0,t(46844))),A=new n.TranslatedString("change high-low labels visibility",o.t(null,void 0,t(72399))),F=new n.TranslatedString("change high-low labels color",o.t(null,void 0,t(56961))),N=(new n.TranslatedString("change renko wick visibility",o.t(null,void 0,t(79604))),new n.TranslatedString("change renko wick up color",o.t(null,void 0,t(92277))),new n.TranslatedString("change renko wick down color",o.t(null,void 0,t(75487))),new n.TranslatedString("change the display of real prices on price scale (instead of Heiken-Ashi price)",o.t(null,void 0,t(16660))),new n.TranslatedString("change range thin bars",o.t(null,void 0,t(65821))),new n.TranslatedString("change range bars style",o.t(null,void 0,t(16241))),
|
||||
new n.TranslatedString("change {candleType} body visibility",o.t(null,void 0,t(60608)))),H=new n.TranslatedString("change {candleType} up color",o.t(null,void 0,t(36697))),R=new n.TranslatedString("change {candleType} down color",o.t(null,void 0,t(64571))),U=new n.TranslatedString("change {candleType} border visibility",o.t(null,void 0,t(11114))),j=new n.TranslatedString("change {candleType} up border color",o.t(null,void 0,t(17214))),G=new n.TranslatedString("change {candleType} down border color",o.t(null,void 0,t(20291))),z=new n.TranslatedString("change {candleType} wick visibility",o.t(null,void 0,t(94750))),J=new n.TranslatedString("change {candleType} wick up color",o.t(null,void 0,t(47664))),q=new n.TranslatedString("change {candleType} wick down color",o.t(null,void 0,t(48091))),K=(new n.TranslatedString("change {chartType} up color",o.t(null,void 0,t(6970))),new n.TranslatedString("change {chartType} down color",o.t(null,void 0,t(5012))),new n.TranslatedString("change {chartType} projection bar up color",o.t(null,void 0,t(85032))),new n.TranslatedString("change {chartType} projection bar down color",o.t(null,void 0,t(72545))),new n.TranslatedString("change {chartType} border bar up color",o.t(null,void 0,t(28394))),new n.TranslatedString("change {chartType} border bar down color",o.t(null,void 0,t(23053))),new n.TranslatedString("change {chartType} projection border bar up color",o.t(null,void 0,t(42826))),new n.TranslatedString("change {chartType} projection border bar up color",o.t(null,void 0,t(42826))),new n.TranslatedString("change column up color",o.t(null,void 0,t(88324)))),Q=new n.TranslatedString("change column down color",o.t(null,void 0,t(93890))),X=new n.TranslatedString("change column price source",o.t(null,void 0,t(4727))),Y=new n.TranslatedString("change HLC bars color",o.t(null,void 0,t(21201))),Z=o.t(null,void 0,t(23111)),ee=o.t(null,void 0,t(886)),ie=o.t(null,void 0,t(23091)),te=o.t(null,void 0,t(23743)),oe=o.t(null,void 0,t(20215)),ne=o.t(null,void 0,t(74406)),re=o.t(null,void 0,t(333)),le=o.t(null,void 0,t(32163)),se=o.t(null,void 0,t(3554)),ae=o.t(null,void 0,t(89349)),ce=o.t(null,void 0,t(3159)),de=o.t(null,void 0,t(41129)),ue=o.t(null,void 0,t(61112)),pe=o.t(null,void 0,t(73185)),he=(o.t(null,void 0,t(36957)),o.t(null,void 0,t(17611)),o.t(null,void 0,t(77430)),o.t(null,void 0,t(73466)),o.t(null,void 0,t(88367)),o.t(null,void 0,t(6160)),o.t(null,void 0,t(28975))),ye=o.t(null,void 0,t(74406)),fe=o.t(null,void 0,t(333)),ve=o.t(null,void 0,t(5119)),ge=o.t(null,void 0,t(56359)),Se=o.t(null,void 0,t(84831)),be=o.t(null,void 0,t(34579)),we=(o.t(null,void 0,t(92516)),o.t(null,void 0,t(27377)),o.t(null,void 0,t(45054)),o.t(null,void 0,t(27377)));function Pe(e,i,t,o){return(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.barColorsOnPrevClose,g)},{id:`${t}${o}`,title:Z})}function me(e,i,t,o){const n=(0,d.removeSpaces)(t.originalText());return[(0,r.createTwoColorsPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawBody,N.format({
|
||||
candleType:t})),color1:(0,r.getColorDefinitionProperty)(e,i.upColor,null,H.format({candleType:t})),color2:(0,r.getColorDefinitionProperty)(e,i.downColor,null,R.format({candleType:t}))},{id:`${o}Symbol${n}CandlesColor`,title:ne}),(0,r.createTwoColorsPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawBorder,U.format({candleType:t})),color1:(0,r.getColorDefinitionProperty)(e,i.borderUpColor,null,j.format({candleType:t})),color2:(0,r.getColorDefinitionProperty)(e,i.borderDownColor,null,G.format({candleType:t}))},{id:`${o}Symbol${n}BordersColor`,title:re}),(0,r.createTwoColorsPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawWick,z.format({candleType:t})),color1:(0,r.getColorDefinitionProperty)(e,i.wickUpColor,null,J.format({candleType:t})),color2:(0,r.getColorDefinitionProperty)(e,i.wickDownColor,null,q.format({candleType:t}))},{id:`${o}Symbol${n}WickColors`,title:le})]}function Te(e,i,d,p,h){switch(d){case 0:return function(e,i,t){return[Pe(e,i,t,"SymbolBarStyleBarColorsOnPrevClose"),(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.dontDrawOpen,S)},{id:`${t}SymbolDontDrawOpen`,title:ee}),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.upColor,null,b)},{id:`${t}SymbolUpColor`,title:ie}),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.downColor,null,w)},{id:`${t}SymbolDownColor`,title:te}),(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.thinBars,P)},{id:`${t}SymbolBarThinBars`,title:oe})].filter(a.isExistent)}(e,i.barStyle.childs(),h);case 1:case 19:return function(e,i,r){return[Pe(e,i,r,"SymbolCandleStyleBarColorsOnPrevClose"),...me(e,i,new n.TranslatedString("candle",o.t(null,void 0,t(21105))),r)].filter(a.isExistent)}(e,1===d?i.candleStyle.childs():i.volCandlesStyle.childs(),h);case 2:return v(e,i.lineStyle.childs(),p.seriesPriceSources,h);case 14:return v(e,i.lineWithMarkersStyle.childs(),p.seriesPriceSources,h);case 15:return v(e,i.steplineStyle.childs(),p.seriesPriceSources,h);case 3:return function(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolAreaPriceSource",m),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.linecolor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.linewidth,D)},{id:`${o}SymbolAreaLineStyle`,title:se}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.color1,i.transparency,C),color2:(0,r.getColorDefinitionProperty)(e,i.color2,i.transparency,C)},{id:`${o}SymbolAreaFills`,title:de})]}(e,i.areaStyle.childs(),p.seriesPriceSources,h);case 16:return function(e,i,t,o){return[(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.highLineColor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.highLineWidth,D)},{id:`${o}SymbolHLCAreaHighLineStyle`,title:ge}),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.lowLineColor,null,T),width:(0,
|
||||
r.convertToDefinitionProperty)(e,i.lowLineWidth,D)},{id:`${o}SymbolHLCAreaLowLineStyle`,title:be}),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.closeLineColor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.closeLineWidth,D)},{id:`${o}SymbolHLCAreaCloseLineStyle`,title:Se}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.highCloseFillColor,null,C),color2:(0,r.getColorDefinitionProperty)(e,i.closeLowFillColor,null,C)},{id:`${o}SymbolHLCAreaFills`,title:de})]}(e,i.hlcAreaStyle.childs(),p.seriesPriceSources,h);case 9:return me(e,i.hollowCandleStyle.childs(),new n.TranslatedString("hollow candles",o.t(null,void 0,t(92598))),h);case 10:return function(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolBaseLinePriceSource",_),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.topLineColor,null,k),width:(0,r.convertToDefinitionProperty)(e,i.topLineWidth,W)},{id:`${o}SymbolBaseLineTopLine`,title:ae}),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.bottomLineColor,null,$),width:(0,r.convertToDefinitionProperty)(e,i.bottomLineWidth,M)},{id:`${o}SymbolBaseLineBottomLine`,title:ce}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.topFillColor1,null,V),color2:(0,r.getColorDefinitionProperty)(e,i.topFillColor2,null,V)},{id:`${o}SymbolBaseLineTopFills`,title:ue}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.bottomFillColor1,null,L),color2:(0,r.getColorDefinitionProperty)(e,i.bottomFillColor2,null,L)},{id:`${o}SymbolBaseLineBottomFills`,title:pe}),(0,r.createNumberPropertyDefinition)({value:(0,r.convertToDefinitionProperty)(e,i.baseLevelPercentage,I,[c.floor])},{id:`${o}SymbolBaseLevelPercentage`,title:he,type:0,min:new l.WatchedValue(0),max:new l.WatchedValue(100),step:new l.WatchedValue(1),unit:new l.WatchedValue("%")})]}(e,i.baselineStyle.childs(),p.seriesPriceSources,h);case 13:return function(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolColumnPriceSource",X),Pe(e,i,o,"SymbolColumnStyleColumnColorsOnPrevClose"),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.upColor,null,K)},{id:`${o}SymbolUpColor`,title:ie}),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.downColor,null,Q)},{id:`${o}SymbolDownColor`,title:te})].filter(a.isExistent)}(e,i.columnStyle.childs(),p.seriesPriceSources,h);case 21:return function(e,i,t){return[(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.color,null,Y)},{id:`${t}SymbolColor`,title:we}),(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.thinBars,P)},{id:`${t}SymbolBarThinBars`,title:oe})].filter(a.isExistent)}(e,i.hlcBarsStyle.childs(),h)}if(12===d&&s.enabled("chart_style_hilo")){return function(e,i,t){return[(0,r.createColorPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawBody,O),color:(0,
|
||||
r.getColorDefinitionProperty)(e,i.color,null,B)},{id:`${t}SymbolBodiesColor`,title:ye}),(0,r.createColorPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.showBorders,E),color:(0,r.getColorDefinitionProperty)(e,i.borderColor,null,x)},{id:`${t}SymbolBorderColor`,title:fe}),(0,r.createTextPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.showLabels,A),color:(0,r.getColorDefinitionProperty)(e,i.labelColor,null,F)},{id:`${t}SymbolLabels`,title:ve,isEditable:!1,isMultiLine:!1})]}(e,i.hiloStyle.childs(),h)}if(!i.hasOwnProperty("haStyle"))return[];if(p.isJapaneseChartsAvailable&&8===d){return function(e,i,r){const l=[];return l.push(Pe(e,i,r,"SymbolHAStyleBarColorsOnPrevClose"),...me(e,i,new n.TranslatedString("Heikin Ashi",o.t(null,void 0,t(63876))),r)),l}(e,i.haStyle.childs(),h)}return p.isJapaneseChartsAvailable&&s.enabled("japanese_chart_styles"),[]}},64482:(e,i,t)=>{t.d(i,{SeriesPropertyDefinitionsViewModel:()=>R,seriesPrecisionValues:()=>H});var o=t(50151),n=t(9343),r=t(11542),l=t(45126),s=t(56570),a=t(32097),c=t(5171),d=t(64147),u=t(16638),p=t(68805),h=t(18653),y=t(56530),f=t(52305);const v=new l.TranslatedString("change {inputName} property",r.t(null,void 0,t(66110)));function g(e){return e.map((e=>({value:e,title:(0,y.getTranslatedInputTitle)(e)})))}const S=new Set(["percentageLTP"]);function b(e,i,t,n,r,s,c){const u=[];return t.forEach((t=>{if(!function(e,i){return!e.isHidden&&(void 0===e.visible||function(e,i){if(!e)return!0;const t=e.split("==");return!(t.length<2)&&i[t[0]].value()===t[1]}(e.visible,i))}(t,n))return;const h=t.id;if(!n.hasOwnProperty(h))return;const b=n[h],w=function(e,i){return"style"===e.id?"Box size assignment method":"boxSize"===e.id?"Box size":i.childs().name.value()}(t,r[h]),P=(0,y.getTranslatedInputTitle)(w),m=new l.TranslatedString(w,P);if("options"in t){const i=(0,o.ensure)(t.options);u.push((0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P,options:new d.WatchedValue(g(i))}))}else if("integer"!==t.type){if("float"===t.type){let o;return o=function(e,i){return!((i===(0,p.chartStyleStudyId)(4)||i===(0,p.chartStyleStudyId)(6))&&"boxSize"===e||i===(0,p.chartStyleStudyId)(5)&&"reversalAmount"===e)}(h,i)||null===s.value()?new d.WatchedValue(t.min):s,void u.push((0,a.createNumberPropertyDefinition)({value:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P,type:1,min:o,max:new d.WatchedValue(t.max),unit:S.has(t.id)?new d.WatchedValue("%"):void 0,defval:t.defval}))}"text"!==t.type?"bool"!==t.type||u.push((0,a.createCheckablePropertyDefinition)({checked:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P})):u.push((0,a.createTextPropertyDefinition)({text:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P,isEditable:!0,isMultiLine:!1}))}else u.push((0,a.createNumberPropertyDefinition)({value:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m
|
||||
}),[f.floor])},{id:`${c}${t.name}`,title:P,type:0,min:new d.WatchedValue(t.min),max:new d.WatchedValue(t.max),unit:S.has(t.id)?new d.WatchedValue("%"):void 0,defval:t.defval}))})),u}var w=t(14712),P=t(84425),m=t(88960),T=t(95700),D=t(74343);const C=(0,n.getLogger)("Chart.Definitions.Series"),_=s.enabled("pre_post_market_sessions"),k=new l.TranslatedString("change decimal places",r.t(null,void 0,t(82063))),W=new l.TranslatedString("change timezone",r.t(null,void 0,t(20137))),$=new l.TranslatedString("toggle intraday inactivity gaps",r.t(null,void 0,t(28871))),M=(new l.TranslatedString("adjust data for dividends",r.t(null,void 0,t(18077))),new l.TranslatedString("use settlement as close on daily interval",r.t(null,void 0,t(92978))),new l.TranslatedString("adjust for contract changes",r.t(null,void 0,t(1433))),new l.TranslatedString("change session",r.t(null,void 0,t(87041)))),V=new l.TranslatedString("change extended hours color",r.t(null,void 0,t(44223))),L=new l.TranslatedString("change pre market color",r.t(null,void 0,t(44371))),I=new l.TranslatedString("change post market color",r.t(null,void 0,t(38730))),O=(new l.TranslatedString("change electronic trading hours",r.t(null,void 0,t(47393))),r.t(null,void 0,t(93020)),r.t(null,void 0,t(94031))),B=(r.t(null,void 0,t(68921)),r.t(null,void 0,t(49545)),r.t(null,void 0,t(88327))),E=(r.t(null,void 0,t(59777)),r.t(null,void 0,t(59766))),x=r.t(null,void 0,t(77073)),A=r.t(null,void 0,t(16564)),F=r.t(null,void 0,t(89212)),N=[{priceScale:2,minMove:1,frac:!0},{priceScale:4,minMove:1,frac:!0},{priceScale:8,minMove:1,frac:!0},{priceScale:16,minMove:1,frac:!0},{priceScale:32,minMove:1,frac:!0},{priceScale:64,minMove:1,frac:!0},{priceScale:128,minMove:1,frac:!0},{priceScale:320,minMove:1,frac:!0}];function H(){const e=[{title:A,value:"default"}],i=function(e=15){const i=[];for(let t=0;t<=e;t++)i.push({priceScale:Math.pow(10,t),minMove:1,frac:!1});return i}();for(let o=0;o<i.length;o++){const n=Math.log10(i[o].priceScale),l=0===n?r.t(null,void 0,t(47326)):r.t(null,{plural:"{value} decimals",count:n,replace:{value:n.toString()}},t(59644));e.push({title:l,value:`${i[o].priceScale},${i[o].minMove},${i[o].frac}`})}for(let i=0;i<N.length;i++)e.push({title:`${N[i].minMove}/${N[i].priceScale}`,value:`${N[i].priceScale},${N[i].minMove},${N[i].frac}`});return e}class R{constructor(e,i,t,o,n,r){this._definitions=null,this._inputsSubscriptions=null,this._isDestroyed=!1,this._propertyPages=null,this._seriesMinTickWV=null,this._sessionIdOptionsWV=new d.WatchedValue([]),this._series=e,this._undoModel=i,this._model=this._undoModel.model(),this._propertyPageId=t,this._propertyPageName=o,this._propertyPageIcon=n,this._timezonePropertyObj=r,this._series.onStyleChanged().subscribe(this,this._updateDefinitions),this._series.properties().childs().rangeStyle.childs().barStyle.subscribe(this,this._updateDefinitions),this._series.dataEvents().symbolResolved().subscribe(this,this._updateSeriesMinTickWV),this._series.dataEvents().symbolResolved().subscribe(this,this._updateSessionIdOptionsWV),
|
||||
this._updateSeriesMinTickWV(),this._updateSessionIdOptionsWV()}destroy(){null!==this._propertyPages&&this._propertyPages.forEach((e=>{(0,a.destroyDefinitions)(e.definitions.value())})),this._series.onStyleChanged().unsubscribe(this,this._updateDefinitions),this._series.properties().childs().rangeStyle.childs().barStyle.unsubscribeAll(this),this._series.dataEvents().symbolResolved().unsubscribeAll(this),this._unsubscribeInputsUpdate(),this._isDestroyed=!0}propertyPages(){return null===this._propertyPages?this._getDefinitions().then((e=>{if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed");return null===this._propertyPages&&(this._propertyPages=[{id:this._propertyPageId,title:this._propertyPageName,icon:this._propertyPageIcon,definitions:new d.WatchedValue(e.definitions),visible:e.visible??new d.WatchedValue(!0).readonly()}]),this._propertyPages})):Promise.resolve(this._propertyPages)}_seriesMinTick(){const e=this._series.symbolInfo();return null!==e?e.minmov/e.pricescale:null}_updateSeriesMinTickWV(){null===this._seriesMinTickWV?this._seriesMinTickWV=new d.WatchedValue(this._seriesMinTick()):this._seriesMinTickWV.setValue(this._seriesMinTick())}_updateSessionIdOptionsWV(){if(!_)return;const e=this._series.symbolInfo();if(null===e)return;const i=(e.subsessions||[]).filter((e=>!e.private)).map((e=>({title:(0,T.translateSessionDescription)(e.description),value:e.id})));this._sessionIdOptionsWV.setValue(i)}_updateDefinitions(){null!==this._definitions&&(0,a.destroyDefinitions)(this._definitions.definitions),this._definitions=null,this._createSeriesDefinitions().then((e=>{if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed");(0,o.ensureNotNull)(this._propertyPages)[0].definitions.setValue(e.definitions)}))}_getDefinitions(){return null===this._definitions?this._createSeriesDefinitions():Promise.resolve(this._definitions)}_unsubscribeInputsUpdate(){null!==this._inputsSubscriptions&&(this._inputsSubscriptions.forEach((e=>{e.unsubscribeAll(this)})),this._inputsSubscriptions=null)}_subscribeInputsUpdate(e,i){this._unsubscribeInputsUpdate();const t=[];e.forEach((e=>{if(void 0!==e.visible){const o=e.visible.split("==");if(2===o.length){const e=i[o[0]];-1===t.indexOf(e)&&(e.subscribe(this,this._updateDefinitions),t.push(e))}}})),t.length>0?this._inputsSubscriptions=t:this._inputsSubscriptions=null}async _createSeriesDefinitions(){const e=this._series.properties().childs(),i=this._series.getInputsProperties(),n=this._series.getInputsInfoProperties(),l=e.style.value(),y=this._series.getStyleShortName(),f=c.chartStylesWithAttachedStudies.includes(l)?null:(0,p.chartStyleStudyId)(l);let v,g=null;if(null!==f){let e;try{e=await(0,u.studyMetaInfoRepository)().findById({type:"java",studyId:f});const t=(0,o.ensureNotNull)(this._seriesMinTickWV);g=b(this._undoModel,e.id,e.inputs,i,n,t,y),this._subscribeInputsUpdate(e.inputs,i)}catch(i){C.logWarn(`Find meta info for create series definitions with error - ${(0,w.errorToString)(i)}`),e=null}
|
||||
if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed")}else this._unsubscribeInputsUpdate();if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed");if(c.chartStylesWithAttachedStudies.includes(l))throw new Error("unexpected chart style");{const i=(0,h.getSeriesStylePropertiesDefinitions)(this._undoModel,e,l,{seriesPriceSources:D.basePriceSources,isJapaneseChartsAvailable:true},"mainSeries");null!==g&&i.push(...g),v=(0,a.createPropertyDefinitionsGeneralGroup)(i,"generalSymbolStylesGroup",(0,p.getTranslatedChartStyleName)(l))}const S=(0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(this._undoModel,e.minTick,k),visible:(0,a.convertFromReadonlyWVToDefinitionProperty)(new d.WatchedValue(!0).ownership())},{id:`${y}SymbolMinTick`,title:E,options:new d.WatchedValue(H())}),P=(0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(this._undoModel,this._timezonePropertyObj.property,W)},{id:`${y}SymbolTimezone`,title:x,options:new d.WatchedValue(this._timezonePropertyObj.values)}),m=[...await this._seriesDataDefinitions(y),S,P];return s.enabled("intraday_inactivity_gaps")&&m.push((0,a.createCheckablePropertyDefinition)({checked:(0,a.convertToDefinitionProperty)(this._undoModel,this._undoModel.model().properties().childs().inactivityGaps,$)},{id:`${y}InactivityGap`,title:F})),this._definitions={definitions:[v,(0,a.createPropertyDefinitionsGeneralGroup)(m,"dataModififcationGroup",r.t(null,void 0,t(48225)))]},this._definitions}async _seriesDataDefinitions(e){const i=[];if(_){const t=this._series.sessionIdProxyProperty(),o=(0,m.combineWithFilteredUpdate)(((e,i)=>!i&&(0,p.symbolHasSeveralSessions)(this._series.symbolInfo())),((e,i)=>i||!e),this._series.symbolResolvingActive().weakReference(),(0,P.createWVFromProperty)(this._series.isDWMProperty()).ownership()),n=(0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(this._undoModel,t,M),visible:(0,a.convertFromReadonlyWVToDefinitionProperty)(o.ownership())},{id:"sessionId",title:O,options:this._sessionIdOptionsWV});i.push(n);const r=(await this._model.sessions().promise()).graphicsInfo();let l=!1;r.backgrounds&&(l=void 0!==r.backgrounds.outOfSession);const s=await(l?this._createOutOfSessionDefinition(e):this._createPrePostMarketDefinition(e));i.push(s);const c=this._createElectronicSessionDefinition(e);c&&i.push(c)}return i}_createOutOfSessionDefinition(e){const i=this._model.sessions().properties().childs().sessionHighlight.childs().backgrounds.childs().outOfSession.childs();return(0,a.createColorPropertyDefinition)({color:(0,a.getColorDefinitionProperty)(this._undoModel,i.color,i.transparency,V)},{id:`${e}SymbolExtendedHoursColors`,title:B})}_createPrePostMarketDefinition(e){const i=(0,P.createWVFromGetterAndSubscription)((()=>this._series.symbolInfo()),this._series.dataEvents().symbolResolved()),t=(0,m.combineWithFilteredUpdate)(((e,i)=>!e&&!!i&&(0,p.symbolHasPreOrPostMarket)(i)&&!(0,
|
||||
p.isRegularSessionId)(this._series.sessionIdProxyProperty().value(),i)),((e,i)=>e||!!i),(0,P.createWVFromProperty)(this._series.isDWMProperty()).ownership(),i.ownership()),o=this._model.sessions().properties().childs().sessionHighlight.childs(),n=o.backgrounds.childs().preMarket.childs(),r=o.backgrounds.childs().postMarket.childs();return(0,a.createTwoColorsPropertyDefinition)({color1:(0,a.getColorDefinitionProperty)(this._undoModel,n.color,n.transparency,L),color2:(0,a.getColorDefinitionProperty)(this._undoModel,r.color,r.transparency,I),visible:(0,a.convertFromReadonlyWVToDefinitionProperty)(t.ownership())},{id:`${e}SymbolExtendedHoursColors`,title:B})}_createElectronicSessionDefinition(e){return null}}}}]);
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4482],{52305:(e,i,t)=>{t.d(i,{convertToInt:()=>r,floor:()=>n,limitedPrecision:()=>l});var o=t(73866);function n(e){return Math.floor(e)}function r(e){return parseInt(String(e))}function l(e){const i=new o.LimitedPrecisionNumericFormatter(e,!0);return e=>{if(null===e)return e;const t=i.parse(i.format(e));return t.res?t.value:null}}},74343:(e,i,t)=>{t.d(i,{basePriceSources:()=>d,createPriceSourceDefinition:()=>u});var o=t(11542),n=t(14139),r=t(64147),l=t(32097),s=t(23869),a=t(68805);const c=o.t(null,void 0,t(84684)),d=[{title:o.t(null,void 0,t(16610)),value:"open",id:"price-source-open"},{title:o.t(null,void 0,t(78254)),value:"high",id:"price-source-high"},{title:o.t(null,void 0,t(65318)),value:"low",id:"price-source-low"},{title:o.t(null,void 0,t(62578)),value:"close",id:"price-source-close"},{title:o.t(null,void 0,t(69303)),value:"hl2",id:"price-source-hl2"},{title:o.t(null,void 0,t(27311)),value:"hlc3",id:"price-source-hlc3"},{title:o.t(null,void 0,t(4348)),value:"ohlc4",id:"price-source-ohlc4"}];function u(e,i,t,o,d,u){const p=void 0,h=(0,s.createWVFromGetterAndSubscriptions)((()=>!(0,a.isCloseBasedSymbol)(e.mainSeries().symbolInfo())),[e.mainSeries().dataEvents().symbolResolved(),e.mainSeries().dataEvents().symbolError()]);return(0,n.createOptionsPropertyDefinition)({disabled:p&&(0,l.convertFromReadonlyWVToDefinitionProperty)(p.weakReference()),option:(0,l.convertToDefinitionProperty)(e,i.priceSource,u),visible:(0,l.convertFromReadonlyWVToDefinitionProperty)(h.ownership())},{id:`${o}${d}`,title:c,options:new r.WatchedValue(t)})}},18653:(e,i,t)=>{t.d(i,{getSeriesStylePropertiesDefinitions:()=>Pe});var o=t(11542),n=t(45126),r=t(32097),l=(t(20596),t(64147)),s=t(56570),a=t(37265),c=t(52305),d=t(91682),u=t(74343);const p=new n.TranslatedString("change line price source",o.t(null,void 0,t(41837))),h=new n.TranslatedString("change line color",o.t(null,void 0,t(88640))),y=new n.TranslatedString("change line width",o.t(null,void 0,t(48339))),f=o.t(null,void 0,t(3554));function v(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolLinePriceSource",p),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.color,null,h),gradientColor1:i.gradientStartColor&&(0,r.getColorDefinitionProperty)(e,i.gradientStartColor,null,h),gradientColor2:i.gradientEndColor&&(0,r.getColorDefinitionProperty)(e,i.gradientEndColor,null,h),type:i.colorType&&(0,r.convertToDefinitionProperty)(e,i.colorType,h),width:(0,r.convertToDefinitionProperty)(e,i.linewidth,y)},{id:`${o}SymbolLineStyle`,title:f})]}
|
||||
const g=new n.TranslatedString("change color bars based on previous close",o.t(null,void 0,t(43090))),S=new n.TranslatedString("change HLC bars",o.t(null,void 0,t(27068))),b=new n.TranslatedString("change bar up color",o.t(null,void 0,t(33464))),w=new n.TranslatedString("change bar down color",o.t(null,void 0,t(59622))),P=new n.TranslatedString("change thin bars",o.t(null,void 0,t(60834))),m=new n.TranslatedString("change area price source",o.t(null,void 0,t(4640))),T=new n.TranslatedString("change area line color",o.t(null,void 0,t(29605))),D=new n.TranslatedString("change area line width",o.t(null,void 0,t(89346))),C=new n.TranslatedString("change area fill color",o.t(null,void 0,t(86866))),_=new n.TranslatedString("change baseline price source",o.t(null,void 0,t(68609))),k=new n.TranslatedString("change baseline top line color",o.t(null,void 0,t(69044))),W=new n.TranslatedString("change baseline top line width",o.t(null,void 0,t(68197))),M=new n.TranslatedString("change baseline bottom line color",o.t(null,void 0,t(71785))),$=new n.TranslatedString("change baseline bottom line width",o.t(null,void 0,t(56175))),V=new n.TranslatedString("change baseline fill top area color",o.t(null,void 0,t(92873))),L=new n.TranslatedString("change baseline fill bottom area color",o.t(null,void 0,t(97216))),I=new n.TranslatedString("change base level",o.t(null,void 0,t(42190))),O=new n.TranslatedString("change high-low body visibility",o.t(null,void 0,t(73021))),E=new n.TranslatedString("change high-low body color",o.t(null,void 0,t(6026))),B=new n.TranslatedString("change high-low borders visibility",o.t(null,void 0,t(15801))),x=new n.TranslatedString("change high-low border color",o.t(null,void 0,t(46844))),A=new n.TranslatedString("change high-low labels visibility",o.t(null,void 0,t(72399))),F=new n.TranslatedString("change high-low labels color",o.t(null,void 0,t(56961))),N=(new n.TranslatedString("change renko wick visibility",o.t(null,void 0,t(79604))),new n.TranslatedString("change renko wick up color",o.t(null,void 0,t(92277))),new n.TranslatedString("change renko wick down color",o.t(null,void 0,t(75487))),new n.TranslatedString("change the display of real prices on price scale (instead of Heiken-Ashi price)",o.t(null,void 0,t(16660))),new n.TranslatedString("change range thin bars",o.t(null,void 0,t(65821))),new n.TranslatedString("change range bars style",o.t(null,void 0,t(16241))),
|
||||
new n.TranslatedString("change {candleType} body visibility",o.t(null,void 0,t(60608)))),H=new n.TranslatedString("change {candleType} up color",o.t(null,void 0,t(36697))),R=new n.TranslatedString("change {candleType} down color",o.t(null,void 0,t(64571))),U=new n.TranslatedString("change {candleType} border visibility",o.t(null,void 0,t(11114))),j=new n.TranslatedString("change {candleType} up border color",o.t(null,void 0,t(17214))),z=new n.TranslatedString("change {candleType} down border color",o.t(null,void 0,t(20291))),G=new n.TranslatedString("change {candleType} wick visibility",o.t(null,void 0,t(94750))),J=new n.TranslatedString("change {candleType} wick up color",o.t(null,void 0,t(47664))),q=new n.TranslatedString("change {candleType} wick down color",o.t(null,void 0,t(48091))),K=(new n.TranslatedString("change {chartType} up color",o.t(null,void 0,t(6970))),new n.TranslatedString("change {chartType} down color",o.t(null,void 0,t(5012))),new n.TranslatedString("change {chartType} projection bar up color",o.t(null,void 0,t(85032))),new n.TranslatedString("change {chartType} projection bar down color",o.t(null,void 0,t(72545))),new n.TranslatedString("change {chartType} border bar up color",o.t(null,void 0,t(28394))),new n.TranslatedString("change {chartType} border bar down color",o.t(null,void 0,t(23053))),new n.TranslatedString("change {chartType} projection border bar up color",o.t(null,void 0,t(42826))),new n.TranslatedString("change {chartType} projection border bar up color",o.t(null,void 0,t(42826))),new n.TranslatedString("change column up color",o.t(null,void 0,t(88324)))),Q=new n.TranslatedString("change column down color",o.t(null,void 0,t(93890))),X=new n.TranslatedString("change column price source",o.t(null,void 0,t(4727))),Y=o.t(null,void 0,t(23111)),Z=o.t(null,void 0,t(886)),ee=o.t(null,void 0,t(23091)),ie=o.t(null,void 0,t(23743)),te=o.t(null,void 0,t(20215)),oe=o.t(null,void 0,t(74406)),ne=o.t(null,void 0,t(333)),re=o.t(null,void 0,t(32163)),le=o.t(null,void 0,t(3554)),se=o.t(null,void 0,t(89349)),ae=o.t(null,void 0,t(3159)),ce=o.t(null,void 0,t(41129)),de=o.t(null,void 0,t(61112)),ue=o.t(null,void 0,t(73185)),pe=(o.t(null,void 0,t(36957)),o.t(null,void 0,t(17611)),o.t(null,void 0,t(77430)),o.t(null,void 0,t(73466)),o.t(null,void 0,t(88367)),o.t(null,void 0,t(6160)),o.t(null,void 0,t(28975))),he=o.t(null,void 0,t(74406)),ye=o.t(null,void 0,t(333)),fe=o.t(null,void 0,t(5119)),ve=o.t(null,void 0,t(56359)),ge=o.t(null,void 0,t(84831)),Se=o.t(null,void 0,t(34579));o.t(null,void 0,t(92516)),o.t(null,void 0,t(27377)),o.t(null,void 0,t(45054));function be(e,i,t,o){return(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.barColorsOnPrevClose,g)},{id:`${t}${o}`,title:Y})}function we(e,i,t,o){const n=(0,d.removeSpaces)(t.originalText());return[(0,r.createTwoColorsPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawBody,N.format({candleType:t})),color1:(0,r.getColorDefinitionProperty)(e,i.upColor,null,H.format({candleType:t})),color2:(0,
|
||||
r.getColorDefinitionProperty)(e,i.downColor,null,R.format({candleType:t}))},{id:`${o}Symbol${n}CandlesColor`,title:oe}),(0,r.createTwoColorsPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawBorder,U.format({candleType:t})),color1:(0,r.getColorDefinitionProperty)(e,i.borderUpColor,null,j.format({candleType:t})),color2:(0,r.getColorDefinitionProperty)(e,i.borderDownColor,null,z.format({candleType:t}))},{id:`${o}Symbol${n}BordersColor`,title:ne}),(0,r.createTwoColorsPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawWick,G.format({candleType:t})),color1:(0,r.getColorDefinitionProperty)(e,i.wickUpColor,null,J.format({candleType:t})),color2:(0,r.getColorDefinitionProperty)(e,i.wickDownColor,null,q.format({candleType:t}))},{id:`${o}Symbol${n}WickColors`,title:re})]}function Pe(e,i,d,p,h){switch(d){case 0:return function(e,i,t){return[be(e,i,t,"SymbolBarStyleBarColorsOnPrevClose"),(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.dontDrawOpen,S)},{id:`${t}SymbolDontDrawOpen`,title:Z}),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.upColor,null,b)},{id:`${t}SymbolUpColor`,title:ee}),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.downColor,null,w)},{id:`${t}SymbolDownColor`,title:ie}),(0,r.createCheckablePropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.thinBars,P)},{id:`${t}SymbolBarThinBars`,title:te})].filter(a.isExistent)}(e,i.barStyle.childs(),h);case 1:case 19:return function(e,i,r){return[be(e,i,r,"SymbolCandleStyleBarColorsOnPrevClose"),...we(e,i,new n.TranslatedString("candle",o.t(null,void 0,t(21105))),r)].filter(a.isExistent)}(e,1===d?i.candleStyle.childs():i.volCandlesStyle.childs(),h);case 2:return v(e,i.lineStyle.childs(),p.seriesPriceSources,h);case 14:return v(e,i.lineWithMarkersStyle.childs(),p.seriesPriceSources,h);case 15:return v(e,i.steplineStyle.childs(),p.seriesPriceSources,h);case 3:return function(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolAreaPriceSource",m),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.linecolor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.linewidth,D)},{id:`${o}SymbolAreaLineStyle`,title:le}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.color1,i.transparency,C),color2:(0,r.getColorDefinitionProperty)(e,i.color2,i.transparency,C)},{id:`${o}SymbolAreaFills`,title:ce})]}(e,i.areaStyle.childs(),p.seriesPriceSources,h);case 16:return function(e,i,t,o){return[(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.highLineColor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.highLineWidth,D)},{id:`${o}SymbolHLCAreaHighLineStyle`,title:ve}),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.lowLineColor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.lowLineWidth,D)},{id:`${o}SymbolHLCAreaLowLineStyle`,title:Se}),(0,r.createLinePropertyDefinition)({color:(0,
|
||||
r.getColorDefinitionProperty)(e,i.closeLineColor,null,T),width:(0,r.convertToDefinitionProperty)(e,i.closeLineWidth,D)},{id:`${o}SymbolHLCAreaCloseLineStyle`,title:ge}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.highCloseFillColor,null,C),color2:(0,r.getColorDefinitionProperty)(e,i.closeLowFillColor,null,C)},{id:`${o}SymbolHLCAreaFills`,title:ce})]}(e,i.hlcAreaStyle.childs(),p.seriesPriceSources,h);case 9:return we(e,i.hollowCandleStyle.childs(),new n.TranslatedString("hollow candles",o.t(null,void 0,t(92598))),h);case 10:return function(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolBaseLinePriceSource",_),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.topLineColor,null,k),width:(0,r.convertToDefinitionProperty)(e,i.topLineWidth,W)},{id:`${o}SymbolBaseLineTopLine`,title:se}),(0,r.createLinePropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.bottomLineColor,null,M),width:(0,r.convertToDefinitionProperty)(e,i.bottomLineWidth,$)},{id:`${o}SymbolBaseLineBottomLine`,title:ae}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.topFillColor1,null,V),color2:(0,r.getColorDefinitionProperty)(e,i.topFillColor2,null,V)},{id:`${o}SymbolBaseLineTopFills`,title:de}),(0,r.createTwoColorsPropertyDefinition)({color1:(0,r.getColorDefinitionProperty)(e,i.bottomFillColor1,null,L),color2:(0,r.getColorDefinitionProperty)(e,i.bottomFillColor2,null,L)},{id:`${o}SymbolBaseLineBottomFills`,title:ue}),(0,r.createNumberPropertyDefinition)({value:(0,r.convertToDefinitionProperty)(e,i.baseLevelPercentage,I,[c.floor])},{id:`${o}SymbolBaseLevelPercentage`,title:pe,type:0,min:new l.WatchedValue(0),max:new l.WatchedValue(100),step:new l.WatchedValue(1),unit:new l.WatchedValue("%")})]}(e,i.baselineStyle.childs(),p.seriesPriceSources,h);case 13:return function(e,i,t,o){return[(0,u.createPriceSourceDefinition)(e,i,t,o,"SymbolColumnPriceSource",X),be(e,i,o,"SymbolColumnStyleColumnColorsOnPrevClose"),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.upColor,null,K)},{id:`${o}SymbolUpColor`,title:ee}),(0,r.createColorPropertyDefinition)({color:(0,r.getColorDefinitionProperty)(e,i.downColor,null,Q)},{id:`${o}SymbolDownColor`,title:ie})].filter(a.isExistent)}(e,i.columnStyle.childs(),p.seriesPriceSources,h)}if(12===d&&s.enabled("chart_style_hilo")){return function(e,i,t){return[(0,r.createColorPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.drawBody,O),color:(0,r.getColorDefinitionProperty)(e,i.color,null,E)},{id:`${t}SymbolBodiesColor`,title:he}),(0,r.createColorPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.showBorders,B),color:(0,r.getColorDefinitionProperty)(e,i.borderColor,null,x)},{id:`${t}SymbolBorderColor`,title:ye}),(0,r.createTextPropertyDefinition)({checked:(0,r.convertToDefinitionProperty)(e,i.showLabels,A),color:(0,r.getColorDefinitionProperty)(e,i.labelColor,null,F)},{id:`${t}SymbolLabels`,title:fe,isEditable:!1,isMultiLine:!1})]
|
||||
}(e,i.hiloStyle.childs(),h)}if(!i.hasOwnProperty("haStyle"))return[];if(p.isJapaneseChartsAvailable&&8===d){return function(e,i,r){const l=[];return l.push(be(e,i,r,"SymbolHAStyleBarColorsOnPrevClose"),...we(e,i,new n.TranslatedString("Heikin Ashi",o.t(null,void 0,t(63876))),r)),l}(e,i.haStyle.childs(),h)}return p.isJapaneseChartsAvailable&&s.enabled("japanese_chart_styles"),[]}},64482:(e,i,t)=>{t.d(i,{SeriesPropertyDefinitionsViewModel:()=>N,seriesPrecisionValues:()=>F});var o=t(50151),n=t(9343),r=t(11542),l=t(45126),s=t(56570),a=t(32097),c=t(5171),d=t(64147),u=t(16638),p=t(68805),h=t(18653),y=t(56530),f=t(52305);const v=new l.TranslatedString("change {inputName} property",r.t(null,void 0,t(66110)));function g(e){return e.map((e=>({value:e,title:(0,y.getTranslatedInputTitle)(e)})))}const S=new Set(["percentageLTP"]);function b(e,i,t,n,r,s,c){const u=[];return t.forEach((t=>{if(!function(e,i){return!e.isHidden&&(void 0===e.visible||function(e,i){if(!e)return!0;const t=e.split("==");return!(t.length<2)&&i[t[0]].value()===t[1]}(e.visible,i))}(t,n))return;const h=t.id;if(!n.hasOwnProperty(h))return;const b=n[h],w=function(e,i){return"style"===e.id?"Box size assignment method":"boxSize"===e.id?"Box size":i.childs().name.value()}(t,r[h]),P=(0,y.getTranslatedInputTitle)(w),m=new l.TranslatedString(w,P);if("options"in t){const i=(0,o.ensure)(t.options);u.push((0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P,options:new d.WatchedValue(g(i))}))}else if("integer"!==t.type){if("float"===t.type){let o;return o=function(e,i){return!((i===(0,p.chartStyleStudyId)(4)||i===(0,p.chartStyleStudyId)(6))&&"boxSize"===e||i===(0,p.chartStyleStudyId)(5)&&"reversalAmount"===e)}(h,i)||null===s.value()?new d.WatchedValue(t.min):s,void u.push((0,a.createNumberPropertyDefinition)({value:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P,type:1,min:o,max:new d.WatchedValue(t.max),unit:S.has(t.id)?new d.WatchedValue("%"):void 0,defval:t.defval}))}"text"!==t.type?"bool"!==t.type||u.push((0,a.createCheckablePropertyDefinition)({checked:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P})):u.push((0,a.createTextPropertyDefinition)({text:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}))},{id:`${c}${t.name}`,title:P,isEditable:!0,isMultiLine:!1}))}else u.push((0,a.createNumberPropertyDefinition)({value:(0,a.convertToDefinitionProperty)(e,b,v.format({inputName:m}),[f.floor])},{id:`${c}${t.name}`,title:P,type:0,min:new d.WatchedValue(t.min),max:new d.WatchedValue(t.max),unit:S.has(t.id)?new d.WatchedValue("%"):void 0,defval:t.defval}))})),u}var w=t(14712),P=t(84425),m=t(88960),T=t(95700),D=t(74343);const C=(0,
|
||||
n.getLogger)("Chart.Definitions.Series"),_=s.enabled("pre_post_market_sessions"),k=new l.TranslatedString("change decimal places",r.t(null,void 0,t(82063))),W=new l.TranslatedString("change timezone",r.t(null,void 0,t(20137))),M=(new l.TranslatedString("adjust data for dividends",r.t(null,void 0,t(18077))),new l.TranslatedString("use settlement as close on daily interval",r.t(null,void 0,t(92978))),new l.TranslatedString("adjust for contract changes",r.t(null,void 0,t(1433))),new l.TranslatedString("change session",r.t(null,void 0,t(87041)))),$=new l.TranslatedString("change extended hours color",r.t(null,void 0,t(44223))),V=new l.TranslatedString("change pre market color",r.t(null,void 0,t(44371))),L=new l.TranslatedString("change post market color",r.t(null,void 0,t(38730))),I=(new l.TranslatedString("change electronic trading hours",r.t(null,void 0,t(47393))),r.t(null,void 0,t(93020)),r.t(null,void 0,t(94031))),O=(r.t(null,void 0,t(68921)),r.t(null,void 0,t(49545)),r.t(null,void 0,t(88327))),E=(r.t(null,void 0,t(59777)),r.t(null,void 0,t(59766))),B=r.t(null,void 0,t(77073)),x=r.t(null,void 0,t(16564)),A=[{priceScale:2,minMove:1,frac:!0},{priceScale:4,minMove:1,frac:!0},{priceScale:8,minMove:1,frac:!0},{priceScale:16,minMove:1,frac:!0},{priceScale:32,minMove:1,frac:!0},{priceScale:64,minMove:1,frac:!0},{priceScale:128,minMove:1,frac:!0},{priceScale:320,minMove:1,frac:!0}];function F(){const e=[{title:x,value:"default"}],i=function(e=15){const i=[];for(let t=0;t<=e;t++)i.push({priceScale:Math.pow(10,t),minMove:1,frac:!1});return i}();for(let o=0;o<i.length;o++){const n=Math.log10(i[o].priceScale),l=0===n?r.t(null,void 0,t(47326)):r.t(null,{plural:"{value} decimals",count:n,replace:{value:n.toString()}},t(59644));e.push({title:l,value:`${i[o].priceScale},${i[o].minMove},${i[o].frac}`})}for(let i=0;i<A.length;i++)e.push({title:`${A[i].minMove}/${A[i].priceScale}`,value:`${A[i].priceScale},${A[i].minMove},${A[i].frac}`});return e}class N{constructor(e,i,t,o,n,r){this._definitions=null,this._inputsSubscriptions=null,this._isDestroyed=!1,this._propertyPages=null,this._seriesMinTickWV=null,this._sessionIdOptionsWV=new d.WatchedValue([]),this._series=e,this._undoModel=i,this._model=this._undoModel.model(),this._propertyPageId=t,this._propertyPageName=o,this._propertyPageIcon=n,this._timezonePropertyObj=r,this._series.onStyleChanged().subscribe(this,this._updateDefinitions),this._series.properties().childs().rangeStyle.childs().barStyle.subscribe(this,this._updateDefinitions),this._series.dataEvents().symbolResolved().subscribe(this,this._updateSeriesMinTickWV),this._series.dataEvents().symbolResolved().subscribe(this,this._updateSessionIdOptionsWV),this._updateSeriesMinTickWV(),this._updateSessionIdOptionsWV()}destroy(){null!==this._propertyPages&&this._propertyPages.forEach((e=>{(0,a.destroyDefinitions)(e.definitions.value())})),this._series.onStyleChanged().unsubscribe(this,this._updateDefinitions),this._series.properties().childs().rangeStyle.childs().barStyle.unsubscribeAll(this),
|
||||
this._series.dataEvents().symbolResolved().unsubscribeAll(this),this._unsubscribeInputsUpdate(),this._isDestroyed=!0}propertyPages(){return null===this._propertyPages?this._getDefinitions().then((e=>{if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed");return null===this._propertyPages&&(this._propertyPages=[{id:this._propertyPageId,title:this._propertyPageName,icon:this._propertyPageIcon,definitions:new d.WatchedValue(e.definitions),visible:e.visible??new d.WatchedValue(!0).readonly()}]),this._propertyPages})):Promise.resolve(this._propertyPages)}_seriesMinTick(){const e=this._series.symbolInfo();return null!==e?e.minmov/e.pricescale:null}_updateSeriesMinTickWV(){null===this._seriesMinTickWV?this._seriesMinTickWV=new d.WatchedValue(this._seriesMinTick()):this._seriesMinTickWV.setValue(this._seriesMinTick())}_updateSessionIdOptionsWV(){if(!_)return;const e=this._series.symbolInfo();if(null===e)return;const i=(e.subsessions||[]).filter((e=>!e.private)).map((e=>({title:(0,T.translateSessionDescription)(e.description),value:e.id})));this._sessionIdOptionsWV.setValue(i)}_updateDefinitions(){null!==this._definitions&&(0,a.destroyDefinitions)(this._definitions.definitions),this._definitions=null,this._createSeriesDefinitions().then((e=>{if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed");(0,o.ensureNotNull)(this._propertyPages)[0].definitions.setValue(e.definitions)}))}_getDefinitions(){return null===this._definitions?this._createSeriesDefinitions():Promise.resolve(this._definitions)}_unsubscribeInputsUpdate(){null!==this._inputsSubscriptions&&(this._inputsSubscriptions.forEach((e=>{e.unsubscribeAll(this)})),this._inputsSubscriptions=null)}_subscribeInputsUpdate(e,i){this._unsubscribeInputsUpdate();const t=[];e.forEach((e=>{if(void 0!==e.visible){const o=e.visible.split("==");if(2===o.length){const e=i[o[0]];-1===t.indexOf(e)&&(e.subscribe(this,this._updateDefinitions),t.push(e))}}})),t.length>0?this._inputsSubscriptions=t:this._inputsSubscriptions=null}async _createSeriesDefinitions(){const e=this._series.properties().childs(),i=this._series.getInputsProperties(),n=this._series.getInputsInfoProperties(),l=e.style.value(),s=this._series.getStyleShortName(),y=c.chartStylesWithAttachedStudies.includes(l)?null:(0,p.chartStyleStudyId)(l);let f,v=null;if(null!==y){let e;try{e=await(0,u.studyMetaInfoRepository)().findById({type:"java",studyId:y});const t=(0,o.ensureNotNull)(this._seriesMinTickWV);v=b(this._undoModel,e.id,e.inputs,i,n,t,s),this._subscribeInputsUpdate(e.inputs,i)}catch(i){C.logWarn(`Find meta info for create series definitions with error - ${(0,w.errorToString)(i)}`),e=null}if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed")}else this._unsubscribeInputsUpdate();if(this._isDestroyed)throw new Error("SeriesPropertyDefinitionsViewModel already destroyed");if(c.chartStylesWithAttachedStudies.includes(l))throw new Error("unexpected chart style");{const i=(0,
|
||||
h.getSeriesStylePropertiesDefinitions)(this._undoModel,e,l,{seriesPriceSources:D.basePriceSources,isJapaneseChartsAvailable:true},"mainSeries");null!==v&&i.push(...v),f=(0,a.createPropertyDefinitionsGeneralGroup)(i,"generalSymbolStylesGroup",(0,p.getTranslatedChartStyleName)(l))}const g=(0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(this._undoModel,e.minTick,k),visible:(0,a.convertFromReadonlyWVToDefinitionProperty)(new d.WatchedValue(!0).ownership())},{id:`${s}SymbolMinTick`,title:E,options:new d.WatchedValue(F())}),S=(0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(this._undoModel,this._timezonePropertyObj.property,W)},{id:`${s}SymbolTimezone`,title:B,options:new d.WatchedValue(this._timezonePropertyObj.values)});return this._definitions={definitions:[f,(0,a.createPropertyDefinitionsGeneralGroup)([...await this._seriesDataDefinitions(s),g,S],"dataModififcationGroup",r.t(null,void 0,t(48225)))]},this._definitions}async _seriesDataDefinitions(e){const i=[];if(_){const t=this._series.sessionIdProxyProperty(),o=(0,m.combineWithFilteredUpdate)(((e,i)=>!i&&(0,p.symbolHasSeveralSessions)(this._series.symbolInfo())),((e,i)=>i||!e),this._series.symbolResolvingActive().weakReference(),(0,P.createWVFromProperty)(this._series.isDWMProperty()).ownership()),n=(0,a.createOptionsPropertyDefinition)({option:(0,a.convertToDefinitionProperty)(this._undoModel,t,M),visible:(0,a.convertFromReadonlyWVToDefinitionProperty)(o.ownership())},{id:"sessionId",title:I,options:this._sessionIdOptionsWV});i.push(n);const r=(await this._model.sessions().promise()).graphicsInfo();let l=!1;r.backgrounds&&(l=void 0!==r.backgrounds.outOfSession);const s=await(l?this._createOutOfSessionDefinition(e):this._createPrePostMarketDefinition(e));i.push(s);const c=this._createElectronicSessionDefinition(e);c&&i.push(c)}return i}_createOutOfSessionDefinition(e){const i=this._model.sessions().properties().childs().sessionHighlight.childs().backgrounds.childs().outOfSession.childs();return(0,a.createColorPropertyDefinition)({color:(0,a.getColorDefinitionProperty)(this._undoModel,i.color,i.transparency,$)},{id:`${e}SymbolExtendedHoursColors`,title:O})}_createPrePostMarketDefinition(e){const i=(0,P.createWVFromGetterAndSubscription)((()=>this._series.symbolInfo()),this._series.dataEvents().symbolResolved()),t=(0,m.combineWithFilteredUpdate)(((e,i)=>!e&&!!i&&(0,p.symbolHasPreOrPostMarket)(i)&&!(0,p.isRegularSessionId)(this._series.sessionIdProxyProperty().value(),i)),((e,i)=>e||!!i),(0,P.createWVFromProperty)(this._series.isDWMProperty()).ownership(),i.ownership()),o=this._model.sessions().properties().childs().sessionHighlight.childs(),n=o.backgrounds.childs().preMarket.childs(),r=o.backgrounds.childs().postMarket.childs();return(0,a.createTwoColorsPropertyDefinition)({color1:(0,a.getColorDefinitionProperty)(this._undoModel,n.color,n.transparency,V),color2:(0,a.getColorDefinitionProperty)(this._undoModel,r.color,r.transparency,L),visible:(0,a.convertFromReadonlyWVToDefinitionProperty)(t.ownership())},{
|
||||
id:`${e}SymbolExtendedHoursColors`,title:O})}_createElectronicSessionDefinition(e){return null}}}}]);
|
||||
@@ -2,5 +2,5 @@
|
||||
const f=new Map([[0,l.green],[1,l.orange],[2,l.blue],[3,l.gray]]),v=new Map([[0,a.t(null,void 0,n(41410))],[1,a.t(null,void 0,n(36018))],[2,a.t(null,void 0,n(73897))],[3,a.t(null,void 0,n(62464))]]),m=a.t(null,void 0,n(63538));var y;function h(e){const{segment:t,forceStart:n,forceEnd:i}=e,a=t.end.value-t.start.value,o=a<.03,u={left:100*t.start.value+"%",width:`calc(${100*a}% + ${o?2:0}px)`},c=r(l.segment,f.get(t.type),(n||t.start.isFirstOrLastPoint)&&l.start,(i||t.end.isFirstOrLastPoint)&&l.end,o&&l.small,"common-tooltip-html","apply-common-tooltip"),d=function(e,t){return`<div class="${l.tooltip}">\n\t\t<span class="${f.get(t)}">${v.get(t)}</span>\n\t\t<span class="${l.time}">${e}</span>\n\t</div>`}(t.tooltip,t.type);return s.createElement("div",{className:c,style:u,"data-tooltip":d})}function D(e){const{sessionDay:t}=e,n=t.entries.map(((e,n)=>s.createElement(h,{key:`${d(e)}Segment`,segment:e,forceStart:0===n&&3===e.type,forceEnd:n===t.entries.length-1&&3===e.type}))),i=r(l.sessionDay,t.isActive&&l.active);return s.createElement("div",{className:i},s.createElement("div",{className:l.weekDay},t.title),s.createElement("div",{className:l.sessionDaySegments},n))}function p(e){const{sessionDays:t,currentTimeMark:n}=e,i=[],a=parseInt(Object.keys(t).filter((e=>t[parseInt(e)].isActive))[0]),o=t[a],u=o.entries.filter((e=>e.start.value<=n&&e.end.value>=n))[0];!u.start.isFirstOrLastPoint&&u.showStartForLastEntry?i.push(o.entries[o.entries.length-1].start):i.push(u.start);const c=!u.end.isFirstOrLastPoint&&u.showEndForFirstEntry?o.entries[0].end:u.end;if(i[0].value!==c.value&&i.push(c),0===i.length)return null;i.sort(((e,t)=>e.value-t.value));const f=i.map((e=>s.createElement("div",{key:d(e),className:l.timeMark},e.title))),v=100*(2===i.length?i[1].value-i[0].value:0),m=r(v>12&&l.timeMarkSegmentAlignByEnds,l.timeMarkSegment);return s.createElement("div",{className:l.sessionDay},s.createElement("div",{className:l.weekDay}),s.createElement("div",{className:l.timeMarkWrapper},s.createElement("div",{className:m,style:{left:100*i[0].value+"%",width:`${v}%`}},f)))}function E(e){const{className:t,timezone:n,showAllDays:i,timeZoneClassName:a}=e,u=(0,o.useWatchedValueReadonly)({watchedValue:e.sessionDays}),c=(0,o.useWatchedValueReadonly)({watchedValue:e.now}),d=Object.values(u).filter((e=>e.isActive))[0],f=r(t,l.wrapper);return s.createElement("div",{className:f},s.createElement("div",{className:l.sessionDayWrapper},i?s.createElement(s.Fragment,null,Object.values(u).map(((e,t)=>s.createElement(D,{key:t,sessionDay:e})))):s.createElement(D,{sessionDay:d}),s.createElement("div",{className:l.nowWrapper},s.createElement("div",{className:l.now,style:{left:100*c+"%"}}))),s.createElement(p,{sessionDays:u,currentTimeMark:c}),s.createElement("div",{className:r(l.timezone,a,i&&l.largePadding)},`${m}: ${n}`))}!function(e){e[e.MinSegmentWidth=12]="MinSegmentWidth",e[e.SmallWidth=.03]="SmallWidth"}(y||(y={}))},53350:(e,t,n)=>{"use strict";n.d(t,{FullSessionScheduleViewModel:()=>ie});var s=n(63950),r=n(37265),i=n(2740),a=n(64147),o=n(68805)
|
||||
;function u(e){return e/i.minutesPerDay}function l(e){return Math.round(e*i.minutesPerDay)}const c=function(e){return e&&e.length?e[0]:void 0};var d,f,v=n(82593),m=n(50151),y=n(18832);!function(e){e[e.SUNDAY=1]="SUNDAY",e[e.MONDAY=2]="MONDAY",e[e.TUESDAY=3]="TUESDAY",e[e.WEDNESDAY=4]="WEDNESDAY",e[e.THURSDAY=5]="THURSDAY",e[e.FRIDAY=6]="FRIDAY",e[e.SATURDAY=7]="SATURDAY"}(d||(d={})),function(e){e[e.JANUARY=0]="JANUARY",e[e.FEBRUARY=1]="FEBRUARY",e[e.MARCH=2]="MARCH",e[e.APRIL=3]="APRIL",e[e.MAY=4]="MAY",e[e.JUNE=5]="JUNE",e[e.JULY=6]="JULY",e[e.AUGUST=7]="AUGUST",e[e.SEPTEMBER=8]="SEPTEMBER",e[e.OCTOBER=9]="OCTOBER",e[e.NOVEMBER=10]="NOVEMBER",e[e.DECEMBER=11]="DECEMBER"}(f||(f={}));const h=[d.SUNDAY,d.MONDAY,d.TUESDAY,d.WEDNESDAY,d.THURSDAY,d.FRIDAY,d.SATURDAY];function D(e,t){return(e+t+6)%7+1}function p(e){return t=>D(t,e)}const E=p(-1),A=p(1);var g=n(11542);f.JANUARY,g.t(null,void 0,n(200)),f.FEBRUARY,g.t(null,void 0,n(81069)),f.MARCH,g.t(null,void 0,n(93878)),f.APRIL,g.t(null,void 0,n(28896)),f.MAY,g.t(null,void 0,n(25734)),f.JUNE,g.t(null,void 0,n(61487)),f.JULY,g.t(null,void 0,n(6608)),f.AUGUST,g.t(null,void 0,n(11081)),f.SEPTEMBER,g.t(null,void 0,n(32179)),f.OCTOBER,g.t(null,void 0,n(37997)),f.NOVEMBER,g.t(null,void 0,n(4607)),f.DECEMBER,g.t(null,void 0,n(90082)),f.JANUARY,g.t(null,void 0,n(62310)),f.FEBRUARY,g.t(null,void 0,n(2507)),f.MARCH,g.t(null,void 0,n(92767)),f.APRIL,g.t(null,void 0,n(27072)),f.MAY,g.t(null,{context:"short"},n(13132)),f.JUNE,g.t(null,void 0,n(429)),f.JULY,g.t(null,void 0,n(53786)),f.AUGUST,g.t(null,void 0,n(46450)),f.SEPTEMBER,g.t(null,void 0,n(6816)),f.OCTOBER,g.t(null,void 0,n(12179)),f.NOVEMBER,g.t(null,void 0,n(26899)),f.DECEMBER,g.t(null,void 0,n(32084)),d.SUNDAY,g.t(null,void 0,n(61480)),d.MONDAY,g.t(null,void 0,n(19573)),d.TUESDAY,g.t(null,void 0,n(82160)),d.WEDNESDAY,g.t(null,void 0,n(94226)),d.THURSDAY,g.t(null,void 0,n(79137)),d.FRIDAY,g.t(null,void 0,n(3570)),d.SATURDAY,g.t(null,void 0,n(30348));const S={[d.SUNDAY]:g.t(null,void 0,n(77493)),[d.MONDAY]:g.t(null,void 0,n(37150)),[d.TUESDAY]:g.t(null,void 0,n(11916)),[d.WEDNESDAY]:g.t(null,void 0,n(11532)),[d.THURSDAY]:g.t(null,void 0,n(71388)),[d.FRIDAY]:g.t(null,void 0,n(22928)),[d.SATURDAY]:g.t(null,void 0,n(32273))};d.SUNDAY,g.t(null,{context:"day_of_week"},n(75005)),d.MONDAY,g.t(null,{context:"day_of_week"},n(30961)),d.TUESDAY,g.t(null,{context:"day_of_week"},n(9135)),d.WEDNESDAY,g.t(null,{context:"day_of_week"},n(92578)),d.THURSDAY,g.t(null,{context:"day_of_week"},n(8765)),d.FRIDAY,g.t(null,{context:"day_of_week"},n(97349)),d.SATURDAY,g.t(null,{context:"day_of_week"},n(94748));var w=n(58683);function k(e){for((0,m.assert)(Number.isInteger(e),"timeMinutes expected to be integer number");e>i.minutesPerDay;)e-=i.minutesPerDay;const t=e%60,n=(e-t)/60;return(0,w.numberToStringWithLeadingZero)(n,2)+":"+(0,w.numberToStringWithLeadingZero)(t,2)}function P(e,t){return`${e} — ${t}`}function R(e,t){return`${S[e]} ${k(t)}`}function M(e,t,n,s){(0,
|
||||
m.assert)(t!==i.minutesPerDay,"Start time expected to be normalized (24:00 as range start is not allowed)"),(0,m.assert)(0!==s,"End time expected to be normalized (00:00 as range end is not allowed)");const r=function(e,t,n,s){const r=e*i.minutesPerDay+t;let a=n*i.minutesPerDay+s;return a<r&&(a+=7*i.minutesPerDay),a-r}(e,t,n,s);return r<i.minutesPerDay||r===i.minutesPerDay&&0===t?function(e,t){return P(k(e),k(t))}(t,s):function(e,t,n,s){return P(R(e,t),R(n,s))}(e,t,n,s)}function Y(e,t,n,s){return{start:e,end:t,type:n,tooltip:s,showStartForLastEntry:!1,showEndForFirstEntry:!1}}function U(e){return{value:e,title:k(l(e)),isFirstOrLastPoint:!0}}function T(e){return 3!==e.type}function N(e,t){return{dayIndex:e,entries:t.filter(T)}}function _(e,t,n,s=t){const r=n(t),i=e[r];return r!==s&&0===i.entries.length?_(e,r,n,s):N(r,e[r].entries)}function L(e){return(t,n)=>_(t,n,e)}const x=L(E),I=L(A);function b(e,t,n,s){return(r,i,a)=>void 0===r?[s,a]:r===e?[t,n(i)]:[r,i]}const O=b(1,0,A,0),F=b(0,1,E,1);function W(e,t,n,s,r){const[i,a]=O(e,t,r),[o,u]=F(n,s,r);(0,m.assert)(t!==n||i<o,`Days are same (${t}) but prev entry time (${i}) >= next entry time (${o})`);const c=l(i),d=l(o);return Y(U(a!==r?0:i),U(u!==r?1:o),3,M(a,c,u,d))}function B(e,t,n,s,r){return W(e?.end?.value,t,n?.start?.value,s,r)}function C(e){const t=[...e.entries];for(let n=1;n<e.entries.length;n++){const s=e.entries[n-1],r=e.entries[n];if(r.start.value!==s.end.value){const n=B(s,e.dayIndex,r,e.dayIndex,e.dayIndex);t.push(n)}}return t.sort(((e,t)=>e.start.value-t.start.value)),t}function V(e,t){const n=(0,v.default)(t.entries),s=t.dayIndex,r=(0,m.ensureDefined)(c(e.entries));return 0===r.start.value?[]:[B(n,s,r,e.dayIndex,e.dayIndex)]}function $(e,t){const n=c(t.entries),s=t.dayIndex,r=(0,m.ensureDefined)((0,v.default)(e.entries));return 1===r.end.value?[]:[B(r,e.dayIndex,n,s,e.dayIndex)]}function z(e,t){const n={thisDay:N(e,t[e].entries),prevDay:x(t,e),nextDay:I(t,e)};return function({thisDay:e,prevDay:t,nextDay:n}){if(0===e.entries.length)return[B((0,v.default)(t.entries),t.dayIndex,c(n.entries),n.dayIndex,e.dayIndex)]}(n)??function({thisDay:e,prevDay:t,nextDay:n}){const s=e.dayIndex;if(t.dayIndex!==s||n.dayIndex!==s)return;const i=e.entries,a=(0,m.ensureDefined)(c(i)),o=(0,m.ensureDefined)((0,v.default)(i));return[0!==a.start.value?W(0,s,a.start.value,s,s):void 0,...C(e),1!==o.end.value?W(o.end.value,s,1,s,s):void 0].filter(r.isExistent)}(n)??function(e){return[...V(e.thisDay,e.prevDay),...C(e.thisDay),...$(e.thisDay,e.nextDay)]}(n)}function H(e,t,n,s){const[r,i]=e[t],a=u(r),o=u(i),l=U(a),c=U(o);return 0===t&&e.length>1&&(c.isFirstOrLastPoint=!1),1===t&&e.length>1&&(l.isFirstOrLastPoint=!1),Y(l,c,n,s)}function J(e,t,n,s){const r=e,a=t+n,o=[],l=t,d=Math.min(i.minutesPerDay,a),f=[[l,d]];let y;if(o.push(r),a>d){y=D(r,Math.ceil((a-d)/i.minutesPerDay));const e=[0,a%i.minutesPerDay];f.push(e),o.push(y)}const h=function(e,t,n){const s=(0,m.ensureDefined)(c(e))[0],r=(0,m.ensureDefined)((0,v.default)(e))[1];if(void 0===n){const a=e.map((e=>e[1]-e[0])).reduce(((e,t)=>e+t))
|
||||
;n=r===i.minutesPerDay?t:D(t,Math.floor(u(s+a)))}return M(t,s,n,r)}(f,r,y),p=[];for(let e=0;e<f.length;e++){const t=H(f,e,s,h);p.push([t,o[e]])}return p}var j=n(17326);const Z=function(e){for(var t=-1,n=null==e?0:e.length,s={};++t<n;){var r=e[t];s[r[0]]=r[1]}return s}(h.map((e=>[e,{title:S[e],isActive:!1,entries:[]}])));function G(e){return(t,n)=>{return s=(0,m.ensureDefined)(e(t)),r=(0,m.ensureDefined)(e(n)),s.start.value===r.start.value&&s.end.value===r.end.value;var s,r}}const q=G(c),K=G(v.default);function Q(e,t){return J(e.sessionStartDayOfWeek(),e.start(),e.length(),t)}function X(e,t){t.forEach((t=>function(e,t,n){const s=e[n].entries;s.push(t),s.sort(((e,t)=>e.start.value-t.start.value))}(e,t[0],t[1])))}function ee(e,t,n){for(const s of t){X(e,Q(s,n))}}function te(e,t){return e.type===t.type&&(3===e.type||t.end.value-t.start.value+e.end.value-e.start.value<=1)}function ne(e,t){const n=function(e){if(null===e)return new Map;if(void 0===e.subsessions)return new Map([[0,new j.SessionsSpec(e.timezone,e.session,e.session_holidays,e.corrections)]]);const t="regular",n="premarket",s="postmarket",r=[t,n,s],i=new Map;for(const a of r){let r=null;switch(a){case t:r=0;break;case n:r=1;break;case s:r=2}if(null!==r){const t=e.subsessions.find((e=>e.id===a));void 0!==t&&i.set(r,new j.SessionsSpec(e.timezone,t["session-display"]||t.session,e.session_holidays,t["session-correction"]))}}return i}(e);t=t??(0,i.utc_to_cal)((0,i.get_timezone)(e?.timezone??"Etc/UTC"),Date.now());const s=(t?.getUTCDay()??(new Date).getDay())%7+1;const r=(0,y.deepCopy)(Z);r[s].isActive=!0;for(const e of Array.from(n.keys())){const s=(0,m.ensureDefined)(n.get(e)),i=s.getWeekIndex(t);ee(r,s.getEntriesForWeek(i).list(),e)}return function(e){const t=new Map;for(const n of h)t.set(n,z(n,e));for(const n of h)e[n].entries=(0,m.ensureDefined)(t.get(n))}(r),function(e){for(const t of h){const n=e[t].entries,s=(0,m.ensureDefined)(c(n));te(s,(0,m.ensureDefined)((0,v.default)(e[E(t)].entries)))&&(s.start.isFirstOrLastPoint=!1);const r=(0,m.ensureDefined)((0,v.default)(n));te(r,(0,m.ensureDefined)(c(e[A(t)].entries)))&&(r.end.isFirstOrLastPoint=!1)}}(r),function(e){for(const t of h){const n=e[t].entries;if(1===n.length)continue;const s=E(t),r=A(t),i=(0,m.ensureDefined)((0,v.default)(n)),a=(0,m.ensureDefined)(c(n));a.start.isFirstOrLastPoint||(a.showStartForLastEntry=K(n,e[s].entries)),i.end.isFirstOrLastPoint||(i.showEndForFirstEntry=q(n,e[r].entries))}}(r),{newSessionsDays:r,newTodaySession:r[s]}}var se;function re(e){return(0,i.get_cal_from_unix_timestamp_ms)((0,i.get_timezone)(e.timezone),window.ChartApiInstance.serverTime()-1e3*(0,o.getSymbolDelaySeconds)(e))}!function(e){e[e.Regular=0]="Regular",e[e.Pre=1]="Pre",e[e.Post=2]="Post",e[e.Close=3]="Close"}(se||(se={}));class ie{constructor(e){this.sessionsDays=new a.WatchedValue((0,r.clone)(Z)),this.todaySession=new a.WatchedValue((0,r.clone)({entries:[]})),this._currentTime=new a.WatchedValue(-1),this._symbolInfo=e.symbolInfo().spawn(),this._symbolInfo.subscribe(this._updateEntriesBySubSessions.bind(this),{
|
||||
callWithLast:!0}),this._timeIntervalId=setInterval(this._updateTodayWithOffsets.bind(this),6e4)}destroy(){this._symbolInfo.destroy(),clearInterval(this._timeIntervalId)}currentTimeValue(){return this._currentTime.readonly()}timezone(){const e=this._symbolInfo.value();return null===e?"":(0,s.timezoneTitle)(e.timezone)}_updateEntriesBySubSessions(e){this._updateTodayWithOffsets();const{newSessionsDays:t,newTodaySession:n}=ne(e,null===e?null:re(e));this.sessionsDays.setValue(t),this.todaySession.setValue(n)}_updateTodayWithOffsets(){const e=this._symbolInfo.value();if(null===e)return void this._currentTime.setValue(-1);const t=this._currentTime.value(),n=u((0,i.get_minutes_from_midnight)(re(e)));this._currentTime.setValue(n),n<t&&this._updateEntriesBySubSessions(e)}}},92315:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M9 14A5 5 0 1 0 9 4a5 5 0 0 0 0 10Zm3-4H6V8h6v2Z"/></svg>'}}]);
|
||||
;n=r===i.minutesPerDay?t:D(t,Math.floor(u(s+a)))}return M(t,s,n,r)}(f,r,y),p=[];for(let e=0;e<f.length;e++){const t=H(f,e,s,h);p.push([t,o[e]])}return p}var j=n(17326);const Z=function(e){for(var t=-1,n=null==e?0:e.length,s={};++t<n;){var r=e[t];s[r[0]]=r[1]}return s}(h.map((e=>[e,{title:S[e],isActive:!1,entries:[]}])));function G(e){return(t,n)=>{return s=(0,m.ensureDefined)(e(t)),r=(0,m.ensureDefined)(e(n)),s.start.value===r.start.value&&s.end.value===r.end.value;var s,r}}const q=G(c),K=G(v.default);function Q(e,t){return J(e.sessionStartDayOfWeek(),e.start(),e.length(),t)}function X(e,t){t.forEach((t=>function(e,t,n){const s=e[n].entries;s.push(t),s.sort(((e,t)=>e.start.value-t.start.value))}(e,t[0],t[1])))}function ee(e,t,n){for(const s of t){X(e,Q(s,n))}}function te(e,t){return e.type===t.type&&(3===e.type||t.end.value-t.start.value+e.end.value-e.start.value<=1)}function ne(e,t){const n=function(e){if(null===e)return new Map;if(void 0===e.subsessions)return new Map([[0,new j.SessionsSpec(e.timezone,e.session_display??e.session,e.session_holidays,e.corrections)]]);const t="regular",n="premarket",s="postmarket",r=[t,n,s],i=new Map;for(const a of r){let r=null;switch(a){case t:r=0;break;case n:r=1;break;case s:r=2}if(null!==r){const t=e.subsessions.find((e=>e.id===a));void 0!==t&&i.set(r,new j.SessionsSpec(e.timezone,t["session-display"]||t.session,e.session_holidays,t["session-correction"]))}}return i}(e);t=t??(0,i.utc_to_cal)((0,i.get_timezone)(e?.timezone??"Etc/UTC"),Date.now());const s=(t?.getUTCDay()??(new Date).getDay())%7+1;const r=(0,y.deepCopy)(Z);r[s].isActive=!0;for(const e of Array.from(n.keys())){const s=(0,m.ensureDefined)(n.get(e)),i=s.getWeekIndex(t);ee(r,s.getEntriesForWeek(i).list(),e)}return function(e){const t=new Map;for(const n of h)t.set(n,z(n,e));for(const n of h)e[n].entries=(0,m.ensureDefined)(t.get(n))}(r),function(e){for(const t of h){const n=e[t].entries,s=(0,m.ensureDefined)(c(n));te(s,(0,m.ensureDefined)((0,v.default)(e[E(t)].entries)))&&(s.start.isFirstOrLastPoint=!1);const r=(0,m.ensureDefined)((0,v.default)(n));te(r,(0,m.ensureDefined)(c(e[A(t)].entries)))&&(r.end.isFirstOrLastPoint=!1)}}(r),function(e){for(const t of h){const n=e[t].entries;if(1===n.length)continue;const s=E(t),r=A(t),i=(0,m.ensureDefined)((0,v.default)(n)),a=(0,m.ensureDefined)(c(n));a.start.isFirstOrLastPoint||(a.showStartForLastEntry=K(n,e[s].entries)),i.end.isFirstOrLastPoint||(i.showEndForFirstEntry=q(n,e[r].entries))}}(r),{newSessionsDays:r,newTodaySession:r[s]}}var se;function re(e){return(0,i.get_cal_from_unix_timestamp_ms)((0,i.get_timezone)(e.timezone),window.ChartApiInstance.serverTime()-1e3*(0,o.getSymbolDelaySeconds)(e))}!function(e){e[e.Regular=0]="Regular",e[e.Pre=1]="Pre",e[e.Post=2]="Post",e[e.Close=3]="Close"}(se||(se={}));class ie{constructor(e){this.sessionsDays=new a.WatchedValue((0,r.clone)(Z)),this.todaySession=new a.WatchedValue((0,r.clone)({entries:[]})),this._currentTime=new a.WatchedValue(-1),this._symbolInfo=e.symbolInfo().spawn(),
|
||||
this._symbolInfo.subscribe(this._updateEntriesBySubSessions.bind(this),{callWithLast:!0}),this._timeIntervalId=setInterval(this._updateTodayWithOffsets.bind(this),6e4)}destroy(){this._symbolInfo.destroy(),clearInterval(this._timeIntervalId)}currentTimeValue(){return this._currentTime.readonly()}timezone(){const e=this._symbolInfo.value();return null===e?"":(0,s.timezoneTitle)(e.timezone)}_updateEntriesBySubSessions(e){this._updateTodayWithOffsets();const{newSessionsDays:t,newTodaySession:n}=ne(e,null===e?null:re(e));this.sessionsDays.setValue(t),this.todaySession.setValue(n)}_updateTodayWithOffsets(){const e=this._symbolInfo.value();if(null===e)return void this._currentTime.setValue(-1);const t=this._currentTime.value(),n=u((0,i.get_minutes_from_midnight)(re(e)));this._currentTime.setValue(n),n<t&&this._updateEntriesBySubSessions(e)}}},92315:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M9 14A5 5 0 1 0 9 4a5 5 0 0 0 0 10Zm3-4H6V8h6v2Z"/></svg>'}}]);
|
||||
@@ -1,6 +1,6 @@
|
||||
"use strict";(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[9116,1277],{32211:(e,t,i)=>{i.d(t,{InplaceTextLineSourcePaneView:()=>_,inplaceEditHandlers:()=>u});var n=i(50151),o=i(11542),s=i(19063),r=i(91676),a=i(27916),l=i(56468),d=i(69186),h=i(72791);const c=o.t(null,void 0,i(6060));function u(e){const t=(t,i)=>{i.sourceWasSelected&&e(t)};return{areaName:l.AreaName.Text,executeDefaultAction:{doubleClickHandler:!0,doubleTapHandler:!0},clickHandler:t,tapHandler:t}}class _ extends a.LineSourcePaneView{constructor(e,t,i,n,o){super(e,t),this._textInfo=new r.WatchedObject({}),this._isTextEditModeActivated=!1,this._textWasEdited=!1,this._showTextEditor=i,this._hideTextEditor=n,this._onSelectionChangeCb=o,this._editableTextSpawn=this._source.editableText().spawn(),this._editableTextSpawn.subscribe((()=>this._updateTextWasEditable()))}destroy(){this._editableTextSpawn.destroy()}setSelectionRange(e){this._selectionRange=e}closeTextEditor(){this._textWasEdited=!1,this._isTextEditModeActivated=!1,this._hideTextEditor?.()}_placeHolderMode(e){return!this._isTextEditMode()&&this._model.hoveredSource()===this._source&&0===this._model.hoveredSourceOrigin()&&(!e||this._model.lastHittestData()?.areaName!==l.AreaName.AnchorPoint)&&!(0,d.lastMouseOrTouchEventInfo)().isTouch&&!this._source.editableTextProperties().text.value()&&this._model.selection().isSelected(this._source)}_updateTextWasEditable(){this._textWasEdited=!0}_textCursorType(){return this._model.selection().isSelected(this._source)&&!this._model.sourcesBeingMoved().includes(this._source)?h.PaneCursorType.Text:void 0}_updateInplaceText(e){this._textInfo.setValue(e),this._model.selection().isSelected(this._source)||this.closeTextEditor();const t=this._source.textEditingEl();t&&this._activateEditMode(t)}_tryActivateEditMode(e,t){const i=(0,n.ensureNotNull)(t.target instanceof HTMLElement?t.target.closest(".chart-gui-wrapper"):null);this._activateEditMode(i)}_isTextEditMode(){return this._isTextEditModeActivated}_textData(){return this._text()||(this._textWasEdited?"":c)}_textColor(){const e=this._source.editableTextProperties().textColor.value();return this._text()?e:(0,s.generateColor)(e,50,!0)}_inplaceTextHighlight(){const e=this._source.editableTextStyle();return this._selectionRange?{selectionHighlight:{start:this._selectionRange[0],end:this._selectionRange[1],color:(0,s.generateColor)(e.selectionColor,80,!0)}}:{}}_activateEditMode(e){this._showTextEditor?.(e,this._textInfo,c,this.closeTextEditor.bind(this),(e=>this._onSelectionChangeCb?.(e))),this._isTextEditModeActivated=!0}_text(){return this._isTextEditMode()?this._source.editableText().value():this._source.editableTextProperties().text.value()}}},24362:(e,t,i)=>{i.d(t,{InplaceTextLineDataSource:()=>b,InplaceTextUndoCommand:()=>P});var n=i(50279),o=i(50151),s=i(86441),r=i(19625),a=i(24377),l=i(11542),d=i(45126),h=i(88960),c=i(64147),u=i(60265),_=i(29875),p=i(44672),x=i(85719);const g={selectionColor:(0,r.getHexColorByName)("color-tv-blue-500"),cursorColor:(0,r.getHexColorByName)("color-black")
|
||||
},T={selectionColor:(0,r.getHexColorByName)("color-white"),cursorColor:(0,r.getHexColorByName)("color-white")};class P extends u.UndoCommand{constructor(e,t,n,o){super(new d.TranslatedString("change {title} text",l.t(null,void 0,i(57122))).format({title:new d.TranslatedString(t.name(),t.translatedType())}),!0,!x.lineToolsDoNotAffectChartInvalidation),this._sourceId=t.id(),this._model=e,this._oldValue=n,this._newValue=o,this._changeVisibility=!1===t.editableTextProperties().textVisible?.value()}redo(){const e=this._source();this._textProperty(e).setValue(this._newValue),this._changeVisibility&&this._textVisibilityProperty(e)?.setValue(!0)}undo(){const e=this._source();this._textProperty(e).setValue(this._oldValue),this._changeVisibility&&this._textVisibilityProperty(e)?.setValue(!1)}_textProperty(e){return e.editableTextProperties().text}_textVisibilityProperty(e){return e.editableTextProperties().textVisible}_source(){return(0,o.ensureNotNull)(this._model.dataSourceForId(this._sourceId))}}class b extends _.LineDataSource{constructor(e,t,n,o){super(e,t,n,o),this._container=null,this._editableText=new c.WatchedValue(""),this._activateTextEditingEl=null,this._paneView=null,this._selectionData={},this._cursorPaneView=null,this._cursorPosition=null,this._editingOnCreation=!1,this._editingActivationTime=null,this._editableText.subscribe((()=>{this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id()))})),this._isDarkBackground=(0,h.combine)(((e,t)=>{if(null===t)return this._model.dark().value();const i=(0,a.blendRgba)((0,a.parseRgba)(e),(0,a.parseRgba)(t));return"black"===(0,a.rgbToBlackWhiteString)([i[0],i[1],i[2]],150)}),this._model.backgroundColor().spawnOwnership(),this._createDataSourceBackgroundColorWV()),Promise.all([i.e(6290),i.e(9116),i.e(1200),i.e(1583)]).then(i.bind(i,15852)).then((t=>{this._cursorPaneView=new t.InplaceTextCursorPaneView(this,e),this._additionalCursorDataGetters&&(this._cursorPaneView.setAdditionalCursorData(...this._additionalCursorDataGetters),null!==this._cursorPosition&&(this._cursorPaneView.setCursorPosition(this._cursorPosition),e.updateSource(this)))}))}destroy(){this._isDarkBackground.destroy(),this._editableText.unsubscribe(),this._closeTextEditor(),super.destroy()}editableTextStyle(){return{...this._isDarkBackground.value()?T:g}}removeIfEditableTextIsEmpty(){return!1}activateEditingOnCreation(){return!1}topPaneViews(e){return e.hasDataSource(this)&&!window.TradingView.printing&&this._cursorPaneView?(this._cursorPaneView.update((0,p.sourceChangeEvent)(this.id())),[this._cursorPaneView]):null}dataAndViewsReady(){return super.dataAndViewsReady()&&null!==this._cursorPaneView}editableText(){return this._editableText}textEditingEl(){return this._activateTextEditingEl}activateTextEditingOn(e,t){this._activateTextEditingEl=e,this._editingOnCreation=!!t,this._editingActivationTime=performance.now(),this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id()))}deactivateTextEditing(){this._closeTextEditor()}textEditingActivationTime(){return this._editingActivationTime}
|
||||
onSelectionChange(e){const t={};if(void 0!==e){const{start:i,end:n}=e;i===n?t.cursorPosition=i:t.selectionRange=[Math.min(i,n),Math.max(i,n)]}(0,n.default)(t,this._selectionData)||(this._selectionData=t,this._paneViews.forEach((e=>{e.forEach((e=>{"setSelectionRange"in e&&e.setSelectionRange(t.selectionRange)}))})),this._cursorPaneView?this._cursorPaneView.setCursorPosition(t.cursorPosition):this._cursorPosition=t.cursorPosition??null,this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id())))}setAdditionalCursorData(e,t){this._cursorPaneView?this._cursorPaneView.setAdditionalCursorData(e,t):this._additionalCursorDataGetters=[e,t]}_updateAllPaneViews(e){super._updateAllPaneViews(e),this._cursorPaneView?.update(e)}async _openTextEditor(e,t,n,r,a){if(null!==this._container)return;null===this._editingActivationTime&&(this._editingActivationTime=performance.now()),this._activateTextEditingEl=null,this._cursorPosition=null,this._container=document.createElement("div"),this._container.style.position="absolute",this._container.style.top="0",this._container.style.bottom="0",this._container.style.left="0",this._container.style.right="0",this._container.style.overflow="hidden",this._container.style.pointerEvents="none",e.appendChild(this._container);const{updateChartEditorText:l,closeChartEditorText:d}=await Promise.all([i.e(4556),i.e(2227),i.e(5592)]).then(i.bind(i,99514));if(null===this._container||this._isDestroyed)return;this._closeChartEditorText=d;const{text:h,textColor:c,wordWrap:u}=this.editableTextProperties(),{forbidLineBreaks:_,maxLength:x}=this.editableTextStyle();this._editableText.setValue(h.value());const g=this.isFixed()?(0,o.ensureDefined)(this.fixedPoint()):(0,o.ensureNotNull)(this.pointToScreenPoint(this._points[0])),T={position:(0,s.point)(g.x,g.y),textInfo:t,placeholder:n,text:this._editableText,textColor:c,wordWrap:u,forbidLineBreaks:_,maxLength:x,onClose:r,onSelectionChange:a,onContextMenu:this.onContextMenu?this.onContextMenu.bind(this):void 0};l(this._container,T),this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id()))}_closeTextEditor(){null===this._container||this._isDestroyed||(this._editingActivationTime=null,this._saveEditedText(),this._editingOnCreation=!1,this.onSelectionChange(),this._closeChartEditorText?.(this._container),this._closeChartEditorText=void 0,this._container.remove(),this._container=null,this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id())))}_saveEditedText(){const e=this.editableTextProperties().text.value(),t=this._editableText.value();e!==t&&(this._editingOnCreation?this.editableTextProperties().text.setValue(t):this._model.undoModel().undoHistory().pushUndoCommand(this._changeEditableTextUndoCommand(e,t)))}_changeEditableTextUndoCommand(e,t){return new P(this._model,this,e,t)}_createDataSourceBackgroundColorWV(){return new c.WatchedValue(null).readonly().ownership()}}},27916:(e,t,i)=>{i.d(t,{LineSourcePaneView:()=>x,createLineSourcePaneViewPoint:()=>p,thirdPointCursorType:()=>_})
|
||||
onSelectionChange(e){const t={};if(void 0!==e){const{start:i,end:n}=e;i===n?t.cursorPosition=i:t.selectionRange=[Math.min(i,n),Math.max(i,n)]}(0,n.default)(t,this._selectionData)||(this._selectionData=t,this._paneViews.forEach((e=>{e.forEach((e=>{"setSelectionRange"in e&&e.setSelectionRange(t.selectionRange)}))})),this._cursorPaneView?this._cursorPaneView.setCursorPosition(t.cursorPosition):this._cursorPosition=t.cursorPosition??null,this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id())))}setAdditionalCursorData(e,t){this._cursorPaneView?this._cursorPaneView.setAdditionalCursorData(e,t):this._additionalCursorDataGetters=[e,t]}_updateAllPaneViews(e){super._updateAllPaneViews(e),this._cursorPaneView?.update(e)}async _openTextEditor(e,t,n,r,a){if(null!==this._container)return;null===this._editingActivationTime&&(this._editingActivationTime=performance.now()),this._activateTextEditingEl=null,this._cursorPosition=null,this._container=document.createElement("div"),this._container.style.position="absolute",this._container.style.top="0",this._container.style.bottom="0",this._container.style.left="0",this._container.style.right="0",this._container.style.overflow="hidden",this._container.style.pointerEvents="none",e.appendChild(this._container);const{updateChartEditorText:l,closeChartEditorText:d}=await Promise.all([i.e(4556),i.e(2227),i.e(5592)]).then(i.bind(i,99514));if(null===this._container||this._isDestroyed)return;this._closeChartEditorText=d;const{text:h,textColor:c,wordWrap:u}=this.editableTextProperties(),{forbidLineBreaks:_,maxLength:x}=this.editableTextStyle();this._editableText.setValue(h.value());const g=this.isFixed()?(0,o.ensureDefined)(this.fixedPoint()):(0,o.ensureNotNull)(this.pointToScreenPoint(this._points[0])),T={position:(0,s.point)(g.x,g.y),textInfo:t,placeholder:n,text:this._editableText,textColor:c,wordWrap:u,forbidLineBreaks:_,maxLength:x,onClose:r,onSelectionChange:a,onContextMenu:this.onContextMenu?this.onContextMenu.bind(this):void 0};l(this._container,T),this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id()))}_closeTextEditor(){null===this._container||this._isDestroyed||(this._editingActivationTime=null,this._saveEditedText(),this._editingOnCreation=!1,this.onSelectionChange(),this._closeChartEditorText?.(this._container),this._closeChartEditorText=void 0,this._container.remove(),this._container=null,this.updateAllViewsAndRedraw((0,p.sourceChangeEvent)(this.id())))}_saveEditedText(){const e=this.editableTextProperties().text.value(),t=this._editableText.value();e!==t&&(this._editingOnCreation&&this.editableTextProperties().text.setValue(t),this._model.undoModel().undoHistory().pushUndoCommand(this._changeEditableTextUndoCommand(e,t)))}_changeEditableTextUndoCommand(e,t){return new P(this._model,this,e,t)}_createDataSourceBackgroundColorWV(){return new c.WatchedValue(null).readonly().ownership()}}},27916:(e,t,i)=>{i.d(t,{LineSourcePaneView:()=>x,createLineSourcePaneViewPoint:()=>p,thirdPointCursorType:()=>_})
|
||||
;var n=i(19625),o=i(50151),s=i(69186),r=i(56468),a=i(11064),l=i(36036),d=i(72791),h=i(17330);const c=n.colorsPalette["color-tv-blue-600"];var u;function _(e,t){const i=t.x-e.x,n=t.y-e.y,o=Math.abs(Math.atan2(i,n));return o>Math.PI/4&&o<3*Math.PI/4?d.PaneCursorType.VerticalResize:d.PaneCursorType.HorizontalResize}function p(e,t){return e.pointIndex=t,e}!function(e){e[e.RegularAnchorRadius=6]="RegularAnchorRadius",e[e.TouchAnchorRadius=13]="TouchAnchorRadius",e[e.RegularStrokeWidth=1]="RegularStrokeWidth",e[e.TouchStrokeWidth=3]="TouchStrokeWidth",e[e.RegularSelectedStrokeWidth=3]="RegularSelectedStrokeWidth",e[e.TouchSelectedStrokeWidth=0]="TouchSelectedStrokeWidth"}(u||(u={}));class x{constructor(e,t){this._invalidated=!0,this._points=[],this._middlePoint=null,this._selectionRenderers=[],this._lineAnchorRenderers=[],this._source=e,this._model=t}priceToCoordinate(e){const t=this._source.priceScale();if(null===t)return null;const i=this._source.ownerSource(),n=null!==i?i.firstValue():null;return null===n?null:t.priceToCoordinate(e,n)}anchorColor(){return c}isHoveredSource(){return this._source===this._model.hoveredSource()}isSelectedSource(){return this._model.selection().isSelected(this._source)}isBeingEdited(){return this._model.lineBeingEdited()===this._source}isEditMode(){return!this._model.isSnapshot()}areAnchorsVisible(){return(this.isHoveredSource()&&!this.isLocked()||this.isSelectedSource())&&this.isEditMode()}update(){this._invalidated=!0}isLocked(){return Boolean(this._source.isLocked&&this._source.isLocked())}addAnchors(e,t={}){let i=this._getPoints();this._model.lineBeingCreated()===this._source&&(i=i.slice(0,-1));const n=this._source.points(),o=i.map(((e,t)=>{const i=n[t],o=(0,l.lineSourcePaneViewPointToLineAnchorPoint)(e);return i&&(o.snappingPrice=i.price,o.snappingIndex=i.index),o}));e.append(this.createLineAnchor({...t,points:o},0))}createLineAnchor(e,t){const i=e.points.map((e=>e.point));if(this.isLocked()){const n=this._getSelectionRenderer(t);return n.setData({bgColors:this._lineAnchorColors(i),points:e.points,visible:this.areAnchorsVisible(),hittestResult:r.HitTarget.Regular,barSpacing:this._model.timeScale().barSpacing()}),n}const n=(0,s.lastMouseOrTouchEventInfo)().isTouch,o=this._getLineAnchorRenderer(t),a=this.isHoveredSource()?this._model.lastHittestData()?.pointIndex??null:null;return o.setData({...e,color:this.anchorColor(),backgroundColors:this._lineAnchorColors(i),hoveredPointIndex:a,linePointBeingEdited:this.isBeingEdited()?this._model.linePointBeingEdited():null,radius:this._anchorRadius(),strokeWidth:n?u.TouchStrokeWidth:u.RegularStrokeWidth,selected:this.isSelectedSource(),selectedStrokeWidth:n?u.TouchSelectedStrokeWidth:u.RegularSelectedStrokeWidth,visible:this.areAnchorsVisible(),clickHandler:e.clickHandler}),o}_anchorRadius(){return(0,s.lastMouseOrTouchEventInfo)().isTouch?u.TouchAnchorRadius:u.RegularAnchorRadius}_lineAnchorColors(e){const t=(0,o.ensureNotNull)(this._model.paneForSource(this._source)).height();return e.map((e=>this._model.backgroundColorAtYPercentFromTop(e.y/t)))}
|
||||
_updateImpl(e){this._points=[];this._model.timeScale().isEmpty()||this._validatePriceScale()&&(this._source.points().forEach(((e,t)=>{const i=this._source.pointToScreenPoint(e);i&&this._points.push(p(i,t))})),2===this._points.length&&(this._middlePoint=this._source.calcMiddlePoint(this._points[0],this._points[1])),this._invalidated=!1)}_validatePriceScale(){const e=this._source.priceScale();return null!==e&&!e.isEmpty()}_getSource(){return this._source}_getPoints(){return this._points}_getModel(){return this._model}_height(){const e=this._source.priceScale();return null!==e?e.height():0}_width(){return this._model.timeScale().width()}_needLabelExclusionPath(e,t){const i=this._source.properties().childs();return"middle"===(t??i.vertLabelsAlign.value())&&(0,h.needTextExclusionPath)(e)}_addAlertRenderer(e,t,i=this._source.properties().linecolor.value()){}_getAlertRenderer(e,t=this._source.properties().linecolor.value(),i){return null}_getSelectionRenderer(e){for(;this._selectionRenderers.length<=e;)this._selectionRenderers.push(new a.SelectionRenderer);return this._selectionRenderers[e]}_getLineAnchorRenderer(e){for(;this._lineAnchorRenderers.length<=e;)this._lineAnchorRenderers.push(new l.LineAnchorRenderer);return this._lineAnchorRenderers[e]}}},36036:(e,t,i)=>{i.d(t,{LineAnchorRenderer:()=>T,lineSourcePaneViewPointToLineAnchorPoint:()=>P,mapLineSourcePaneViewPointToLineAnchorPoint:()=>b});var n=i(86441),o=i(34026),s=i(50151),r=i(37743),a=i(37265),l=i(56468),d=i(72791),h=i(61993),c=i(30125);function u(e,t,i,n){const{point:o}=t,s=i+n/2;(0,r.drawRoundRect)(e,o.x-s,o.y-s,2*s,2*s,(i+n)/2),e.closePath(),e.lineWidth=n}function _(e,t,i,n){e.globalAlpha=.2,u(e,t,i,n),e.stroke(),e.globalAlpha=1}function p(e,t,i,n){u(e,t,i-n,n),e.fill(),e.stroke()}function x(e,t,i,n){const{point:o}=t;e.globalAlpha=.2,e.beginPath(),e.arc(o.x,o.y,i+n/2,0,2*Math.PI,!0),e.closePath(),e.lineWidth=n,e.stroke(),e.globalAlpha=1}function g(e,t,i,n){const{point:o}=t;e.beginPath(),e.arc(o.x,o.y,i-n/2,0,2*Math.PI,!0),e.closePath(),e.lineWidth=n,e.fill(),e.stroke()}class T extends c.BitmapCoordinatesPaneRenderer{constructor(e){super(),this._data=e??null}setData(e){this._data=e}hitTest(e){if(null===this._data||this._data.disableInteractions)return null;const{radius:t,points:i}=this._data,n=t+(0,h.interactionTolerance)().anchor;for(const t of i){if(t.point.subtract(e).length()<=n)return new l.HitTestResult(t.hitTarget??l.HitTarget.ChangePoint,{areaName:l.AreaName.AnchorPoint,pointIndex:t.pointIndex,cursorType:t.cursorType??d.PaneCursorType.Default,activeItem:t.activeItem,snappingPrice:t.snappingPrice,snappingIndex:t.snappingIndex,nonDiscreteIndex:t.nonDiscreteIndex,possibleMovingDirections:t.possibleMovingDirections,clickHandler:this._data.clickHandler,tapHandler:this._data.clickHandler})}return null}doesIntersectWithBox(e){return null!==this._data&&this._data.points.some((t=>(0,o.pointInBox)(t.point,e)))}_drawImpl(e){if(null===this._data||!this._data.visible)return;const t=[],i=[],n=[],o=[];for(let e=0;e<this._data.points.length;++e){
|
||||
const s=this._data.points[e],r=this._data.backgroundColors[e];s.square?(t.push(s),i.push(r)):(n.push(s),o.push(r))}t.length&&this._drawPoints(e,t,i,p,_),n.length&&this._drawPoints(e,n,o,g,x)}_drawPoints(e,t,i,o,r){const{context:l,horizontalPixelRatio:d,verticalPixelRatio:h}=e,c=(0,s.ensureNotNull)(this._data),u=c.radius;let _=Math.max(1,Math.floor((c.strokeWidth||2)*d));c.selected&&(_+=Math.max(1,Math.floor(d/2)));const p=Math.max(1,Math.floor(d));let x=Math.round(u*d*2);x%2!=p%2&&(x+=1);const g=p%2/2;l.strokeStyle=c.color;for(let e=0;e<t.length;++e){const s=t[e];if(!((0,a.isInteger)(s.pointIndex)&&c.linePointBeingEdited===s.pointIndex)){l.fillStyle=i[e];if(o(l,{...s,point:new n.Point(Math.round(s.point.x*d)+g,Math.round(s.point.y*h)+g)},x/2,_),!c.disableInteractions){if(null!==c.hoveredPointIndex&&s.pointIndex===c.hoveredPointIndex){const e=Math.max(1,Math.floor(c.selectedStrokeWidth*d));let t=Math.round(u*d*2);t%2!=p%2&&(t+=1);r(l,{...s,point:new n.Point(Math.round(s.point.x*d)+g,Math.round(s.point.y*h)+g)},t/2,e)}}}}}}function P(e,t=e.pointIndex,i,n,o,s,r,a,l,d){return{point:e,pointIndex:t,cursorType:i,square:n,hitTarget:o,snappingPrice:s,snappingIndex:r,nonDiscreteIndex:a,activeItem:l,possibleMovingDirections:d}}function b(e){return P(e)}}}]);
|
||||
@@ -9,17 +9,17 @@ const{className:t,inputClassName:n,stretch:o=!0,errorMessage:r,fontSizeStyle:i="
|
||||
isOpened:_,onClose:k,position:function(){const e=(0,a.ensureNotNull)(I.current).getBoundingClientRect();return{x:e.left,y:e.top+e.height}},doNotCloseOn:I.current,onKeyDown:function(e){if(27===(0,i.hashFromEvent)(e))_&&(e.preventDefault(),k())},onOpen:function(){T.current?.focus()},tabIndex:-1},o.createElement(d.MenuContext.Consumer,null,(e=>o.createElement(u.ColorPicker,{...y,onColorChange:f,onToggleCustom:x,menu:e}))),!C&&n));function k(){w(!1),(0,a.ensureNotNull)(I.current).focus(),g&&g()}}var v=n(56512),f=n(19063),b=n(6914),y=n(11542),C=n(59416),x=n(99864);const _=(0,C.makeSwitchGroupItem)(class extends o.PureComponent{constructor(e){super(e),this._onChange=()=>{this.props.onChange&&this.props.onChange(this.props.value)},this._handleFocus=e=>{e.target.matches(":focus-visible")&&this.setState({isFocusVisible:!0})},this._handleBlur=()=>{this.state.isFocusVisible&&this.setState({isFocusVisible:!1})},this.state={isFocusVisible:!1}}render(){const{name:e,checked:t,value:n,renderItemContent:r,className:a}=this.props,i=s(x.item,x.accessible,{[x.checked]:t,[x.focusVisible]:this.state.isFocusVisible},a);return o.createElement("div",{className:i},o.createElement("input",{type:"radio",className:x.radio,name:e,value:n,onChange:this._onChange,onFocus:this._handleFocus,onBlur:this._handleBlur,checked:t}),r(parseInt(n),t))}});function w(e){const{name:t,values:n,selectedValues:r,onChange:a,renderItemContent:i}=e,l=n.map(((e,t)=>o.createElement(_,{key:t,value:e.toString(),renderItemContent:i,className:s(n.length>3&&x.paddingCompact)}))),c=r.map((e=>e.toString()));return o.createElement("div",{className:x.wrap},o.createElement(C.SwitchGroup,{name:t,onChange:e=>{a(parseInt(e))},values:c},l))}var E=n(69211);const S=y.t(null,void 0,n(54971));function T(e){const{value:t,items:n,onChange:s}=e;return o.createElement("div",{className:E.thicknessContainer},o.createElement("div",{className:E.thicknessTitle},S),o.createElement(w,{name:"color_picker_thickness_select",onChange:s,values:n,selectedValues:"mixed"===t?[]:[t],renderItemContent:(e,t)=>o.createElement("div",{className:r()(E.bar,t&&E.checked),style:{borderTopWidth:e}})}))}var N=n(51056);function I(e,t,n,o,s,r){return{repeat:e,width:t,height:n,segmentsGap:o,marginTop:s,segmentsGaps:r}}const k={"style-SOLID_thickness-1":I(1,"30px","1px"),"style-DASHED_thickness-1":I(4,"5px","1px","3px"),"style-DOTTED_thickness-1":I(6,"2px","2px","3px"),"style-SOLID_thickness-2":I(1,"30px","2px"),"style-DASHED_thickness-2":I(4,"5px","2px","3px"),"style-DOTTED_thickness-2":I(5,"3px","3px","3px"),"style-SOLID_thickness-3":I(1,"30px","3px"),"style-DASHED_thickness-3":I(4,"5px","3px","3px"),"style-DOTTED_thickness-3":I(5,"4px","4px","2px"),"style-SOLID_thickness-4":I(1,"30px","4px"),"style-DASHED_thickness-4":I(4,"5px","4px","3px"),"style-DOTTED_thickness-4":I(4,"5px","5px","3px")},P={...k,"style-mixed_thickness-large":I(1,"30px","16px"),"style-mixed_thickness-1":[I(1,"27px","1px"),I(4,"4px","1px","4px","5px",{3:"3px"}),I(6,"2px","2px","3px","5px")],
|
||||
"style-mixed_thickness-2":[I(1,"27px","2px"),I(4,"4px","2px","4px","4px",{3:"3px"}),I(6,"2px","2px","3px","4px")],"style-mixed_thickness-3":[I(1,"27px","3px"),I(4,"4px","3px","4px","3px",{3:"3px"}),I(6,"2px","2px","3px","3px")],"style-mixed_thickness-4":[I(1,"27px","4px"),I(4,"4px","4px","4px","3px",{3:"3px"}),I(6,"2px","2px","3px","3px")],"style-SOLID_thickness-mixed":[I(1,"30px","3px",void 0,"4px"),I(1,"30px","2px",void 0,"4px"),I(1,"30px","1px",void 0,"4px")],"style-DASHED_thickness-mixed":[I(4,"5px","3px","3px"),I(4,"5px","2px","3px","4px"),I(4,"5px","1px","3px","4px")],"style-DOTTED_thickness-mixed":[I(5,"3px","3px","3px"),I(5,"3px","2px","3px","4px"),I(6,"2px","2px","3px","4px")],"style-mixed_thickness-mixed":[I(1,"30px","3px"),I(4,"6px","2px","2px","4px"),I(5,"2px","2px","5px","4px")]};function D(e,t){if(!t)return[];const n=e??N.LINESTYLE_SOLID;if("mixed"!==t&&t>4)return P["style-mixed_thickness-large"]||[];const o="mixed"===n?"mixed":B(n);return P[`style-${o}_thickness-${"mixed"===t?"mixed":t}`]||[]}function B(e){switch(e){case N.LINESTYLE_SOLID:return"SOLID";case N.LINESTYLE_DOTTED:return"DOTTED";case N.LINESTYLE_DASHED:return"DASHED";default:return"UNKNOWN"}}var M=n(63273),O=n(74997);function R(e){const{value:t,items:s,onChange:a,className:i}=e;return o.createElement("div",{className:r()(O.container,i)},o.createElement("div",{className:O.title},y.t(null,void 0,n(28603))),o.createElement(w,{name:"color_picker_line_style_select",onChange:a,values:s,selectedValues:"mixed"===t?[]:[t],renderItemContent:V}))}function V(e,t){const n=function(e,t=1){const n=B(e);return k[`style-${n}_thickness-${t}`]||null}(e,1);return n?o.createElement("div",{className:O.lineContainer},Array.from({length:n.repeat}).map(((e,s)=>{const a=n?.segmentsGaps?.[s]||n?.segmentsGap;return o.createElement("div",{key:s,className:r()(O.lineSegment,t&&O.checked),style:{width:n.width,height:n.height,...0!==s&&{[(0,M.isRtl)()?"marginRight":"marginLeft"]:a}}})}))):null}var L=n(98406);function F(e){const{className:t,selectOpacity:n=void 0!==e.opacity,thickness:s,lineStyle:a,color:i,disabled:l,opacity:c=1,onColorChange:u,onOpacityChange:d,onThicknessChange:p,onLineStyleChange:h,thicknessItems:m,lineStyleItems:f,onPopupClose:b,"data-name":y}=e,[C,x,_]=(0,v.useCustomColors)(),w=s&&m&&m.length>0;return o.createElement(g,{className:t,disabled:l,color:"mixed"!==i?i:null,selectOpacity:n,opacity:c,selectCustom:!0,customColors:C,onColorChange:u,onOpacityChange:i?d:void 0,onAddColor:x,onRemoveCustomColor:_,button:function(e,t){const n=e||t,u=n?"primary":"default";return o.createElement("div",{className:r()(L.colorPickerWrap,L[`intent-${u}`],L["border-thin"],L["size-medium"],n&&L.highlight,n&&L.focused,l&&L.disabled),"data-role":"button","data-name":s?"color-with-thickness-select":"color-select"},o.createElement("div",{className:r()(L.colorPicker,l&&L.disabled)},i&&"mixed"!==i?function(){const e=W(i,c),t=c>=.95&&A(i);return o.createElement("div",{className:L.opacitySwatch},o.createElement("div",{style:{backgroundColor:e},className:r()(L.swatch,t&&L.white)}))
|
||||
}():o.createElement("div",{className:L.placeholderContainer},o.createElement("div",{className:"mixed"===i?L.mixedColor:L.placeholder})),(void 0!==a||s)&&function(){const e=i&&"mixed"!==i?W(i,c):void 0;if(void 0===a&&!s)return null;const t=D(a,s);if(!t||Array.isArray(t)&&!t.length)return null;if(Array.isArray(t))return o.createElement("div",{className:L.overflowContainer},o.createElement("div",{className:r()(L.linePropertyContainer,L.multiProperty,A(i)&&L.whiteContainer)},t.map(((t,n)=>o.createElement("div",{key:n,className:L.lineItem,style:{marginTop:A(i)&&t?.marginTop?`calc(${t.marginTop} - 2px)`:t?.marginTop}},E(t,e))))));return o.createElement("div",{className:L.overflowContainer},o.createElement("div",{className:r()(L.linePropertyContainer,A(i)&&L.whiteContainer)},E(t,e)))}()),n&&o.createElement("span",{className:L.shadow}))},onPopupClose:b,"data-name":y},w&&o.createElement(T,{value:s,items:m,onChange:function(e){p?.(e)}}),void 0!==a&&f&&f?.length>0&&o.createElement(R,{className:r()(w&&L.lineStyleSelect),value:a,items:f,onChange:function(e){h?.(e)}}));function E(e,t){return Array.from({length:e.repeat}).map(((n,s)=>{const a=e?.segmentsGaps?.[s]||e?.segmentsGap,l=A(i)&&a?`calc(${a} - 2px)`:a;return o.createElement("div",{key:s,className:r()(L.lineSegment,A(i)&&L.white),style:{width:e.width,height:e.height,backgroundColor:t,...0!==s&&{[(0,M.isRtl)()?"marginRight":"marginLeft"]:l}}})}))}}function W(e,t){return e?(0,f.generateColor)(e,(0,f.alphaToTransparency)(t),!0):"#000000"}function A(e){return!!e&&e.toLowerCase()===b.white}},6245:(e,t,n)=>{"use strict";n.d(t,{defaultLineStyleItems:()=>c,lineStyleItemValues:()=>l});var o=n(7029),s=n(51056),r=n(501),a=n(23851),i=n(57740);const l=[{type:s.LINESTYLE_SOLID,icon:r,label:o.t(null,void 0,n(3554))},{type:s.LINESTYLE_DASHED,icon:a,label:o.t(null,void 0,n(88123))},{type:s.LINESTYLE_DOTTED,icon:i,label:o.t(null,void 0,n(27390))}],c=l.map((e=>e.type))},48897:(e,t,n)=>{"use strict";n.d(t,{SymbolInputsButton:()=>E});var o=n(50959),s=n(97754),r=n.n(s),a=n(11542),i=n(50151),l=n(50655),c=n(95711),u=n(56570),d=n(16604),p=n(94664),h=n(1861),m=n(9745),g=n(10600),v=n(15931);function f(e){const{value:t,onClick:n,className:r,startSlot:a,disabled:i=!1}=e;return o.createElement("div",{className:s(v.wrap,i&&v.disabled,r),onClick:n,"data-name":"edit-button"},o.createElement("div",{className:s(v.text,"apply-overflow-tooltip")},void 0!==a&&a,o.createElement("span",null,t)),o.createElement(m.Icon,{icon:g,className:v.icon}))}var b=n(31356),y=n(78260),C=n(44254),x=n(82708),_=n(58851);function w(e){const{symbol:t,onSymbolChanged:s,disabled:i,className:d}=e,[m,g]=(0,o.useState)(t),v=(0,o.useContext)(l.SlotContext),b=(0,o.useContext)(c.PopupContext);let y;return u.enabled("symbol_search_option_chain_selector")&&({quotes:y}=useSymbolQuotes(matchesOptionPattern(m)?m:null)),o.createElement(f,{value:m,onClick:function(){const e=function(e){const t=(0,C.tokenize)(e);return(0,C.isSpread)(t)}(m)?m:(0,
|
||||
x.safeShortName)(m),t="option"===y?.type,o=y?.["underlying-symbol"],r=u.enabled("symbol_search_option_chain_selector")&&t&&o?{type:"option",value:m,underlying:o}:e,i=(0,p.getSymbolSearchCompleteOverrideFunction)();(0,h.showSymbolSearchItemsDialog)({onSearchComplete:e=>{i(e[0].symbol,e[0].result).then((e=>{s(e.symbol),g(e.name)}))},dialogTitle:a.t(null,void 0,n(63245)),defaultValue:r,manager:v,onClose:()=>{b&&b.focus()},enableOptionsChain:u.enabled("symbol_search_option_chain_selector"),showSpreadActions:u.enabled("show_spread_operators")&&u.enabled("studies_symbol_search_spread_operators")})},disabled:i,className:r()(d,u.enabled("uppercase_instrument_names")&&_.uppercase)})}function E(e){if("definition"in e){const{propType:t,properties:n,id:s,title:r="",solutionId:a}=e.definition,l=n[t],c=l.value()||"",u=e=>{l.setValue(e)};return o.createElement(b.CommonSection,{id:s,title:r,solutionId:a},o.createElement(y.CellWrap,null,o.createElement(w,{symbol:(0,i.ensureDefined)(c),onSymbolChanged:u})))}{const{study:t,value:n,input:{id:s,name:a},onChange:l,disabled:c,hasTooltip:u}=e,p=e=>{const n=(0,d.getInternalSymbolName)(e,t);l(n,s,a)};return o.createElement(w,{symbol:(0,i.ensureDefined)(n),onSymbolChanged:p,disabled:c,className:r()(u&&_.hasTooltip)})}}},1861:(e,t,n)=>{"use strict";n.d(t,{showSymbolSearchItemsDialog:()=>l});var o=n(50959),s=n(50655),r=n(51826),a=n(73280),i=n(87896);function l(e){const{symbolTypeFilter:t,initialMode:n="symbolSearch",autofocus:l=!0,defaultValue:c,showSpreadActions:u,selectSearchOnInit:d,onSearchComplete:p,dialogTitle:h,placeholder:m,fullscreen:g,initialScreen:v,wrapper:f,dialog:b,contentItem:y,onClose:C,onOpen:x,footer:_,symbolTypes:w,searchInput:E,emptyState:S,hideMarkedListFlag:T,dialogWidth:N="auto",manager:I,shouldReturnFocus:k,onSymbolFiltersParamsChange:P,onEmptyResults:D,customSearchSymbols:B,enableOptionsChain:M}=e;if(r.dialogsOpenerManager.isOpened("SymbolSearch")||r.dialogsOpenerManager.isOpened("ChangeIntervalDialog"))return;const O=document.createElement("div"),R=o.createElement(s.SlotContext.Provider,{value:I??null},o.createElement(a.SymbolSearchItemsDialog,{symbolTypeFilter:t,onClose:L,initialMode:n,defaultValue:c,showSpreadActions:u,hideMarkedListFlag:T,selectSearchOnInit:d,onSearchComplete:p,dialogTitle:h,placeholder:m,fullscreen:g,initialScreen:v,wrapper:f,dialog:b,contentItem:y,footer:_,symbolTypes:w,searchInput:E,emptyState:S,autofocus:l,dialogWidth:N,shouldReturnFocus:k,onSymbolFiltersParamsChange:P,onEmptyResults:D,customSearchSymbols:B,enableOptionsChain:M})),V=(0,i.createReactRoot)(R,O);function L(){V.unmount(),r.dialogsOpenerManager.setAsClosed("SymbolSearch"),C&&C()}return r.dialogsOpenerManager.setAsOpened("SymbolSearch"),x&&x(),{close:L}}},73146:(e,t,n)=>{"use strict";n.d(t,{createAdapter:()=>a,doesStudyLikeAffectSave:()=>i});var o=n(32755),s=n(85719),r=n(79036);function a(e){if((0,o.isLineTool)(e))return{isPine:()=>!1,isStandardPine:()=>!1,canOverrideMinTick:()=>!1,resolvedSymbolInfoBySymbol:()=>{throw new TypeError("Only study is supported.")},symbolsResolved:()=>{
|
||||
throw new TypeError("Only study is supported.")},parentSources:()=>{throw new TypeError("Only study is supported.")},getAllChildren:()=>[],sourceId:()=>{throw new TypeError("Only study is supported.")},inputs:()=>({}),parentSourceForInput:()=>{throw new TypeError("Only study is supported.")}};if((0,r.isStudy)(e))return e;if("isInputsStudy"in e)return e;throw new TypeError("Unsupported source type.")}function i(e){return(0,r.isStudy)(e)||!s.lineToolsDoNotAffectChartInvalidation}},45560:(e,t,n)=>{"use strict";n.d(t,{useDefinitionProperty:()=>r});var o=n(50959),s=n(71953);const r=e=>{const t="property"in e?e.property:void 0,n="defaultValue"in e?e.defaultValue:e.property.value(),[r,a]=(0,o.useState)(t?t.value():n);(0,o.useEffect)((()=>{if(t){const n={};return a(t.value()),t.subscribe(n,(t=>{const n=t.value();e.handler&&e.handler(n),a(n)})),()=>{t.unsubscribeAll(n)}}return()=>{}}),[t]);return[r,e=>{if(void 0!==t){const n=t.value();s.logger.logNormal(`Changing property value from "${n}" to "${e}"`),t.setValue(e)}}]}},78260:(e,t,n)=>{"use strict";n.d(t,{CellWrap:()=>i});var o=n(50959),s=n(97754),r=n.n(s),a=n(92492);function i(e){return o.createElement("div",{className:r()(a.wrap,e.className)},e.children)}},53424:(e,t,n)=>{"use strict";n.d(t,{CheckableTitle:()=>c});var o=n(50959),s=n(15294),r=n(45560);function a(e){const{property:t,...n}=e,[a,i]=(0,r.useDefinitionProperty)({property:t}),l="mixed"===a;return o.createElement(s.Checkbox,{...n,name:"toggle-enabled",checked:l||a,indeterminate:l,onChange:function(){i("mixed"===a||!a)}})}var i=n(78260),l=n(52257);function c(e){const{property:t,disabled:n,title:s,className:r,name:c}=e,u=o.createElement("span",{className:l.title},s);return o.createElement(i.CellWrap,{className:r},t?o.createElement(a,{name:c,className:l.checkbox,property:t,disabled:n,label:u,labelAlignBaseline:!0}):u)}},31356:(e,t,n)=>{"use strict";n.d(t,{CommonSection:()=>a});var o=n(50959),s=n(71891),r=n(53424);n(7208);function a(e){const{id:t,offset:n,disabled:a,checked:i,title:l,children:c,solutionId:u,infoTooltip:d}=e;return o.createElement(s.PropertyTable.Row,null,o.createElement(s.PropertyTable.Cell,{placement:"first",verticalAlign:"adaptive",offset:n,"data-section-name":t,colSpan:Boolean(c)?void 0:2,checkableTitle:!0},o.createElement(r.CheckableTitle,{name:`is-enabled-${t}`,title:l,disabled:a,property:i}),u&&!Boolean(c)&&!1,d&&!Boolean(c)&&!1),Boolean(c)&&o.createElement(s.PropertyTable.Cell,{placement:"last","data-section-name":t},c,u&&!1,d&&!1))}},86067:(e,t,n)=>{"use strict";n.d(t,{GroupTitleSection:()=>i});var o=n(50959),s=n(71891),r=n(53424),a=n(71035);function i(e){return o.createElement(s.PropertyTable.Row,null,o.createElement(s.PropertyTable.Cell,{className:a.titleWrap,placement:"first",verticalAlign:"adaptive",colSpan:2,"data-section-name":e.name,checkableTitle:!0},o.createElement(r.CheckableTitle,{title:e.title,name:`is-enabled-${e.name}`,className:a.title})))}},71953:(e,t,n)=>{"use strict";n.d(t,{logger:()=>o});const o=(0,n(9343).getLogger)("Platform.GUI.PropertyDefinitionTrace")},16697:(e,t,n)=>{
|
||||
"use strict";n.d(t,{ColorPicker:()=>q});var o=n(50959),s=n(97754),r=n.n(s),a=n(11542),i=n(59369),l=n(82665),c=n(24377),u=n(50151),d=n(49483),p=n(20520),h=n(16396),m=n(6914),g=n(50238),v=n(93544),f=n(11992);const b=4;function y(e){const{color:t,selected:r,onSelect:i,onSwatchRemove:l}=e,[c,y]=(0,o.useState)(!1),[C,x]=(0,g.useRovingTabindexElement)(null),_=Boolean(l)&&!d.CheckMobile.any();return o.createElement(o.Fragment,null,o.createElement("button",{ref:C,style:t?{color:t}:void 0,className:s(f.swatch,c&&f.hover,r&&f.selected,!t&&f.empty,String(t).toLowerCase()===m.white&&f.white),onClick:function(){i(t)},onContextMenu:_?w:void 0,tabIndex:x,"data-role":"swatch"}),_&&o.createElement(p.PopupMenu,{isOpened:c,onClose:w,position:function(){const e=(0,u.ensureNotNull)(C.current).getBoundingClientRect();return{x:e.left,y:e.top+e.height+b}},onClickOutside:w},o.createElement(h.PopupMenuItem,{className:f.contextItem,label:a.t(null,void 0,n(89984)),icon:v,onClick:function(){w(),(0,u.ensureDefined)(l)()},dontClosePopup:!0})));function w(){y(!c)}}const C=10;function x(e){const{colors:t,color:n,children:s,onSelect:r,onRemoveCustomColor:a}=e;if(!t)return null;const i=n?(0,c.parseRgb)(String(n)):void 0,u=(0,l.default)(t,C);return o.createElement("div",{className:f.swatches},u.map(((e,t)=>o.createElement("div",{className:f.row,"data-role":"row",key:t},e.map(((e,n)=>o.createElement(y,{key:String(e)+n,color:e,selected:i&&(0,c.areEqualRgb)(i,(0,c.parseRgb)(String(e))),onSelect:d,onSwatchRemove:a?()=>function(e,t){const n=e*C+t;a?.(n)}(t,n):void 0})))))),s);function d(e){r&&r(e)}}var _=n(54368),w=n(67248);function E(e){const t=`Invalid RGB color: ${e}`;if(null===e)throw new Error(t);const n=e.match(/^#?([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})$/i);if(null===n)throw new Error(t);const[,o,s,r]=n;if(!o||!s||!r)throw new Error(t);const a=parseInt(o,16)/255,i=parseInt(s,16)/255,l=parseInt(r,16)/255,c=Math.max(a,i,l),u=Math.min(a,i,l);let d;const p=c,h=c-u,m=0===c?0:h/c;if(c===u)d=0;else{switch(c){case a:d=(i-l)/h+(i<l?6:0);break;case i:d=(l-a)/h+2;break;case l:d=(a-i)/h+4;break;default:d=0}d/=6}return{h:d,s:m,v:p}}var S=n(20057),T=n(68335),N=n(9859),I=n(87109);const k=[37,39,38,40],P=.01;class D extends o.PureComponent{constructor(){super(...arguments),this._container=null,this._refContainer=e=>{this._container=e},this._handlePosition=e=>{const{hsv:{h:t},onChange:n}=this.props;if(!n)return;const o=(0,u.ensureNotNull)(this._container).getBoundingClientRect(),s=e.clientX-o.left,r=e.clientY-o.top;n({h:t,s:(0,N.clamp)(s/o.width,0,1),v:(0,N.clamp)(1-r/o.height,0,1)})},this._handleKeyDown=e=>{const{hsv:{h:t,s:n,v:o},onChange:s}=this.props,r=(0,T.hashFromEvent)(e);if(!s||!k.includes(r))return;if(37===r||39===r){return void s({h:t,s:(0,N.clamp)(37===r?n-P:n+P,0,1),v:o})}s({h:t,s:n,v:(0,N.clamp)(40===r?o-P:o+P,0,1)})},this._mouseDown=e=>{window.addEventListener("mouseup",this._mouseUp),window.addEventListener("mousemove",this._mouseMove)},this._mouseUp=e=>{window.removeEventListener("mousemove",this._mouseMove),
|
||||
window.removeEventListener("mouseup",this._mouseUp),this._handlePosition(e)},this._mouseMove=(0,S.default)(this._handlePosition,100),this._handleTouch=e=>{this._handlePosition(e.nativeEvent.touches[0])}}render(){const{className:e,hsv:{h:t,s:n,v:s}}=this.props,a=`hsl(${360*t}, 100%, 50%)`;return o.createElement("div",{tabIndex:0,className:r()(I.accessible,e),onKeyDown:this._handleKeyDown},o.createElement("div",{className:I.saturation,style:{backgroundColor:a},ref:this._refContainer,onMouseDown:this._mouseDown,onTouchStart:this._handleTouch,onTouchMove:this._handleTouch},o.createElement("div",{className:I.pointer,style:{left:100*n+"%",top:100*(1-s)+"%"}})))}}var B=n(58065);class M extends o.PureComponent{constructor(){super(...arguments),this._container=null,this._refContainer=e=>{this._container=e},this._handlePosition=e=>{const{hsv:{s:t,v:n},onChange:o}=this.props;if(!o)return;const s=(0,u.ensureNotNull)(this._container).getBoundingClientRect(),r=e.clientY-s.top;o({h:(0,N.clamp)(r/s.height,0,1),s:t,v:n})},this._handleKeyDown=e=>{const{hsv:{h:t,s:n,v:o},onChange:s}=this.props,r=(0,T.hashFromEvent)(e);if(!s||38!==r&&40!==r)return;s({h:(0,N.clamp)(38===r?t-.01:t+.01,0,1),s:n,v:o})},this._mouseDown=e=>{window.addEventListener("mouseup",this._mouseUp),window.addEventListener("mousemove",this._mouseMove)},this._mouseUp=e=>{window.removeEventListener("mousemove",this._mouseMove),window.removeEventListener("mouseup",this._mouseUp),this._handlePosition(e)},this._mouseMove=(0,S.default)(this._handlePosition,100),this._handleTouch=e=>{this._handlePosition(e.nativeEvent.touches[0])}}render(){const{className:e,hsv:{h:t}}=this.props;return o.createElement("div",{className:r()(B.hue,B.accessible,e),tabIndex:0,onKeyDown:this._handleKeyDown},o.createElement("div",{className:B.pointerContainer,ref:this._refContainer,onMouseDown:this._mouseDown,onTouchStart:this._handleTouch,onTouchMove:this._handleTouch},o.createElement("div",{className:B.pointer,style:{top:100*t+"%"}})))}}var O=n(75187);const R="#000000",V=a.t(null,{context:"Color Picker"},n(55517));class L extends o.PureComponent{constructor(e){super(e),this._inputRef=o.createRef(),this._handleHSV=e=>{const t=function(e){const{h:t,s:n,v:o}=e;let s,r,a;const i=Math.floor(6*t),l=6*t-i,c=o*(1-n),u=o*(1-l*n),d=o*(1-(1-l)*n);switch(i%6){case 0:s=o,r=d,a=c;break;case 1:s=u,r=o,a=c;break;case 2:s=c,r=o,a=d;break;case 3:s=c,r=u,a=o;break;case 4:s=d,r=c,a=o;break;case 5:s=o,r=c,a=u;break;default:s=0,r=0,a=0}return"#"+[255*s,255*r,255*a].map((e=>("0"+Math.round(e).toString(16)).replace(/.+?([a-f0-9]{2})$/i,"$1"))).join("")}(e)||R;this.setState({color:t,inputColor:F(t),hsv:e}),this.props.onSelect(t)},this._handleInput=e=>{const t=F(e.currentTarget.value);try{const e=E(t),n=`#${t}`;this.setState({color:n,inputColor:t,hsv:e}),this.props.onSelect(n)}catch(e){this.setState({inputColor:t})}},this._handleAddColor=()=>this.props.onAdd(this.state.color);const t=e.color||R;this.state={color:t,inputColor:F(t),hsv:E(t)}}componentDidMount(){d.CheckMobile.any()||this._inputRef.current?.focus()}render(){
|
||||
const{color:e,hsv:t,inputColor:n}=this.state;return o.createElement("div",{className:O.container},o.createElement("div",{className:O.form},o.createElement("div",{className:r()(O.swatch,String(e).toLowerCase()===m.white&&O.white),style:{backgroundColor:e}}),o.createElement("div",{className:O.inputWrap},o.createElement("span",{className:O.inputHash},"#"),o.createElement("input",{ref:this._inputRef,type:"text",className:O.input,value:n,onChange:this._handleInput})),o.createElement("div",{className:O.buttonWrap},o.createElement(w.Button,{size:"s",onClick:this._handleAddColor},V))),o.createElement("div",{className:O.hueSaturationWrap},o.createElement(D,{className:O.saturation,hsv:t,onChange:this._handleHSV}),o.createElement(M,{className:O.hue,hsv:t,onChange:this._handleHSV})))}}function F(e){return e.replace(/^#/,"")}var W=n(60387);const A=a.t(null,{context:"Color Picker"},n(29619)),H=a.t(null,{context:"Color Picker"},n(80936));function q(e){const{color:t,opacity:n,selectCustom:s,selectOpacity:a,customColors:l,onRemoveCustomColor:c,onToggleCustom:u,onOpacityChange:d,menu:p}=e,[h,g]=(0,o.useState)(!1),v="number"==typeof n?n:1,[f,b]=(0,i.useRowsNavigation)();return(0,o.useLayoutEffect)((()=>{p&&p.update()}),[a,p]),h?o.createElement(L,{color:t,onSelect:y,onAdd:function(t){g(!1),u?.(!1);const{onAddColor:n}=e;n&&n(t)}}):o.createElement("div",{className:W.container},o.createElement("div",{ref:f,onKeyDown:b},o.createElement(x,{colors:m.basic,color:t,onSelect:y}),o.createElement(x,{colors:m.extended,color:t,onSelect:y}),o.createElement("div",{className:W.separator}),o.createElement(x,{colors:l,color:t,onSelect:y,onRemoveCustomColor:c},s&&o.createElement(o.Fragment,null,l?.length?o.createElement("button",{title:A,onClick:C,className:r()(W.customButton,W.accessible,"apply-common-tooltip"),tabIndex:-1}):o.createElement("div",{"data-role":"row"},o.createElement("button",{title:A,onClick:C,className:r()(W.customButton,W.accessible,"apply-common-tooltip"),tabIndex:-1}))))),a&&o.createElement(o.Fragment,null,o.createElement("div",{className:W.sectionTitle},H),o.createElement(_.Opacity,{color:t,opacity:v,onChange:function(e){d&&d(e)}})));function y(t){const{onColorChange:n}=e;n&&n(t,h)}function C(e){g(!0),u?.(!0)}}},54368:(e,t,n)=>{"use strict";n.d(t,{Opacity:()=>c});var o=n(50959),s=n(97754),r=n(50151),a=n(9859),i=n(68335),l=n(94085);class c extends o.PureComponent{constructor(e){super(e),this._container=null,this._pointer=null,this._raf=null,this._refContainer=e=>{this._container=e},this._refPointer=e=>{this._pointer=e},this._handlePosition=e=>{null===this._raf&&(this._raf=requestAnimationFrame((()=>{const t=(0,r.ensureNotNull)(this._container),n=(0,r.ensureNotNull)(this._pointer),o=t.getBoundingClientRect(),s=n.offsetWidth,i=e.clientX-s/2-o.left,l=(0,a.clamp)(i/(o.width-s),0,1);this.setState({inputOpacity:Math.round(100*l).toString()}),this.props.onChange(l),this._raf=null})))},this._onSliderClick=e=>{this._handlePosition(e.nativeEvent),this._dragSubscribe()},this._mouseUp=e=>{this.setState({isPointerDragged:!1}),
|
||||
this._dragUnsubscribe(),this._handlePosition(e)},this._mouseMove=e=>{this.setState({isPointerDragged:!0}),this._handlePosition(e)},this._onTouchStart=e=>{this._handlePosition(e.nativeEvent.touches[0])},this._handleTouch=e=>{this.setState({isPointerDragged:!0}),this._handlePosition(e.nativeEvent.touches[0])},this._handleTouchEnd=()=>{this.setState({isPointerDragged:!1})},this._handleInput=e=>{const t=e.currentTarget.value,n=Number(t)/100;this.setState({inputOpacity:t}),Number.isNaN(n)||n>1||this.props.onChange(n)},this._handleKeyDown=e=>{const t=(0,i.hashFromEvent)(e);if(37!==t&&39!==t)return;e.preventDefault();const n=Number(this.state.inputOpacity);37===t&&0!==n&&this._changeOpacity(n-1),39===t&&100!==n&&this._changeOpacity(n+1)},this.state={inputOpacity:Math.round(100*e.opacity).toString(),isPointerDragged:!1}}componentWillUnmount(){null!==this._raf&&(cancelAnimationFrame(this._raf),this._raf=null),this._dragUnsubscribe()}render(){const{color:e,opacity:t,hideInput:n,disabled:r}=this.props,{inputOpacity:a,isPointerDragged:i}=this.state,c={color:e||void 0};return o.createElement("div",{className:l.opacity},o.createElement("div",{className:s(l.opacitySlider,l.accessible),style:c,tabIndex:r?-1:0,ref:this._refContainer,onMouseDown:this._onSliderClick,onTouchStart:this._onTouchStart,onTouchMove:this._handleTouch,onTouchEnd:this._handleTouchEnd,onKeyDown:this._handleKeyDown,"aria-disabled":r},o.createElement("div",{className:l.opacitySliderGradient,style:{backgroundImage:`linear-gradient(90deg, transparent, ${e})`}}),o.createElement("div",{className:l.opacityPointerWrap},o.createElement("div",{className:s(l.pointer,i&&l.dragged),style:{left:100*t+"%"},ref:this._refPointer}))),!n&&o.createElement("div",{className:l.opacityInputWrap},o.createElement("input",{type:"text",className:l.opacityInput,value:a,onChange:this._handleInput}),o.createElement("span",{className:l.opacityInputPercent},"%")))}_dragSubscribe(){const e=(0,r.ensureNotNull)(this._container).ownerDocument;e&&(e.addEventListener("mouseup",this._mouseUp),e.addEventListener("mousemove",this._mouseMove))}_dragUnsubscribe(){const e=(0,r.ensureNotNull)(this._container).ownerDocument;e&&(e.removeEventListener("mousemove",this._mouseMove),e.removeEventListener("mouseup",this._mouseUp))}_changeOpacity(e){this.setState({inputOpacity:e.toString()}),this.props.onChange(e/100)}}},6914:(e,t,n)=>{"use strict";n.d(t,{basic:()=>i,extended:()=>c,white:()=>s});var o=n(19625);const s=o.colorsPalette["color-white"],r=["ripe-red","tan-orange","banana-yellow","iguana-green","minty-green","sky-blue","tv-blue","deep-blue","grapes-purple","berry-pink"],a=[200,300,400,500,600,700,800,900].map((e=>`color-cold-gray-${e}`));a.unshift("color-white"),a.push("color-black"),r.forEach((e=>{a.push(`color-${e}-500`)}));const i=a.map((e=>o.colorsPalette[e])),l=[];[100,200,300,400,700,900].forEach((e=>{r.forEach((t=>{l.push(`color-${t}-${e}`)}))}));const c=l.map((e=>o.colorsPalette[e]))},59054:(e,t,n)=>{"use strict";n.d(t,{ControlDisclosureView:()=>v})
|
||||
;var o=n(50959),s=n(97754),r=n.n(s),a=n(38528),i=n(67029),l=n(78274),c=n(4523),u=n(9745),d=n(2948),p=n(61442);function h(e){const{isDropped:t}=e;return o.createElement(u.Icon,{className:r()(p.icon,t&&p.dropped),icon:d})}function m(e){const{className:t,disabled:n,isDropped:s}=e;return o.createElement("span",{className:r()(p.button,n&&p.disabled,t)},o.createElement(h,{isDropped:s}))}var g=n(99505);const v=o.forwardRef(((e,t)=>{const{listboxId:n,className:s,listboxClassName:u,listboxTabIndex:d,hideArrowButton:p,matchButtonAndListboxWidths:h,popupPosition:v,disabled:f,isOpened:b,scrollWrapReference:y,repositionOnScroll:C,closeOnHeaderOverlap:x,listboxReference:_,size:w="small",onClose:E,onOpen:S,onListboxFocus:T,onListboxBlur:N,onListboxKeyDown:I,buttonChildren:k,children:P,caretClassName:D,buttonContainerClassName:B,listboxAria:M,...O}=e,R=(0,o.useRef)(null),V=!p&&o.createElement(l.EndSlot,null,o.createElement(m,{isDropped:b,disabled:f,className:D}));return o.createElement(c.PopupMenuDisclosureView,{buttonRef:R,listboxId:n,listboxClassName:u,listboxTabIndex:d,isOpened:b,onClose:E,onOpen:S,listboxReference:_,scrollWrapReference:y,onListboxFocus:T,onListboxBlur:N,onListboxKeyDown:I,listboxAria:M,matchButtonAndListboxWidths:h,popupPosition:v,button:o.createElement(i.ControlSkeleton,{...O,"data-role":"listbox",disabled:f,className:r()(g.button,s),size:w,ref:(0,a.useMergedRefs)([R,t]),middleSlot:o.createElement(l.MiddleSlot,null,o.createElement("span",{className:r()(g["button-children"],p&&g.hiddenArrow,B)},k)),endSlot:V}),popupChildren:P,repositionOnScroll:C,closeOnHeaderOverlap:x})}));v.displayName="ControlDisclosureView"},56512:(e,t,n)=>{"use strict";n.d(t,{useCustomColors:()=>c});var o=n(50959),s=n(56840),r=n(76422);function a(e,t){(0,o.useEffect)((()=>(r.subscribe(e,t,null),()=>{r.unsubscribe(e,t,null)})),[e,t])}var i,l=n(24377);function c(){const[e,t]=(0,o.useState)((0,s.getJSON)("pickerCustomColors",[]));a("add_new_custom_color",(n=>t(u(n,e)))),a("remove_custom_color",(n=>t(d(n,e))));const n=(0,o.useCallback)((t=>{const n=t?(0,l.parseRgb)(t):null;e.some((e=>null!==e&&null!==n&&(0,l.areEqualRgb)((0,l.parseRgb)(e),n)))||(r.emit("add_new_custom_color",t),(0,s.setJSON)("pickerCustomColors",u(t,e)))}),[e]),i=(0,o.useCallback)((t=>{(t>=0||t<e.length)&&(r.emit("remove_custom_color",t),(0,s.setJSON)("pickerCustomColors",d(t,e)))}),[e]);return[e,n,i]}function u(e,t){const n=t.slice();return n.push(e),n.length>29&&n.shift(),n}function d(e,t){return t.filter(((t,n)=>e!==n))}!function(e){e.SettingsKey="pickerCustomColors",e.GlobalAddEventName="add_new_custom_color",e.GlobalRemoveEventName="remove_custom_color",e[e.MaxColors=29]="MaxColors"}(i||(i={}))},90405:(e,t,n)=>{"use strict";n.d(t,{Select:()=>C});var o=n(50959),s=n(43010),r=n(22064),a=n(38528),i=n(16921),l=n(16396),c=n(90484),u=n(20057);var d=n(36762),p=n(26597),h=n(59054),m=n(36104),g=n(63273),v=n(65630);function f(e){return!e.readonly}function b(e,t){return t?.id??(0,r.createDomId)(e,"item",t?.value)}function y(e){const{selectedItem:t,placeholder:n}=e
|
||||
;if(!t)return o.createElement("span",{className:v.placeholder},n);const s=t.selectedContent??t.content??t.value;return o.createElement("span",null,s)}const C=o.forwardRef(((e,t)=>{const{id:n,menuClassName:v,menuItemClassName:C,tabIndex:x,disabled:_,highlight:w,intent:E,hideArrowButton:S,placeholder:T,addPlaceholderToItems:N=!1,value:I,"aria-labelledby":k,onFocus:P,onBlur:D,onClick:B,onChange:M,onKeyDown:O,repositionOnScroll:R=!0,openMenuOnEnter:V=!0,"aria-describedby":L,"aria-invalid":F,...W}=e;let{items:A}=e;if(T&&N){A=[{value:void 0,content:T,id:(0,r.createDomId)(n,"placeholder")},...A]}const{listboxId:H,isOpened:q,isFocused:z,buttonTabIndex:U,listboxTabIndex:Z,highlight:G,intent:K,open:Y,onOpen:$,close:j,toggle:J,buttonFocusBindings:Q,onButtonClick:X,buttonRef:ee,listboxRef:te,buttonAria:ne}=(0,m.useControlDisclosure)({id:n,disabled:_,buttonTabIndex:x,intent:E,highlight:w,onFocus:P,onBlur:D,onClick:B}),oe=A.filter(f),se=oe.find((e=>e.value===I)),[re,ae]=o.useState(T&&N?oe[0].value:se?.value),[ie,le,ce]=(0,i.useKeepActiveItemIntoView)({activeItem:se});(0,s.useIsomorphicLayoutEffect)((()=>ae(se?.value)),[I]);const ue=(0,r.joinDomIds)(k,n),de=ue.length>0?ue:void 0,pe=(0,o.useMemo)((()=>({role:"listbox","aria-labelledby":k,"aria-activedescendant":b(n,se)})),[k,se]),he=(0,o.useCallback)((e=>e.value===re),[re]),me=(0,o.useCallback)((()=>(j(),M&&M(re))),[j,M,re]),ge=(0,d.useItemsKeyboardNavigation)("vertical",g.isRtl,oe,he,(e=>{ae(e.value)}),!1,{next:[40],previous:[38]}),ve=(0,p.useKeyboardToggle)(J,q||V),fe=(0,p.useKeyboardToggle)(me),be=(0,p.useKeyboardClose)(q,Ee),ye=(0,p.useKeyboardOpen)(q,Y),Ce=(0,p.useKeyboardEventHandler)([ve,be,ye]),xe=(0,p.useKeyboardEventHandler)([ge,fe,be]),_e=function(e){const t=(0,o.useRef)(""),n=(0,o.useMemo)((()=>(0,c.default)((()=>{t.current=""}),500)),[]),s=(0,o.useMemo)((()=>(0,u.default)(e,200)),[e]);return(0,o.useCallback)((e=>{e.key.length>0&&e.key.length<3&&(t.current+=e.key,s(t.current,e),n())}),[n,s])}(((t,n)=>{const o=function(e,t,n){return e.find((e=>{const o=t.toLowerCase();return!e.readonly&&(n?n(e).toLowerCase().startsWith(o):!e.readonly&&("string"==typeof e.content&&e.content.toLowerCase().startsWith(o)||"string"==typeof e.textContent&&e.textContent.toLowerCase().startsWith(o)||String(e.value??"").toLowerCase().startsWith(o)))}))}(oe,t,e.getSearchKey);void 0!==o&&M&&(n.stopPropagation(),q||Y(),M(o.value))}));return o.createElement(h.ControlDisclosureView,{...W,...ne,...Q,id:n,role:"button",tabIndex:U,"aria-owns":ne["aria-controls"],"aria-haspopup":"listbox","aria-labelledby":de,disabled:_,hideArrowButton:S,isFocused:z,isOpened:q,highlight:G,intent:K,ref:(0,a.useMergedRefs)([ee,t]),onClick:X,onOpen:function(){ce(se,{duration:0}),$()},onClose:Ee,onKeyDown:function(e){Ce(e),O&&O(e);e.defaultPrevented||_e(e)},listboxId:H,listboxTabIndex:Z,listboxClassName:v,listboxAria:pe,"aria-describedby":L,"aria-invalid":F,listboxReference:te,scrollWrapReference:ie,onListboxKeyDown:function(e){xe(e),e.defaultPrevented||_e(e)},buttonChildren:o.createElement(y,{selectedItem:se??null,
|
||||
placeholder:T}),repositionOnScroll:R},A.map(((e,t)=>{if(e.readonly)return o.createElement(o.Fragment,{key:`readonly_item_${t}`},e.content);const s=b(n,e);return o.createElement(l.PopupMenuItem,{key:s,id:s,className:C,role:"option","aria-selected":I===e.value,isActive:re===e.value,label:e.content??e.value,onClick:we,onClickArg:e.value,isDisabled:e.disabled,reference:t=>le(e,t)})})));function we(e){M&&(M(e),ae(e))}function Ee(){ae(se?.value),j()}}));C.displayName="Select"},90692:(e,t,n)=>{"use strict";n.d(t,{MatchMedia:()=>s});var o=n(50959);class s extends o.PureComponent{constructor(e){super(e),this._handleChange=()=>{this.forceUpdate()},this.state={query:window.matchMedia(this.props.rule)}}componentDidMount(){this._subscribe(this.state.query)}componentDidUpdate(e,t){this.state.query!==t.query&&(this._unsubscribe(t.query),this._subscribe(this.state.query))}componentWillUnmount(){this._unsubscribe(this.state.query)}render(){return this.props.children(this.state.query.matches)}static getDerivedStateFromProps(e,t){return e.rule!==t.query.media?{query:window.matchMedia(e.rule)}:null}_subscribe(e){e.addEventListener("change",this._handleChange)}_unsubscribe(e){e.removeEventListener("change",this._handleChange)}}},64706:(e,t,n)=>{"use strict";n.d(t,{MenuContext:()=>o});const o=n(50959).createContext(null)},27317:(e,t,n)=>{"use strict";n.d(t,{DEFAULT_MENU_THEME:()=>v,Menu:()=>b});var o=n(50959),s=n(97754),r=n.n(s),a=n(50151),i=n(9859),l=n(14729),c=n(50655),u=n(59064),d=n(67961),p=n(26709),h=n(83021),m=n(64706),g=n(67797);const v=g;var f;!function(e){e[e.IndentFromWindow=0]="IndentFromWindow"}(f||(f={}));class b extends o.PureComponent{constructor(e){super(e),this._containerRef=null,this._scrollWrapRef=null,this._raf=null,this._scrollRaf=null,this._scrollTimeout=void 0,this._manager=new d.OverlapManager,this._hotkeys=null,this._scroll=0,this._handleContainerRef=e=>{this._containerRef=e,this.props.reference&&("function"==typeof this.props.reference&&this.props.reference(e),"object"==typeof this.props.reference&&(this.props.reference.current=e))},this._handleScrollWrapRef=e=>{this._scrollWrapRef=e,"function"==typeof this.props.scrollWrapReference&&this.props.scrollWrapReference(e),"object"==typeof this.props.scrollWrapReference&&(this.props.scrollWrapReference.current=e)},this._handleCustomRemeasureDelegate=()=>{this._resizeForced(),this._handleMeasure()},this._handleMeasure=({callback:e,forceRecalcPosition:t}={})=>{if(this.state.isMeasureValid&&!t)return;const{position:n}=this.props,o=(0,a.ensureNotNull)(this._containerRef);let s=o.getBoundingClientRect();const r=document.documentElement.clientHeight,l=document.documentElement.clientWidth,c=this.props.closeOnScrollOutsideOffset??0;let u=r-0-c;const d=s.height>u;if(d){(0,a.ensureNotNull)(this._scrollWrapRef).style.overflowY="scroll",s=o.getBoundingClientRect()}const{width:p,height:h}=s,m="function"==typeof n?n({contentWidth:p,contentHeight:h,availableWidth:l,availableHeight:r}):n,g=m?.indentFromWindow?.left??0,v=l-(m.overrideWidth??p)-(m?.indentFromWindow?.right??0),f=(0,
|
||||
i.clamp)(m.x,g,Math.max(g,v)),b=(m?.indentFromWindow?.top??0)+c,y=r-(m.overrideHeight??h)-(m?.indentFromWindow?.bottom??0);let C=(0,i.clamp)(m.y,b,Math.max(b,y));if(m.forbidCorrectYCoord&&C<m.y&&(u-=m.y-C,C=m.y),t&&void 0!==this.props.closeOnScrollOutsideOffset&&m.y<=this.props.closeOnScrollOutsideOffset)return void this._handleGlobalClose(!0);const x=m.overrideHeight??(d?u:void 0);this.setState({appearingMenuHeight:t?this.state.appearingMenuHeight:x,appearingMenuWidth:t?this.state.appearingMenuWidth:m.overrideWidth,appearingPosition:{x:f,y:C},isMeasureValid:!0},(()=>{this.props.doNotRestorePosition||this._restoreScrollPosition(),e&&e()}))},this._restoreScrollPosition=()=>{const e=document.activeElement,t=(0,a.ensureNotNull)(this._containerRef);if(null!==e&&t.contains(e))try{e.scrollIntoView()}catch(e){}else(0,a.ensureNotNull)(this._scrollWrapRef).scrollTop=this._scroll},this._resizeForced=()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0})},this._resize=()=>{null===this._raf&&(this._raf=requestAnimationFrame((()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0}),this._raf=null})))},this._handleGlobalClose=e=>{this.props.onClose(e)},this._handleSlot=e=>{this._manager.setContainer(e)},this._handleScroll=()=>{this._scroll=(0,a.ensureNotNull)(this._scrollWrapRef).scrollTop},this._handleScrollOutsideEnd=()=>{clearTimeout(this._scrollTimeout),this._scrollTimeout=setTimeout((()=>{this._handleMeasure({forceRecalcPosition:!0})}),80)},this._handleScrollOutside=e=>{e.target!==this._scrollWrapRef&&(this._handleScrollOutsideEnd(),null===this._scrollRaf&&(this._scrollRaf=requestAnimationFrame((()=>{this._handleMeasure({forceRecalcPosition:!0}),this._scrollRaf=null}))))},this.state={}}componentDidMount(){this._handleMeasure({callback:this.props.onOpen});const{customCloseDelegate:e=u.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.subscribe(this,this._handleGlobalClose),t?.subscribe(null,this._handleCustomRemeasureDelegate),window.addEventListener("resize",this._resize);const n=null!==this.context;this._hotkeys||n||(this._hotkeys=p.createGroup({desc:"Popup menu"}),this._hotkeys.add({desc:"Close",hotkey:27,handler:()=>{this.props.onKeyboardClose&&this.props.onKeyboardClose(),this._handleGlobalClose()}})),this.props.repositionOnScroll&&window.addEventListener("scroll",this._handleScrollOutside,{capture:!0})}componentDidUpdate(){this._handleMeasure()}componentWillUnmount(){const{customCloseDelegate:e=u.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.unsubscribe(this,this._handleGlobalClose),t?.unsubscribe(null,this._handleCustomRemeasureDelegate),window.removeEventListener("resize",this._resize),window.removeEventListener("scroll",this._handleScrollOutside,{capture:!0}),this._hotkeys&&(this._hotkeys.destroy(),this._hotkeys=null),null!==this._raf&&(cancelAnimationFrame(this._raf),this._raf=null),null!==this._scrollRaf&&(cancelAnimationFrame(this._scrollRaf),
|
||||
this._scrollRaf=null),this._scrollTimeout&&clearTimeout(this._scrollTimeout)}render(){const{id:e,role:t,"aria-label":n,"aria-labelledby":s,"aria-activedescendant":a,"aria-hidden":i,"aria-describedby":u,"aria-invalid":d,children:p,minWidth:v,theme:f=g,className:b,maxHeight:C,onMouseOver:x,onMouseOut:_,onKeyDown:w,onFocus:E,onBlur:S}=this.props,{appearingMenuHeight:T,appearingMenuWidth:N,appearingPosition:I,isMeasureValid:k}=this.state,P={"--ui-kit-menu-max-width":`${I&&I.x}px`,maxWidth:"calc(100vw - var(--ui-kit-menu-max-width) - 6px)"};return o.createElement(m.MenuContext.Provider,{value:this},o.createElement(h.SubmenuHandler,null,o.createElement(c.SlotContext.Provider,{value:this._manager},o.createElement("div",{id:e,role:t,"aria-label":n,"aria-labelledby":s,"aria-activedescendant":a,"aria-hidden":i,"aria-describedby":u,"aria-invalid":d,className:r()(b,f.menuWrap,!k&&f.isMeasuring),style:{height:T,left:I&&I.x,minWidth:v,position:"fixed",top:I&&I.y,width:N,...this.props.limitMaxWidth&&P},"data-name":this.props["data-name"],"data-tooltip-show-on-focus":this.props["data-tooltip-show-on-focus"],ref:this._handleContainerRef,onScrollCapture:this.props.onScroll,onContextMenu:l.preventDefaultForContextMenu,tabIndex:this.props.tabIndex,onMouseOver:x,onMouseOut:_,onKeyDown:w,onFocus:E,onBlur:S},o.createElement("div",{className:r()(f.scrollWrap,!this.props.noMomentumBasedScroll&&f.momentumBased),style:{overflowY:void 0!==T?"scroll":"auto",maxHeight:C},onScrollCapture:this._handleScroll,ref:this._handleScrollWrapRef},o.createElement(y,{className:f.menuBox},p)))),o.createElement(c.Slot,{reference:this._handleSlot})))}update(e){e?this._resizeForced():this._resize()}focus(e){this._containerRef?.focus(e)}blur(){this._containerRef?.blur()}}function y(e){const t=(0,a.ensureNotNull)((0,o.useContext)(h.SubmenuContext)),n=o.useRef(null);return o.createElement("div",{ref:n,className:e.className,onMouseOver:function(e){if(!(null!==t.current&&e.target instanceof Node&&(o=e.target,n.current?.contains(o))))return;var o;t.isSubmenuNode(e.target)||t.setCurrent(null)},"data-name":"menu-inner"},e.children)}b.contextType=h.SubmenuContext},29197:(e,t,n)=>{"use strict";n.d(t,{CloseDelegateContext:()=>r});var o=n(50959),s=n(59064);const r=o.createContext(s.globalCloseDelegate)},42842:(e,t,n)=>{"use strict";n.d(t,{Portal:()=>c,PortalContext:()=>u});var o=n(50959),s=n(32227),r=n(55698),a=n(67961),i=n(34811),l=n(99663);class c extends o.PureComponent{constructor(){super(...arguments),this._uuid=(0,r.nanoid)()}componentWillUnmount(){this._manager().removeWindow(this._uuid)}render(){const e=this._manager().ensureWindow(this._uuid,this.props.layerOptions);e.style.top=this.props.top||"",e.style.bottom=this.props.bottom||"",e.style.left=this.props.left||"",e.style.right=this.props.right||"",e.style.pointerEvents=this.props.pointerEvents||"";const t=this.props.className;return t&&("string"==typeof t?e.classList.add(t):e.classList.add(...t)),
|
||||
x.safeShortName)(m),t="option"===y?.type,o=y?.["underlying-symbol"],r=u.enabled("symbol_search_option_chain_selector")&&t&&o?{type:"option",value:m,underlying:o}:e,i=(0,p.getSymbolSearchCompleteOverrideFunction)();(0,h.showSymbolSearchItemsDialog)({onSearchComplete:e=>{i(e[0].symbol,e[0].result).then((e=>{s(e.symbol),g(e.name)}))},dialogTitle:a.t(null,void 0,n(63245)),defaultValue:r,manager:v,onClose:()=>{b&&b.focus()},searchInitiationPoint:"indicatorInputs",enableOptionsChain:u.enabled("symbol_search_option_chain_selector"),showSpreadActions:u.enabled("show_spread_operators")&&u.enabled("studies_symbol_search_spread_operators")})},disabled:i,className:r()(d,u.enabled("uppercase_instrument_names")&&_.uppercase)})}function E(e){if("definition"in e){const{propType:t,properties:n,id:s,title:r="",solutionId:a}=e.definition,l=n[t],c=l.value()||"",u=e=>{l.setValue(e)};return o.createElement(b.CommonSection,{id:s,title:r,solutionId:a},o.createElement(y.CellWrap,null,o.createElement(w,{symbol:(0,i.ensureDefined)(c),onSymbolChanged:u})))}{const{study:t,value:n,input:{id:s,name:a},onChange:l,disabled:c,hasTooltip:u}=e,p=e=>{const n=(0,d.getInternalSymbolName)(e,t);l(n,s,a)};return o.createElement(w,{symbol:(0,i.ensureDefined)(n),onSymbolChanged:p,disabled:c,className:r()(u&&_.hasTooltip)})}}},1861:(e,t,n)=>{"use strict";n.d(t,{showSymbolSearchItemsDialog:()=>l});var o=n(50959),s=n(50655),r=n(51826),a=n(73280),i=n(87896);function l(e){const{symbolTypeFilter:t,initialMode:n="symbolSearch",autofocus:l=!0,defaultValue:c,showSpreadActions:u,selectSearchOnInit:d,onSearchComplete:p,dialogTitle:h,placeholder:m,fullscreen:g,initialScreen:v,wrapper:f,dialog:b,contentItem:y,onClose:C,onOpen:x,footer:_,symbolTypes:w,searchInput:E,emptyState:S,hideMarkedListFlag:T,dialogWidth:N="auto",manager:I,shouldReturnFocus:k,onSymbolFiltersParamsChange:P,onEmptyResults:D,customSearchSymbols:B,enableOptionsChain:M,searchInitiationPoint:O}=e;if(r.dialogsOpenerManager.isOpened("SymbolSearch")||r.dialogsOpenerManager.isOpened("ChangeIntervalDialog"))return;const R=document.createElement("div"),V=o.createElement(s.SlotContext.Provider,{value:I??null},o.createElement(a.SymbolSearchItemsDialog,{symbolTypeFilter:t,onClose:F,initialMode:n,defaultValue:c,showSpreadActions:u,hideMarkedListFlag:T,selectSearchOnInit:d,onSearchComplete:p,dialogTitle:h,placeholder:m,fullscreen:g,initialScreen:v,wrapper:f,dialog:b,contentItem:y,footer:_,symbolTypes:w,searchInput:E,emptyState:S,autofocus:l,dialogWidth:N,shouldReturnFocus:k,onSymbolFiltersParamsChange:P,onEmptyResults:D,customSearchSymbols:B,enableOptionsChain:M,searchInitiationPoint:O})),L=(0,i.createReactRoot)(V,R);function F(){L.unmount(),r.dialogsOpenerManager.setAsClosed("SymbolSearch"),C&&C()}return r.dialogsOpenerManager.setAsOpened("SymbolSearch"),x&&x(),{close:F}}},73146:(e,t,n)=>{"use strict";n.d(t,{createAdapter:()=>a,doesStudyLikeAffectSave:()=>i});var o=n(32755),s=n(85719),r=n(79036);function a(e){if((0,o.isLineTool)(e))return{isPine:()=>!1,isStandardPine:()=>!1,canOverrideMinTick:()=>!1,
|
||||
resolvedSymbolInfoBySymbol:()=>{throw new TypeError("Only study is supported.")},symbolsResolved:()=>{throw new TypeError("Only study is supported.")},parentSources:()=>{throw new TypeError("Only study is supported.")},getAllChildren:()=>[],sourceId:()=>{throw new TypeError("Only study is supported.")},inputs:()=>({}),parentSourceForInput:()=>{throw new TypeError("Only study is supported.")}};if((0,r.isStudy)(e))return e;if("isInputsStudy"in e)return e;throw new TypeError("Unsupported source type.")}function i(e){return(0,r.isStudy)(e)||!s.lineToolsDoNotAffectChartInvalidation}},45560:(e,t,n)=>{"use strict";n.d(t,{useDefinitionProperty:()=>r});var o=n(50959),s=n(71953);const r=e=>{const t="property"in e?e.property:void 0,n="defaultValue"in e?e.defaultValue:e.property.value(),[r,a]=(0,o.useState)(t?t.value():n);(0,o.useEffect)((()=>{if(t){const n={};return a(t.value()),t.subscribe(n,(t=>{const n=t.value();e.handler&&e.handler(n),a(n)})),()=>{t.unsubscribeAll(n)}}return()=>{}}),[t]);return[r,e=>{if(void 0!==t){const n=t.value();s.logger.logNormal(`Changing property value from "${n}" to "${e}"`),t.setValue(e)}}]}},78260:(e,t,n)=>{"use strict";n.d(t,{CellWrap:()=>i});var o=n(50959),s=n(97754),r=n.n(s),a=n(92492);function i(e){return o.createElement("div",{className:r()(a.wrap,e.className)},e.children)}},53424:(e,t,n)=>{"use strict";n.d(t,{CheckableTitle:()=>c});var o=n(50959),s=n(15294),r=n(45560);function a(e){const{property:t,...n}=e,[a,i]=(0,r.useDefinitionProperty)({property:t}),l="mixed"===a;return o.createElement(s.Checkbox,{...n,name:"toggle-enabled",checked:l||a,indeterminate:l,onChange:function(){i("mixed"===a||!a)}})}var i=n(78260),l=n(52257);function c(e){const{property:t,disabled:n,title:s,className:r,name:c}=e,u=o.createElement("span",{className:l.title},s);return o.createElement(i.CellWrap,{className:r},t?o.createElement(a,{name:c,className:l.checkbox,property:t,disabled:n,label:u,labelAlignBaseline:!0}):u)}},31356:(e,t,n)=>{"use strict";n.d(t,{CommonSection:()=>a});var o=n(50959),s=n(71891),r=n(53424);n(7208);function a(e){const{id:t,offset:n,disabled:a,checked:i,title:l,children:c,solutionId:u,infoTooltip:d}=e;return o.createElement(s.PropertyTable.Row,null,o.createElement(s.PropertyTable.Cell,{placement:"first",verticalAlign:"adaptive",offset:n,"data-section-name":t,colSpan:Boolean(c)?void 0:2,checkableTitle:!0},o.createElement(r.CheckableTitle,{name:`is-enabled-${t}`,title:l,disabled:a,property:i}),u&&!Boolean(c)&&!1,d&&!Boolean(c)&&!1),Boolean(c)&&o.createElement(s.PropertyTable.Cell,{placement:"last","data-section-name":t},c,u&&!1,d&&!1))}},86067:(e,t,n)=>{"use strict";n.d(t,{GroupTitleSection:()=>i});var o=n(50959),s=n(71891),r=n(53424),a=n(71035);function i(e){return o.createElement(s.PropertyTable.Row,null,o.createElement(s.PropertyTable.Cell,{className:a.titleWrap,placement:"first",verticalAlign:"adaptive",colSpan:2,"data-section-name":e.name,checkableTitle:!0},o.createElement(r.CheckableTitle,{title:e.title,name:`is-enabled-${e.name}`,className:a.title})))}},71953:(e,t,n)=>{"use strict";n.d(t,{
|
||||
logger:()=>o});const o=(0,n(9343).getLogger)("Platform.GUI.PropertyDefinitionTrace")},16697:(e,t,n)=>{"use strict";n.d(t,{ColorPicker:()=>q});var o=n(50959),s=n(97754),r=n.n(s),a=n(11542),i=n(59369),l=n(82665),c=n(24377),u=n(50151),d=n(49483),p=n(20520),h=n(16396),m=n(6914),g=n(50238),v=n(93544),f=n(11992);const b=4;function y(e){const{color:t,selected:r,onSelect:i,onSwatchRemove:l}=e,[c,y]=(0,o.useState)(!1),[C,x]=(0,g.useRovingTabindexElement)(null),_=Boolean(l)&&!d.CheckMobile.any();return o.createElement(o.Fragment,null,o.createElement("button",{ref:C,style:t?{color:t}:void 0,className:s(f.swatch,c&&f.hover,r&&f.selected,!t&&f.empty,String(t).toLowerCase()===m.white&&f.white),onClick:function(){i(t)},onContextMenu:_?w:void 0,tabIndex:x,"data-role":"swatch"}),_&&o.createElement(p.PopupMenu,{isOpened:c,onClose:w,position:function(){const e=(0,u.ensureNotNull)(C.current).getBoundingClientRect();return{x:e.left,y:e.top+e.height+b}},onClickOutside:w},o.createElement(h.PopupMenuItem,{className:f.contextItem,label:a.t(null,void 0,n(89984)),icon:v,onClick:function(){w(),(0,u.ensureDefined)(l)()},dontClosePopup:!0})));function w(){y(!c)}}const C=10;function x(e){const{colors:t,color:n,children:s,onSelect:r,onRemoveCustomColor:a}=e;if(!t)return null;const i=n?(0,c.parseRgb)(String(n)):void 0,u=(0,l.default)(t,C);return o.createElement("div",{className:f.swatches},u.map(((e,t)=>o.createElement("div",{className:f.row,"data-role":"row",key:t},e.map(((e,n)=>o.createElement(y,{key:String(e)+n,color:e,selected:i&&(0,c.areEqualRgb)(i,(0,c.parseRgb)(String(e))),onSelect:d,onSwatchRemove:a?()=>function(e,t){const n=e*C+t;a?.(n)}(t,n):void 0})))))),s);function d(e){r&&r(e)}}var _=n(54368),w=n(67248);function E(e){const t=`Invalid RGB color: ${e}`;if(null===e)throw new Error(t);const n=e.match(/^#?([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})$/i);if(null===n)throw new Error(t);const[,o,s,r]=n;if(!o||!s||!r)throw new Error(t);const a=parseInt(o,16)/255,i=parseInt(s,16)/255,l=parseInt(r,16)/255,c=Math.max(a,i,l),u=Math.min(a,i,l);let d;const p=c,h=c-u,m=0===c?0:h/c;if(c===u)d=0;else{switch(c){case a:d=(i-l)/h+(i<l?6:0);break;case i:d=(l-a)/h+2;break;case l:d=(a-i)/h+4;break;default:d=0}d/=6}return{h:d,s:m,v:p}}var S=n(20057),T=n(68335),N=n(9859),I=n(87109);const k=[37,39,38,40],P=.01;class D extends o.PureComponent{constructor(){super(...arguments),this._container=null,this._refContainer=e=>{this._container=e},this._handlePosition=e=>{const{hsv:{h:t},onChange:n}=this.props;if(!n)return;const o=(0,u.ensureNotNull)(this._container).getBoundingClientRect(),s=e.clientX-o.left,r=e.clientY-o.top;n({h:t,s:(0,N.clamp)(s/o.width,0,1),v:(0,N.clamp)(1-r/o.height,0,1)})},this._handleKeyDown=e=>{const{hsv:{h:t,s:n,v:o},onChange:s}=this.props,r=(0,T.hashFromEvent)(e);if(!s||!k.includes(r))return;if(37===r||39===r){return void s({h:t,s:(0,N.clamp)(37===r?n-P:n+P,0,1),v:o})}s({h:t,s:n,v:(0,N.clamp)(40===r?o-P:o+P,0,1)})},this._mouseDown=e=>{window.addEventListener("mouseup",this._mouseUp),window.addEventListener("mousemove",this._mouseMove)},
|
||||
this._mouseUp=e=>{window.removeEventListener("mousemove",this._mouseMove),window.removeEventListener("mouseup",this._mouseUp),this._handlePosition(e)},this._mouseMove=(0,S.default)(this._handlePosition,100),this._handleTouch=e=>{this._handlePosition(e.nativeEvent.touches[0])}}render(){const{className:e,hsv:{h:t,s:n,v:s}}=this.props,a=`hsl(${360*t}, 100%, 50%)`;return o.createElement("div",{tabIndex:0,className:r()(I.accessible,e),onKeyDown:this._handleKeyDown},o.createElement("div",{className:I.saturation,style:{backgroundColor:a},ref:this._refContainer,onMouseDown:this._mouseDown,onTouchStart:this._handleTouch,onTouchMove:this._handleTouch},o.createElement("div",{className:I.pointer,style:{left:100*n+"%",top:100*(1-s)+"%"}})))}}var B=n(58065);class M extends o.PureComponent{constructor(){super(...arguments),this._container=null,this._refContainer=e=>{this._container=e},this._handlePosition=e=>{const{hsv:{s:t,v:n},onChange:o}=this.props;if(!o)return;const s=(0,u.ensureNotNull)(this._container).getBoundingClientRect(),r=e.clientY-s.top;o({h:(0,N.clamp)(r/s.height,0,1),s:t,v:n})},this._handleKeyDown=e=>{const{hsv:{h:t,s:n,v:o},onChange:s}=this.props,r=(0,T.hashFromEvent)(e);if(!s||38!==r&&40!==r)return;s({h:(0,N.clamp)(38===r?t-.01:t+.01,0,1),s:n,v:o})},this._mouseDown=e=>{window.addEventListener("mouseup",this._mouseUp),window.addEventListener("mousemove",this._mouseMove)},this._mouseUp=e=>{window.removeEventListener("mousemove",this._mouseMove),window.removeEventListener("mouseup",this._mouseUp),this._handlePosition(e)},this._mouseMove=(0,S.default)(this._handlePosition,100),this._handleTouch=e=>{this._handlePosition(e.nativeEvent.touches[0])}}render(){const{className:e,hsv:{h:t}}=this.props;return o.createElement("div",{className:r()(B.hue,B.accessible,e),tabIndex:0,onKeyDown:this._handleKeyDown},o.createElement("div",{className:B.pointerContainer,ref:this._refContainer,onMouseDown:this._mouseDown,onTouchStart:this._handleTouch,onTouchMove:this._handleTouch},o.createElement("div",{className:B.pointer,style:{top:100*t+"%"}})))}}var O=n(75187);const R="#000000",V=a.t(null,{context:"Color Picker"},n(55517));class L extends o.PureComponent{constructor(e){super(e),this._inputRef=o.createRef(),this._handleHSV=e=>{const t=function(e){const{h:t,s:n,v:o}=e;let s,r,a;const i=Math.floor(6*t),l=6*t-i,c=o*(1-n),u=o*(1-l*n),d=o*(1-(1-l)*n);switch(i%6){case 0:s=o,r=d,a=c;break;case 1:s=u,r=o,a=c;break;case 2:s=c,r=o,a=d;break;case 3:s=c,r=u,a=o;break;case 4:s=d,r=c,a=o;break;case 5:s=o,r=c,a=u;break;default:s=0,r=0,a=0}return"#"+[255*s,255*r,255*a].map((e=>("0"+Math.round(e).toString(16)).replace(/.+?([a-f0-9]{2})$/i,"$1"))).join("")}(e)||R;this.setState({color:t,inputColor:F(t),hsv:e}),this.props.onSelect(t)},this._handleInput=e=>{const t=F(e.currentTarget.value);try{const e=E(t),n=`#${t}`;this.setState({color:n,inputColor:t,hsv:e}),this.props.onSelect(n)}catch(e){this.setState({inputColor:t})}},this._handleAddColor=()=>this.props.onAdd(this.state.color);const t=e.color||R;this.state={color:t,inputColor:F(t),hsv:E(t)}}
|
||||
componentDidMount(){d.CheckMobile.any()||this._inputRef.current?.focus()}render(){const{color:e,hsv:t,inputColor:n}=this.state;return o.createElement("div",{className:O.container},o.createElement("div",{className:O.form},o.createElement("div",{className:r()(O.swatch,String(e).toLowerCase()===m.white&&O.white),style:{backgroundColor:e}}),o.createElement("div",{className:O.inputWrap},o.createElement("span",{className:O.inputHash},"#"),o.createElement("input",{ref:this._inputRef,type:"text",className:O.input,value:n,onChange:this._handleInput})),o.createElement("div",{className:O.buttonWrap},o.createElement(w.Button,{size:"s",onClick:this._handleAddColor},V))),o.createElement("div",{className:O.hueSaturationWrap},o.createElement(D,{className:O.saturation,hsv:t,onChange:this._handleHSV}),o.createElement(M,{className:O.hue,hsv:t,onChange:this._handleHSV})))}}function F(e){return e.replace(/^#/,"")}var W=n(60387);const A=a.t(null,{context:"Color Picker"},n(29619)),H=a.t(null,{context:"Color Picker"},n(80936));function q(e){const{color:t,opacity:n,selectCustom:s,selectOpacity:a,customColors:l,onRemoveCustomColor:c,onToggleCustom:u,onOpacityChange:d,menu:p}=e,[h,g]=(0,o.useState)(!1),v="number"==typeof n?n:1,[f,b]=(0,i.useRowsNavigation)();return(0,o.useLayoutEffect)((()=>{p&&p.update()}),[a,p]),h?o.createElement(L,{color:t,onSelect:y,onAdd:function(t){g(!1),u?.(!1);const{onAddColor:n}=e;n&&n(t)}}):o.createElement("div",{className:W.container},o.createElement("div",{ref:f,onKeyDown:b},o.createElement(x,{colors:m.basic,color:t,onSelect:y}),o.createElement(x,{colors:m.extended,color:t,onSelect:y}),o.createElement("div",{className:W.separator}),o.createElement(x,{colors:l,color:t,onSelect:y,onRemoveCustomColor:c},s&&o.createElement(o.Fragment,null,l?.length?o.createElement("button",{title:A,onClick:C,className:r()(W.customButton,W.accessible,"apply-common-tooltip"),tabIndex:-1}):o.createElement("div",{"data-role":"row"},o.createElement("button",{title:A,onClick:C,className:r()(W.customButton,W.accessible,"apply-common-tooltip"),tabIndex:-1}))))),a&&o.createElement(o.Fragment,null,o.createElement("div",{className:W.sectionTitle},H),o.createElement(_.Opacity,{color:t,opacity:v,onChange:function(e){d&&d(e)}})));function y(t){const{onColorChange:n}=e;n&&n(t,h)}function C(e){g(!0),u?.(!0)}}},54368:(e,t,n)=>{"use strict";n.d(t,{Opacity:()=>c});var o=n(50959),s=n(97754),r=n(50151),a=n(9859),i=n(68335),l=n(94085);class c extends o.PureComponent{constructor(e){super(e),this._container=null,this._pointer=null,this._raf=null,this._refContainer=e=>{this._container=e},this._refPointer=e=>{this._pointer=e},this._handlePosition=e=>{null===this._raf&&(this._raf=requestAnimationFrame((()=>{const t=(0,r.ensureNotNull)(this._container),n=(0,r.ensureNotNull)(this._pointer),o=t.getBoundingClientRect(),s=n.offsetWidth,i=e.clientX-s/2-o.left,l=(0,a.clamp)(i/(o.width-s),0,1);this.setState({inputOpacity:Math.round(100*l).toString()}),this.props.onChange(l),this._raf=null})))},this._onSliderClick=e=>{this._handlePosition(e.nativeEvent),
|
||||
this._dragSubscribe()},this._mouseUp=e=>{this.setState({isPointerDragged:!1}),this._dragUnsubscribe(),this._handlePosition(e)},this._mouseMove=e=>{this.setState({isPointerDragged:!0}),this._handlePosition(e)},this._onTouchStart=e=>{this._handlePosition(e.nativeEvent.touches[0])},this._handleTouch=e=>{this.setState({isPointerDragged:!0}),this._handlePosition(e.nativeEvent.touches[0])},this._handleTouchEnd=()=>{this.setState({isPointerDragged:!1})},this._handleInput=e=>{const t=e.currentTarget.value,n=Number(t)/100;this.setState({inputOpacity:t}),Number.isNaN(n)||n>1||this.props.onChange(n)},this._handleKeyDown=e=>{const t=(0,i.hashFromEvent)(e);if(37!==t&&39!==t)return;e.preventDefault();const n=Number(this.state.inputOpacity);37===t&&0!==n&&this._changeOpacity(n-1),39===t&&100!==n&&this._changeOpacity(n+1)},this.state={inputOpacity:Math.round(100*e.opacity).toString(),isPointerDragged:!1}}componentWillUnmount(){null!==this._raf&&(cancelAnimationFrame(this._raf),this._raf=null),this._dragUnsubscribe()}render(){const{color:e,opacity:t,hideInput:n,disabled:r}=this.props,{inputOpacity:a,isPointerDragged:i}=this.state,c={color:e||void 0};return o.createElement("div",{className:l.opacity},o.createElement("div",{className:s(l.opacitySlider,l.accessible),style:c,tabIndex:r?-1:0,ref:this._refContainer,onMouseDown:this._onSliderClick,onTouchStart:this._onTouchStart,onTouchMove:this._handleTouch,onTouchEnd:this._handleTouchEnd,onKeyDown:this._handleKeyDown,"aria-disabled":r},o.createElement("div",{className:l.opacitySliderGradient,style:{backgroundImage:`linear-gradient(90deg, transparent, ${e})`}}),o.createElement("div",{className:l.opacityPointerWrap},o.createElement("div",{className:s(l.pointer,i&&l.dragged),style:{left:100*t+"%"},ref:this._refPointer}))),!n&&o.createElement("div",{className:l.opacityInputWrap},o.createElement("input",{type:"text",className:l.opacityInput,value:a,onChange:this._handleInput}),o.createElement("span",{className:l.opacityInputPercent},"%")))}_dragSubscribe(){const e=(0,r.ensureNotNull)(this._container).ownerDocument;e&&(e.addEventListener("mouseup",this._mouseUp),e.addEventListener("mousemove",this._mouseMove))}_dragUnsubscribe(){const e=(0,r.ensureNotNull)(this._container).ownerDocument;e&&(e.removeEventListener("mousemove",this._mouseMove),e.removeEventListener("mouseup",this._mouseUp))}_changeOpacity(e){this.setState({inputOpacity:e.toString()}),this.props.onChange(e/100)}}},6914:(e,t,n)=>{"use strict";n.d(t,{basic:()=>i,extended:()=>c,white:()=>s});var o=n(19625);const s=o.colorsPalette["color-white"],r=["ripe-red","tan-orange","banana-yellow","iguana-green","minty-green","sky-blue","tv-blue","deep-blue","grapes-purple","berry-pink"],a=[200,300,400,500,600,700,800,900].map((e=>`color-cold-gray-${e}`));a.unshift("color-white"),a.push("color-black"),r.forEach((e=>{a.push(`color-${e}-500`)}));const i=a.map((e=>o.colorsPalette[e])),l=[];[100,200,300,400,700,900].forEach((e=>{r.forEach((t=>{l.push(`color-${t}-${e}`)}))}));const c=l.map((e=>o.colorsPalette[e]))},59054:(e,t,n)=>{"use strict"
|
||||
;n.d(t,{ControlDisclosureView:()=>v});var o=n(50959),s=n(97754),r=n.n(s),a=n(38528),i=n(67029),l=n(78274),c=n(4523),u=n(9745),d=n(2948),p=n(61442);function h(e){const{isDropped:t}=e;return o.createElement(u.Icon,{className:r()(p.icon,t&&p.dropped),icon:d})}function m(e){const{className:t,disabled:n,isDropped:s}=e;return o.createElement("span",{className:r()(p.button,n&&p.disabled,t)},o.createElement(h,{isDropped:s}))}var g=n(99505);const v=o.forwardRef(((e,t)=>{const{listboxId:n,className:s,listboxClassName:u,listboxTabIndex:d,hideArrowButton:p,matchButtonAndListboxWidths:h,popupPosition:v,disabled:f,isOpened:b,scrollWrapReference:y,repositionOnScroll:C,closeOnHeaderOverlap:x,listboxReference:_,size:w="small",onClose:E,onOpen:S,onListboxFocus:T,onListboxBlur:N,onListboxKeyDown:I,buttonChildren:k,children:P,caretClassName:D,buttonContainerClassName:B,listboxAria:M,...O}=e,R=(0,o.useRef)(null),V=!p&&o.createElement(l.EndSlot,null,o.createElement(m,{isDropped:b,disabled:f,className:D}));return o.createElement(c.PopupMenuDisclosureView,{buttonRef:R,listboxId:n,listboxClassName:u,listboxTabIndex:d,isOpened:b,onClose:E,onOpen:S,listboxReference:_,scrollWrapReference:y,onListboxFocus:T,onListboxBlur:N,onListboxKeyDown:I,listboxAria:M,matchButtonAndListboxWidths:h,popupPosition:v,button:o.createElement(i.ControlSkeleton,{...O,"data-role":"listbox",disabled:f,className:r()(g.button,s),size:w,ref:(0,a.useMergedRefs)([R,t]),middleSlot:o.createElement(l.MiddleSlot,null,o.createElement("span",{className:r()(g["button-children"],p&&g.hiddenArrow,B)},k)),endSlot:V}),popupChildren:P,repositionOnScroll:C,closeOnHeaderOverlap:x})}));v.displayName="ControlDisclosureView"},56512:(e,t,n)=>{"use strict";n.d(t,{useCustomColors:()=>c});var o=n(50959),s=n(56840),r=n(76422);function a(e,t){(0,o.useEffect)((()=>(r.subscribe(e,t,null),()=>{r.unsubscribe(e,t,null)})),[e,t])}var i,l=n(24377);function c(){const[e,t]=(0,o.useState)((0,s.getJSON)("pickerCustomColors",[]));a("add_new_custom_color",(n=>t(u(n,e)))),a("remove_custom_color",(n=>t(d(n,e))));const n=(0,o.useCallback)((t=>{const n=t?(0,l.parseRgb)(t):null;e.some((e=>null!==e&&null!==n&&(0,l.areEqualRgb)((0,l.parseRgb)(e),n)))||(r.emit("add_new_custom_color",t),(0,s.setJSON)("pickerCustomColors",u(t,e)))}),[e]),i=(0,o.useCallback)((t=>{(t>=0||t<e.length)&&(r.emit("remove_custom_color",t),(0,s.setJSON)("pickerCustomColors",d(t,e)))}),[e]);return[e,n,i]}function u(e,t){const n=t.slice();return n.push(e),n.length>29&&n.shift(),n}function d(e,t){return t.filter(((t,n)=>e!==n))}!function(e){e.SettingsKey="pickerCustomColors",e.GlobalAddEventName="add_new_custom_color",e.GlobalRemoveEventName="remove_custom_color",e[e.MaxColors=29]="MaxColors"}(i||(i={}))},90405:(e,t,n)=>{"use strict";n.d(t,{Select:()=>C});var o=n(50959),s=n(43010),r=n(22064),a=n(38528),i=n(16921),l=n(16396),c=n(90484),u=n(20057);var d=n(36762),p=n(26597),h=n(59054),m=n(36104),g=n(63273),v=n(65630);function f(e){return!e.readonly}function b(e,t){return t?.id??(0,r.createDomId)(e,"item",t?.value)}function y(e){
|
||||
const{selectedItem:t,placeholder:n}=e;if(!t)return o.createElement("span",{className:v.placeholder},n);const s=t.selectedContent??t.content??t.value;return o.createElement("span",null,s)}const C=o.forwardRef(((e,t)=>{const{id:n,menuClassName:v,menuItemClassName:C,tabIndex:x,disabled:_,highlight:w,intent:E,hideArrowButton:S,placeholder:T,addPlaceholderToItems:N=!1,value:I,"aria-labelledby":k,onFocus:P,onBlur:D,onClick:B,onChange:M,onKeyDown:O,repositionOnScroll:R=!0,openMenuOnEnter:V=!0,"aria-describedby":L,"aria-invalid":F,...W}=e;let{items:A}=e;if(T&&N){A=[{value:void 0,content:T,id:(0,r.createDomId)(n,"placeholder")},...A]}const{listboxId:H,isOpened:q,isFocused:z,buttonTabIndex:U,listboxTabIndex:Z,highlight:G,intent:K,open:Y,onOpen:$,close:j,toggle:J,buttonFocusBindings:Q,onButtonClick:X,buttonRef:ee,listboxRef:te,buttonAria:ne}=(0,m.useControlDisclosure)({id:n,disabled:_,buttonTabIndex:x,intent:E,highlight:w,onFocus:P,onBlur:D,onClick:B}),oe=A.filter(f),se=oe.find((e=>e.value===I)),[re,ae]=o.useState(T&&N?oe[0].value:se?.value),[ie,le,ce]=(0,i.useKeepActiveItemIntoView)({activeItem:se});(0,s.useIsomorphicLayoutEffect)((()=>ae(se?.value)),[I]);const ue=(0,r.joinDomIds)(k,n),de=ue.length>0?ue:void 0,pe=(0,o.useMemo)((()=>({role:"listbox","aria-labelledby":k,"aria-activedescendant":b(n,se)})),[k,se]),he=(0,o.useCallback)((e=>e.value===re),[re]),me=(0,o.useCallback)((()=>(j(),M&&M(re))),[j,M,re]),ge=(0,d.useItemsKeyboardNavigation)("vertical",g.isRtl,oe,he,(e=>{ae(e.value)}),!1,{next:[40],previous:[38]}),ve=(0,p.useKeyboardToggle)(J,q||V),fe=(0,p.useKeyboardToggle)(me),be=(0,p.useKeyboardClose)(q,Ee),ye=(0,p.useKeyboardOpen)(q,Y),Ce=(0,p.useKeyboardEventHandler)([ve,be,ye]),xe=(0,p.useKeyboardEventHandler)([ge,fe,be]),_e=function(e){const t=(0,o.useRef)(""),n=(0,o.useMemo)((()=>(0,c.default)((()=>{t.current=""}),500)),[]),s=(0,o.useMemo)((()=>(0,u.default)(e,200)),[e]);return(0,o.useCallback)((e=>{e.key.length>0&&e.key.length<3&&(t.current+=e.key,s(t.current,e),n())}),[n,s])}(((t,n)=>{const o=function(e,t,n){return e.find((e=>{const o=t.toLowerCase();return!e.readonly&&(n?n(e).toLowerCase().startsWith(o):!e.readonly&&("string"==typeof e.content&&e.content.toLowerCase().startsWith(o)||"string"==typeof e.textContent&&e.textContent.toLowerCase().startsWith(o)||String(e.value??"").toLowerCase().startsWith(o)))}))}(oe,t,e.getSearchKey);void 0!==o&&M&&(n.stopPropagation(),q||Y(),M(o.value))}));return o.createElement(h.ControlDisclosureView,{...W,...ne,...Q,id:n,role:"button",tabIndex:U,"aria-owns":ne["aria-controls"],"aria-haspopup":"listbox","aria-labelledby":de,disabled:_,hideArrowButton:S,isFocused:z,isOpened:q,highlight:G,intent:K,ref:(0,a.useMergedRefs)([ee,t]),onClick:X,onOpen:function(){ce(se,{duration:0}),$()},onClose:Ee,onKeyDown:function(e){Ce(e),O&&O(e);e.defaultPrevented||_e(e)},listboxId:H,listboxTabIndex:Z,listboxClassName:v,listboxAria:pe,"aria-describedby":L,"aria-invalid":F,listboxReference:te,scrollWrapReference:ie,onListboxKeyDown:function(e){xe(e),e.defaultPrevented||_e(e)},
|
||||
buttonChildren:o.createElement(y,{selectedItem:se??null,placeholder:T}),repositionOnScroll:R},A.map(((e,t)=>{if(e.readonly)return o.createElement(o.Fragment,{key:`readonly_item_${t}`},e.content);const s=b(n,e);return o.createElement(l.PopupMenuItem,{key:s,id:s,className:C,role:"option","aria-selected":I===e.value,isActive:re===e.value,label:e.content??e.value,onClick:we,onClickArg:e.value,isDisabled:e.disabled,reference:t=>le(e,t)})})));function we(e){M&&(M(e),ae(e))}function Ee(){ae(se?.value),j()}}));C.displayName="Select"},90692:(e,t,n)=>{"use strict";n.d(t,{MatchMedia:()=>s});var o=n(50959);class s extends o.PureComponent{constructor(e){super(e),this._handleChange=()=>{this.forceUpdate()},this.state={query:window.matchMedia(this.props.rule)}}componentDidMount(){this._subscribe(this.state.query)}componentDidUpdate(e,t){this.state.query!==t.query&&(this._unsubscribe(t.query),this._subscribe(this.state.query))}componentWillUnmount(){this._unsubscribe(this.state.query)}render(){return this.props.children(this.state.query.matches)}static getDerivedStateFromProps(e,t){return e.rule!==t.query.media?{query:window.matchMedia(e.rule)}:null}_subscribe(e){e.addEventListener("change",this._handleChange)}_unsubscribe(e){e.removeEventListener("change",this._handleChange)}}},64706:(e,t,n)=>{"use strict";n.d(t,{MenuContext:()=>o});const o=n(50959).createContext(null)},27317:(e,t,n)=>{"use strict";n.d(t,{DEFAULT_MENU_THEME:()=>v,Menu:()=>b});var o=n(50959),s=n(97754),r=n.n(s),a=n(50151),i=n(9859),l=n(14729),c=n(50655),u=n(59064),d=n(67961),p=n(26709),h=n(83021),m=n(64706),g=n(67797);const v=g;var f;!function(e){e[e.IndentFromWindow=0]="IndentFromWindow"}(f||(f={}));class b extends o.PureComponent{constructor(e){super(e),this._containerRef=null,this._scrollWrapRef=null,this._raf=null,this._scrollRaf=null,this._scrollTimeout=void 0,this._manager=new d.OverlapManager,this._hotkeys=null,this._scroll=0,this._handleContainerRef=e=>{this._containerRef=e,this.props.reference&&("function"==typeof this.props.reference&&this.props.reference(e),"object"==typeof this.props.reference&&(this.props.reference.current=e))},this._handleScrollWrapRef=e=>{this._scrollWrapRef=e,"function"==typeof this.props.scrollWrapReference&&this.props.scrollWrapReference(e),"object"==typeof this.props.scrollWrapReference&&(this.props.scrollWrapReference.current=e)},this._handleCustomRemeasureDelegate=()=>{this._resizeForced(),this._handleMeasure()},this._handleMeasure=({callback:e,forceRecalcPosition:t}={})=>{if(this.state.isMeasureValid&&!t)return;const{position:n}=this.props,o=(0,a.ensureNotNull)(this._containerRef);let s=o.getBoundingClientRect();const r=document.documentElement.clientHeight,l=document.documentElement.clientWidth,c=this.props.closeOnScrollOutsideOffset??0;let u=r-0-c;const d=s.height>u;if(d){(0,a.ensureNotNull)(this._scrollWrapRef).style.overflowY="scroll",s=o.getBoundingClientRect()}const{width:p,height:h}=s,m="function"==typeof n?n({contentWidth:p,contentHeight:h,availableWidth:l,availableHeight:r
|
||||
}):n,g=m?.indentFromWindow?.left??0,v=l-(m.overrideWidth??p)-(m?.indentFromWindow?.right??0),f=(0,i.clamp)(m.x,g,Math.max(g,v)),b=(m?.indentFromWindow?.top??0)+c,y=r-(m.overrideHeight??h)-(m?.indentFromWindow?.bottom??0);let C=(0,i.clamp)(m.y,b,Math.max(b,y));if(m.forbidCorrectYCoord&&C<m.y&&(u-=m.y-C,C=m.y),t&&void 0!==this.props.closeOnScrollOutsideOffset&&m.y<=this.props.closeOnScrollOutsideOffset)return void this._handleGlobalClose(!0);const x=m.overrideHeight??(d?u:void 0);this.setState({appearingMenuHeight:t?this.state.appearingMenuHeight:x,appearingMenuWidth:t?this.state.appearingMenuWidth:m.overrideWidth,appearingPosition:{x:f,y:C},isMeasureValid:!0},(()=>{this.props.doNotRestorePosition||this._restoreScrollPosition(),e&&e()}))},this._restoreScrollPosition=()=>{const e=document.activeElement,t=(0,a.ensureNotNull)(this._containerRef);if(null!==e&&t.contains(e))try{e.scrollIntoView()}catch(e){}else(0,a.ensureNotNull)(this._scrollWrapRef).scrollTop=this._scroll},this._resizeForced=()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0})},this._resize=()=>{null===this._raf&&(this._raf=requestAnimationFrame((()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0}),this._raf=null})))},this._handleGlobalClose=e=>{this.props.onClose(e)},this._handleSlot=e=>{this._manager.setContainer(e)},this._handleScroll=()=>{this._scroll=(0,a.ensureNotNull)(this._scrollWrapRef).scrollTop},this._handleScrollOutsideEnd=()=>{clearTimeout(this._scrollTimeout),this._scrollTimeout=setTimeout((()=>{this._handleMeasure({forceRecalcPosition:!0})}),80)},this._handleScrollOutside=e=>{e.target!==this._scrollWrapRef&&(this._handleScrollOutsideEnd(),null===this._scrollRaf&&(this._scrollRaf=requestAnimationFrame((()=>{this._handleMeasure({forceRecalcPosition:!0}),this._scrollRaf=null}))))},this.state={}}componentDidMount(){this._handleMeasure({callback:this.props.onOpen});const{customCloseDelegate:e=u.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.subscribe(this,this._handleGlobalClose),t?.subscribe(null,this._handleCustomRemeasureDelegate),window.addEventListener("resize",this._resize);const n=null!==this.context;this._hotkeys||n||(this._hotkeys=p.createGroup({desc:"Popup menu"}),this._hotkeys.add({desc:"Close",hotkey:27,handler:()=>{this.props.onKeyboardClose&&this.props.onKeyboardClose(),this._handleGlobalClose()}})),this.props.repositionOnScroll&&window.addEventListener("scroll",this._handleScrollOutside,{capture:!0})}componentDidUpdate(){this._handleMeasure()}componentWillUnmount(){const{customCloseDelegate:e=u.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.unsubscribe(this,this._handleGlobalClose),t?.unsubscribe(null,this._handleCustomRemeasureDelegate),window.removeEventListener("resize",this._resize),window.removeEventListener("scroll",this._handleScrollOutside,{capture:!0}),this._hotkeys&&(this._hotkeys.destroy(),this._hotkeys=null),null!==this._raf&&(cancelAnimationFrame(this._raf),
|
||||
this._raf=null),null!==this._scrollRaf&&(cancelAnimationFrame(this._scrollRaf),this._scrollRaf=null),this._scrollTimeout&&clearTimeout(this._scrollTimeout)}render(){const{id:e,role:t,"aria-label":n,"aria-labelledby":s,"aria-activedescendant":a,"aria-hidden":i,"aria-describedby":u,"aria-invalid":d,children:p,minWidth:v,theme:f=g,className:b,maxHeight:C,onMouseOver:x,onMouseOut:_,onKeyDown:w,onFocus:E,onBlur:S}=this.props,{appearingMenuHeight:T,appearingMenuWidth:N,appearingPosition:I,isMeasureValid:k}=this.state,P={"--ui-kit-menu-max-width":`${I&&I.x}px`,maxWidth:"calc(100vw - var(--ui-kit-menu-max-width) - 6px)"};return o.createElement(m.MenuContext.Provider,{value:this},o.createElement(h.SubmenuHandler,null,o.createElement(c.SlotContext.Provider,{value:this._manager},o.createElement("div",{id:e,role:t,"aria-label":n,"aria-labelledby":s,"aria-activedescendant":a,"aria-hidden":i,"aria-describedby":u,"aria-invalid":d,className:r()(b,f.menuWrap,!k&&f.isMeasuring),style:{height:T,left:I&&I.x,minWidth:v,position:"fixed",top:I&&I.y,width:N,...this.props.limitMaxWidth&&P},"data-name":this.props["data-name"],"data-tooltip-show-on-focus":this.props["data-tooltip-show-on-focus"],ref:this._handleContainerRef,onScrollCapture:this.props.onScroll,onContextMenu:l.preventDefaultForContextMenu,tabIndex:this.props.tabIndex,onMouseOver:x,onMouseOut:_,onKeyDown:w,onFocus:E,onBlur:S},o.createElement("div",{className:r()(f.scrollWrap,!this.props.noMomentumBasedScroll&&f.momentumBased),style:{overflowY:void 0!==T?"scroll":"auto",maxHeight:C},onScrollCapture:this._handleScroll,ref:this._handleScrollWrapRef},o.createElement(y,{className:f.menuBox},p)))),o.createElement(c.Slot,{reference:this._handleSlot})))}update(e){e?this._resizeForced():this._resize()}focus(e){this._containerRef?.focus(e)}blur(){this._containerRef?.blur()}}function y(e){const t=(0,a.ensureNotNull)((0,o.useContext)(h.SubmenuContext)),n=o.useRef(null);return o.createElement("div",{ref:n,className:e.className,onMouseOver:function(e){if(!(null!==t.current&&e.target instanceof Node&&(o=e.target,n.current?.contains(o))))return;var o;t.isSubmenuNode(e.target)||t.setCurrent(null)},"data-name":"menu-inner"},e.children)}b.contextType=h.SubmenuContext},29197:(e,t,n)=>{"use strict";n.d(t,{CloseDelegateContext:()=>r});var o=n(50959),s=n(59064);const r=o.createContext(s.globalCloseDelegate)},42842:(e,t,n)=>{"use strict";n.d(t,{Portal:()=>c,PortalContext:()=>u});var o=n(50959),s=n(32227),r=n(55698),a=n(67961),i=n(34811),l=n(99663);class c extends o.PureComponent{constructor(){super(...arguments),this._uuid=(0,r.nanoid)()}componentWillUnmount(){this._manager().removeWindow(this._uuid)}render(){const e=this._manager().ensureWindow(this._uuid,this.props.layerOptions);e.style.top=this.props.top||"",e.style.bottom=this.props.bottom||"",e.style.left=this.props.left||"",e.style.right=this.props.right||"",e.style.pointerEvents=this.props.pointerEvents||"";const t=this.props.className;return t&&("string"==typeof t?e.classList.add(t):e.classList.add(...t)),
|
||||
this.props.shouldTrapFocus&&!e.hasAttribute(i.FOCUS_TRAP_DATA_ATTRIBUTE)&&e.setAttribute(i.FOCUS_TRAP_DATA_ATTRIBUTE,"true"),this.props["aria-hidden"]&&e.setAttribute("aria-hidden","true"),s.createPortal(o.createElement(u.Provider,{value:this},this.props.children),e)}moveToTop(){this._manager().moveToTop(this._uuid)}_manager(){return null===this.context?(0,a.getRootOverlapManager)():this.context}}c.contextType=l.SlotContext;const u=o.createContext(null)},50655:(e,t,n)=>{"use strict";n.d(t,{Slot:()=>o.Slot,SlotContext:()=>o.SlotContext});var o=n(99663)},27246:e=>{e.exports={titleWrap:"titleWrap-Izz3hpJc",groupFooter:"groupFooter-Izz3hpJc"}},92359:e=>{e.exports={wrapper:"wrapper-JXHzsa7P"}},48286:e=>{e.exports={inlineRow:"inlineRow-D8g11qqA"}},80779:e=>{e.exports={container:"container-QyF09i7Y",hasTooltip:"hasTooltip-QyF09i7Y",datePickerWrapper:"datePickerWrapper-QyF09i7Y",timePickerWrapper:"timePickerWrapper-QyF09i7Y"}},97650:e=>{e.exports={input:"input-ZOx_CVY3",symbol:"symbol-ZOx_CVY3",checkbox:"checkbox-ZOx_CVY3",label:"label-ZOx_CVY3",dropdownMenu:"dropdownMenu-ZOx_CVY3",sessionStart:"sessionStart-ZOx_CVY3",sessionEnd:"sessionEnd-ZOx_CVY3",sessionInputContainer:"sessionInputContainer-ZOx_CVY3",sessionDash:"sessionDash-ZOx_CVY3",inputGroup:"inputGroup-ZOx_CVY3",textarea:"textarea-ZOx_CVY3",inlineGroup:"inlineGroup-ZOx_CVY3",hasTooltip:"hasTooltip-ZOx_CVY3"}},85027:e=>{e.exports={content:"content-tBgV1m0B",cell:"cell-tBgV1m0B",inner:"inner-tBgV1m0B",first:"first-tBgV1m0B",inlineCell:"inlineCell-tBgV1m0B",fill:"fill-tBgV1m0B",top:"top-tBgV1m0B",topCenter:"topCenter-tBgV1m0B",offset:"offset-tBgV1m0B",inlineRow:"inlineRow-tBgV1m0B",grouped:"grouped-tBgV1m0B",separator:"separator-tBgV1m0B",groupSeparator:"groupSeparator-tBgV1m0B",big:"big-tBgV1m0B",adaptive:"adaptive-tBgV1m0B",checkableTitle:"checkableTitle-tBgV1m0B"}},30584:e=>{e.exports={wrap:"wrap-QutFvTLS",labelWrap:"labelWrap-QutFvTLS",label:"label-QutFvTLS",hasTooltip:"hasTooltip-QutFvTLS"}},60090:(e,t,n)=>{"use strict";n.d(t,{bind:()=>a,setter:()=>i});var o=n(50959),s=n(27032),r=n(27365);function a(e){var t;return t=class extends o.PureComponent{constructor(){super(...arguments),this._onChange=(e,t,n)=>{const{setValue:o}=this.context,{onChange:s}=this.props;i(o,s)(e,t,n)}}render(){const{input:t}=this.props,{values:n,model:s}=this.context;return o.createElement(e,{...this.props,value:n[t.id],tzName:(0,r.getTimezoneName)(s),onChange:this._onChange})}},t.contextType=s.PropertyContext,t}function i(e,t){return(n,o,s)=>{e(o,n,s),t&&t(n,o,s)}}},27032:(e,t,n)=>{"use strict";n.d(t,{PropertyContainer:()=>m,PropertyContext:()=>h});var o=n(50959),s=n(50151),r=n(9343),a=n(11542),i=n(45126),l=n(79036),c=n(85719),u=n(56530);const d=(0,r.getLogger)("Platform.GUI.StudyInputPropertyContainer"),p=new i.TranslatedString("change {propertyName} property",a.t(null,void 0,n(25167))),h=o.createContext(null);class m extends o.PureComponent{constructor(e){super(e),this._setValue=(e,t,n)=>{const{property:o,model:r,study:a}=this.props,h=!(0,l.isStudy)(a),m=(0,s.ensureDefined)(o.child(e))
|
||||
;d.logNormal(`Changing property "${e}" value from "${o.value()}" to "${t}"`);const g=new i.TranslatedString(n,(0,u.getTranslatedInputTitle)(n));r.setProperty(m,t,p.format({propertyName:g}),h&&c.lineToolsDoNotAffectChartInvalidation)};const{property:t}=e,n={};t.childNames().forEach((e=>{const o=(0,s.ensureDefined)(t.child(e));n.hasOwnProperty(e)||(n[e]=o.value())})),this.state=n}componentDidMount(){const{property:e,onStudyInputChange:t}=this.props;e.childNames().forEach((n=>{(0,s.ensureDefined)(e.child(n)).subscribe(this,(e=>{const o=e.value();d.logNormal(`Property "${n}" updated to value "${o}"`),this.setState({[n]:o}),t?.(o,n)}))}))}componentWillUnmount(){const{property:e}=this.props;e.childNames().forEach((t=>{(0,s.ensureDefined)(e.child(t)).unsubscribeAll(this)}))}render(){const{study:e,model:t,children:n}=this.props,s={study:e,model:t,values:this.state,setValue:this._setValue};return o.createElement(h.Provider,{value:s},n)}}},28117:(e,t,n)=>{"use strict";n.d(t,{ModelContext:()=>s,bindModel:()=>r});var o=n(50959);const s=o.createContext(null);function r(e,t){return o.createElement(s.Consumer,null,(n=>n?o.createElement(e,{...Object.assign({model:n},t)}):null))}},353:(e,t,n)=>{"use strict";n.d(t,{StylePropertyContainer:()=>a,StylePropertyContext:()=>r,bindPropertyContext:()=>i});var o=n(50959),s=n(28117);const r=o.createContext(null);class a extends o.PureComponent{constructor(){super(...arguments),this._setValue=(e,t,n)=>{const{model:o,affectSave:s}=this.props;Array.isArray(e)?o.setProperties(e,e.map((()=>t)),n,s):o.setProperty(e,t,n,!s)}}componentDidMount(){const{property:e}=this.props;e.subscribe(this,(()=>this.forceUpdate()))}componentWillUnmount(){const{property:e}=this.props;e.unsubscribeAll(this)}render(){const e={setValue:this._setValue};return o.createElement(r.Provider,{value:e},this.props.children)}}function i(e,t,n){return(0,s.bindModel)((({model:s})=>o.createElement(a,{model:s,affectSave:n,property:t.property},o.createElement(e,{...t}))),t)}},12750:(e,t,n)=>{"use strict";n.d(t,{IconGroupWrapper:()=>r});var o=n(50959),s=n(92359);function r(e){const{children:t}=e;return o.createElement("div",{className:s.wrapper},t)}},8394:(e,t,n)=>{"use strict";n.d(t,{InputTooltip:()=>P});var o,s=n(50959),r=n(97754),a=n.n(r),i=n(90186),l=n(9745),c=n(82353),u=n(27941),d=n(99084),p=n(30162),h=n(46105),m=n.n(h);!function(e){e.Small="small",e.Medium="medium",e.Large="large"}(o||(o={}));const g="small";var v,f;!function(e){e.Default="default",e.Danger="danger",e.Warning="warning",e.Success="success",e.Neutral="neutral",e.NeutralLight="neutral-light"}(v||(v={})),function(e){e.Info="info",e.Question="question",e.Check="check",e.Exclamation="exclamation"}(f||(f={}));const b={info:u,question:c,check:d,exclamation:p},y=s.forwardRef(((e,t)=>s.createElement("span",{...e,ref:t,className:a()(e.className,m()["no-active-state"])}))),C=s.forwardRef(((e,t)=>{const{icon:n="exclamation",intent:o="default",ariaLabel:r,tooltip:c,className:u,renderComponent:d=y,tabIndex:p=0,size:h=g,onFocus:v,onBlur:f,onClick:C,...x}=e,_=b[n]??n
|
||||
;return s.createElement(d,{className:a()(u,m().iconWrapper,m()[o],m()[h]),title:c,"aria-label":r,ref:t,tabIndex:p,onFocus:v,onBlur:f,onClick:C,...(0,i.filterDataProps)(x)},s.createElement(l.Icon,{"aria-hidden":!0,icon:_,className:m().icon}))}));var x=n(75774);var _=n(39416);function w(e,t=null){const{showTooltip:n,hideTooltip:o,onClick:r,doNotShowTooltipOnTouch:a=!1}=e,i=(0,_.useFunctionalRefObject)(t),l=function(){const[e,t]=(0,s.useState)(!1);return(0,s.useEffect)((()=>{t(x.mobiletouch)}),[]),e}(),c=l&&a?void 0:e.tooltip;(0,s.useEffect)((()=>{const e=()=>o&&o();return document.addEventListener("scroll",e,!0),()=>document.removeEventListener("scroll",e,!0)}),[i,o]);return{onBlur:(0,s.useCallback)((e=>{o&&o()}),[o]),onFocus:(0,s.useCallback)((e=>{!e.target.matches(":hover")&&n&&e.target.matches(":focus-visible")&&n(e.currentTarget,{tooltipDelay:200})}),[n]),onClick:(0,s.useCallback)((e=>{l&&i?.current?.focus(),r&&r(e)}),[r,i,l]),tooltip:c,className:void 0!==c?"apply-common-tooltip":void 0,ref:i}}var E=n(38780),S=n(41140),T=n.n(S);function N(){document.removeEventListener("scroll",N),document.removeEventListener("touchstart",N),document.removeEventListener("mouseout",N),(0,E.hide)()}const I=e=>{(0,E.showOnElement)(e.currentTarget,{tooltipDelay:0}),document.addEventListener("scroll",N),document.addEventListener("touchstart",N),document.addEventListener("mouseout",N)},k=(0,s.forwardRef)(((e,t)=>{const{className:n,onClick:o=I,doNotShowTooltipOnTouch:a,size:i,...l}=e,{tooltip:c,className:u,...d}=w({tooltip:e.tooltip,doNotShowTooltipOnTouch:!1,showTooltip:E.showOnElement,hideTooltip:E.hide,onClick:o},t);return s.createElement(C,{className:r(n,T()["icon-wrapper"],c&&T()["with-tooltip"],u),tooltip:c,size:i,...l,...d})}));(0,s.forwardRef)(((e,t)=>{const{className:n,href:o,rel:a,target:i,...l}=e,c=(0,s.useMemo)((()=>(0,s.forwardRef)(((e,t)=>s.createElement("a",{href:o,rel:a,target:i,ref:t,...e})))),[o,a,i]);return s.createElement(k,{...l,className:r(n,T()["with-link"]),renderComponent:c,ref:t,doNotShowTooltipOnTouch:!0})})),(0,s.forwardRef)(((e,t)=>{const{className:n,withActiveState:o,...a}=e,i=(0,s.useMemo)((()=>(0,s.forwardRef)(((e,t)=>s.createElement("button",{...e,ref:t,type:"button"})))),[]);return s.createElement(k,{...a,className:r(n,!o&&T()["no-active-state"]),renderComponent:i,ref:t})}));function P(e){const{className:t,title:n}=e;return s.createElement(k,{icon:"info",className:t,ariaLabel:n,tooltip:n,tabIndex:-1})}},78839:(e,t,n)=>{"use strict";n.d(t,{getInputGroups:()=>i,isGroup:()=>r,isInputInlines:()=>a});var o,s=n(50151);function r(e){return e.hasOwnProperty("groupType")}function a(e){return r(e)&&"inline"===e.groupType}function i(e){const t=[],n=new Map,o=new Map;return o.set(void 0,new Map),e.forEach((e=>{const{group:r,inline:a}=e;if(void 0!==r||void 0!==a)if(void 0!==r)if(void 0!==a)if(n.has(r)){const t=(0,s.ensureDefined)(n.get(r));let i;o.has(t)?i=(0,s.ensureDefined)(o.get(t)):(i=new Map,o.set(t,i)),l(e,"inline",a,i,t.children)}else{const s={id:a,groupType:"inline",children:[e]},i={id:r,groupType:"group",
|
||||
@@ -2,8 +2,9 @@
|
||||
disabled:"disabled-ywH2tsV_","intent-danger":"intent-danger-ywH2tsV_",checked:"checked-ywH2tsV_",check:"check-ywH2tsV_",icon:"icon-ywH2tsV_",dot:"dot-ywH2tsV_",disableActiveStyles:"disableActiveStyles-ywH2tsV_"}},77897:e=>{e.exports={button:"button-Rc93kXa8",bordersVisible:"bordersVisible-Rc93kXa8",selected:"selected-Rc93kXa8"}},34625:e=>{e.exports={footer:"footer-dwINHZFL"}},13079:e=>{e.exports={wrap:"wrap-oc7l8ZQg",header:"header-oc7l8ZQg",item:"item-oc7l8ZQg"}},69849:e=>{e.exports={label:"label-lVJKBKVk"}},60883:e=>{e.exports={scrollable:"scrollable-sXALjK1u",spinnerWrap:"spinnerWrap-sXALjK1u",item:"item-sXALjK1u",heading:"heading-sXALjK1u",checkboxWrap:"checkboxWrap-sXALjK1u",checkbox:"checkbox-sXALjK1u",emptyState:"emptyState-sXALjK1u",image:"image-sXALjK1u",text:"text-sXALjK1u"}},29e3:e=>{e.exports={dialog:"dialog-IKuIIugL",tabletDialog:"tabletDialog-IKuIIugL",desktopDialog:"desktopDialog-IKuIIugL"}},36718:e=>{e.exports={"default-drawer-min-top-distance":"100px",wrap:"wrap-_HnK0UIN",positionBottom:"positionBottom-_HnK0UIN",backdrop:"backdrop-_HnK0UIN",drawer:"drawer-_HnK0UIN",positionLeft:"positionLeft-_HnK0UIN"}},70673:(e,t,o)=>{"use strict";o.d(t,{CheckboxInput:()=>c});var n=o(50959),a=o(97754),r=o(90186),l=o(5811),i=o(11362),s=o.n(i);function c(e){const t=a(s().wrapper,e.className);return n.createElement("span",{className:t,title:e.title,style:e.style},n.createElement("input",{id:e.id,tabIndex:e.tabIndex,className:a(e.intent&&s()[e.intent],s().input),type:"checkbox",name:e.name,checked:e.checked,disabled:e.disabled,value:e.value,autoFocus:e.autoFocus,role:e.role,onChange:function(){e.onChange?.(e.value)},ref:e.reference,"aria-required":e["aria-required"],"aria-describedby":e["aria-describedby"],"aria-invalid":e["aria-invalid"],...(0,r.filterDataProps)(e)}),n.createElement(l.CheckboxView,{className:s().view,indeterminate:e.indeterminate,checked:e.checked,disabled:e.disabled,intent:e.intent,tabIndex:e.tabIndex}))}},5811:(e,t,o)=>{"use strict";o.d(t,{CheckboxView:()=>c});var n=o(50959),a=o(97754),r=o(9745),l=o(65890),i=o(4052),s=o.n(i);function c(e){const{indeterminate:t,checked:o,tabIndex:i,className:c,disabled:d,disableActiveStyles:u,intent:m,hideIcon:p,...h}=e,v=t||!o||p?"":l,f=a(s().box,s()[`intent-${m}`],!t&&s().check,!!t&&s().dot,-1===i&&s().noOutline,c,o&&s().checked,d&&s().disabled,u&&s().disableActiveStyles);return n.createElement("span",{className:f,...h},n.createElement(r.Icon,{icon:v,className:s().icon}))}},45601:(e,t,o)=>{"use strict";o.d(t,{Measure:()=>a});var n=o(67842);function a(e){const{children:t,onResize:o}=e;return t((0,n.useResizeObserver)(o||(()=>{}),[null===o]))}},39362:(e,t,o)=>{"use strict";o.d(t,{SymbolSearchDialogFooter:()=>i});var n=o(50959),a=o(97754),r=o.n(a),l=o(34625);function i(e){const{className:t,children:o}=e;return n.createElement("div",{className:r()(l.footer,t)},o)}},14283:(e,t,o)=>{"use strict";o.r(t),o.d(t,{getCompareDialogRenderer:()=>le})
|
||||
;var n=o(50959),a=o(11542),r=o(32563),l=o(56570),i=o(94664),s=o(97754),c=o.n(s),d=o(50151),u=o(9745),m=o(86656),p=o(77975),h=o(63932),v=o(24633),f=o(45345),g=o(45601),b=o(84524),S=o(96967);const y=n.createContext(null);var x=o(70412),w=o(78036);const I=n.createContext(null);var C=o(16396),E=o(41590),k=o(37558),D=o(77897);function M(e){const{theme:t=D,children:o,onClick:a,isSelected:r,areBordersVisible:l,isItemSelected:i,className:s,value:d,name:u}=e;return n.createElement("button",{type:"button",className:c()(s,t.button,r&&t.selected,l&&!r&&!i&&t.bordersVisible),name:u,value:d,onClick:a},o)}function N(e){const{value:t,onClick:o,...a}=e,r=(0,n.useCallback)((e=>o(t,e)),[t,o]);return n.createElement(M,{...a,value:String(t),onClick:r})}var _=o(46148);function B(e){const{compareModel:t,selectedCompareOptionIndex:r}=(0,w.useEnsuredContext)(y),l=t.comparableOnSameScale({isYield:e}),i=(0,n.useMemo)((()=>function(e){return[{label:e?a.t(null,void 0,o(38137)):a.t(null,void 0,o(56136)),compareOption:e?_.CompareOption.SameScale:_.CompareOption.SamePctScale},{label:a.t(null,void 0,o(60126)),compareOption:_.CompareOption.NewPriceScale},{label:a.t(null,void 0,o(63456)),compareOption:_.CompareOption.NewPane}]}(l)),[l]);return[(0,n.useMemo)((()=>i[r]?.compareOption??i[0].compareOption),[i,r]),i]}var L=o(13079);function O(e){const{fullSymbolName:t,isSelected:r,className:l,isYield:s}=e,{isMobile:d,searchRef:u,setMode:m}=(0,w.useEnsuredContext)(b.SymbolSearchItemsDialogContext),{compareModel:p,setHoveredItemId:h,clearInput:v,allowExtendTimeScale:f}=(0,w.useEnsuredContext)(y),{callback:g}=(0,w.useEnsuredContext)(I),[S,x]=B(s);return d?n.createElement(k.DrawerManager,null,n.createElement(E.Drawer,{position:"Bottom",onClose:D.bind(null,!1)},n.createElement("div",{className:L.header},a.t(null,void 0,o(60085))),x.map((({label:e,compareOption:t})=>n.createElement(C.PopupMenuItem,{key:t,className:L.item,onClick:M,onClickArg:t,label:e}))))):n.createElement("div",{className:c()(L.wrap,l),"data-name":"compare-buttons-group"},x.map((({label:e,compareOption:t})=>n.createElement(N,{key:t,onClick:M,value:t,isItemSelected:Boolean(r),isSelected:r&&S===t},e))));function D(e){d&&g&&g(),v&&e&&v(u,m)}function M(e,o){if(o.preventDefault(),p&&t&&void 0!==e){(0,i.getSymbolSearchCompleteOverrideFunction)()(t).then((t=>{p.applyStudy(t.symbol,e,f),h(""),D(!0)}))}}}function T(e){const{isSelected:t,fullSymbolName:o,onExpandClick:a,actions:l,id:s,isOffset:c,isYield:d}=e,{isMobile:u,toggleExpand:m,searchSpreads:p,searchRef:h,setMode:v,mode:f}=(0,w.useEnsuredContext)(b.SymbolSearchItemsDialogContext),{compareModel:g,hoveredItemId:C,setHoveredItemId:E,clearInput:k,allowExtendTimeScale:D}=(0,w.useEnsuredContext)(y),[M,N]=(0,n.useState)(!1),B=(0,n.useRef)(null),L=(0,x.useAccurateHover)(B),T=(0,n.useMemo)((()=>({callback:z})),[z]),A=!Boolean(a)&&!Boolean(l),R=s===C;return n.createElement(I.Provider,{value:T},n.createElement(S.SymbolSearchDialogContentItem,{hideMarkedListFlag:"compare"===f,...e,reference:B,onClick:function(t){
|
||||
if(Boolean(a)&&s&&!c)return t?.preventDefault(),void m(s);if(!M&&u)return void N(!0);if(p&&e.onClick)return void e.onClick(t);if((r.mobiletouch?R:!M)&&o){(0,i.getSymbolSearchCompleteOverrideFunction)()(o).then((e=>{const t=g.comparableOnSameScale({isYield:d})?_.CompareOption.SameScale:_.CompareOption.SamePctScale;g.applyStudy(e.symbol,t,D)})),E(""),k&&k(h,v)}r.mobiletouch&&!u&&!R&&s&&E(s)},hoverComponent:function(){if(!A)return!1;if(u)return M;if(r.mobiletouch)return R;return Boolean(L||t)}()?O:void 0}));function z(){N(!1)}}var A=o(15550),R=o(93986),z=o(39750),H=o(60883);function V(e){const{handleListWidth:t}=(0,d.ensureNotNull)((0,n.useContext)(b.SymbolSearchItemsDialogContext)),{compareModel:r,selectedCompareIndex:l,selectedItemRef:i}=(0,d.ensureNotNull)((0,n.useContext)(y)),s=(0,p.useWatchedValueReadonly)({watchedValue:r.isDataReady()}),x=(0,p.useWatchedValueReadonly)({watchedValue:r.studies()}),w=(0,p.useWatchedValueReadonly)({watchedValue:r.highlightedSymbol()}),I=(0,n.useMemo)((()=>x.filter((e=>e.checked))),[x]),C=(0,n.useMemo)((()=>x.filter((e=>!e.checked))),[x]);return(0,n.useEffect)((()=>(r.chartModel().dataSourceCollectionChanged().subscribe(r,r.handleSourcesChange),()=>r.chartModel().dataSourceCollectionChanged().unsubscribe(r,r.handleSourcesChange))),[r]),n.createElement(g.Measure,{onResize:function([e]){t(e.contentRect.width)}},(e=>n.createElement(m.TouchScrollContainer,{className:H.scrollable,ref:e},function(){if(!s)return n.createElement("div",{className:H.spinnerWrap},n.createElement(h.Spinner,null));if(!Boolean(I.length)&&!Boolean(C.length)){const e=f.watchedTheme.value()===v.StdTheme.Dark?R:A;return n.createElement("div",{className:H.emptyState},n.createElement(u.Icon,{className:H.image,icon:e}),n.createElement("div",{className:H.text},a.t(null,void 0,o(37094))))}return n.createElement(n.Fragment,null,Boolean(I.length)&&n.createElement(n.Fragment,null,n.createElement("div",{className:H.heading},a.t(null,void 0,o(46622))),I.map(((e,t)=>n.createElement(S.SymbolSearchDialogContentItem,{"data-role":"added-symbol-item",className:H.item,key:e.id,id:e.id,shortName:e.title,title:e.title,logoId:e.logoId,currencyLogoId:e.currencyLogoId,baseCurrencyLogoId:e.baseCurrencyLogoId,dangerousDescriptionHTML:e.description,exchangeName:e.exchangeName,marketType:e.marketType,country:e.country,providerId:e.providerId,onClick:E.bind(null,e),isHighlighted:e.id===w,isSelected:k(e),itemRef:k(e)?i:void 0,isYield:e.isYield,actions:n.createElement("div",{className:H.checkboxWrap},n.createElement(M,{className:H.checkbox,onClick:E.bind(null,e),isSelected:k(e)},n.createElement(u.Icon,{icon:z})))})))),Boolean(C.length)&&n.createElement(n.Fragment,null,n.createElement("div",{className:H.heading},a.t(null,void 0,o(8926))),C.map((e=>n.createElement(T,{"data-role":"recent-symbol-item",className:c()(H.item,e.id===w&&H.highlighted),key:e.id,id:e.id,shortName:e.title,logoId:e.logoId,currencyLogoId:e.currencyLogoId,baseCurrencyLogoId:e.baseCurrencyLogoId,title:e.title,dangerousDescriptionHTML:e.description,exchangeName:e.exchangeName,
|
||||
marketType:e.marketType,country:e.country,providerId:e.providerId,fullSymbolName:e.symbol,isSelected:k(e),itemRef:k(e)?i:void 0,isYield:e.isYield})))))}())));function E(e,t){t?.preventDefault(),r.removeStudy(e)}function k(e){return x.indexOf(e)===l}}var P=o(56840);class F extends n.PureComponent{constructor(e){super(e),this._selectedItemRef=n.createRef(),this._getContextValue=()=>{const{compareModel:e}=this.props,{selectedCompareOptionIndex:t,selectedCompareIndex:o,hoveredItemId:n,allowExtendTimeScale:a}=this.state;return{compareModel:e,selectedCompareOptionIndex:t,setSelectedCompareOptionIndex:this._setSelectedCompareOptionIndex,hoveredItemId:n,setHoveredItemId:this._setHoveredItemId,selectedCompareIndex:o,setSelectedCompareIndex:this._setSelectedCompareIndex,selectedItemRef:this._selectedItemRef,clearInput:this._clearInput,allowExtendTimeScale:a,toggleAllowExtendTimeScale:this._toggleAllowExtendTimeScale}},this._clearInput=(e,t)=>{e&&e.current&&(e.current.value="",t("compare"))},this._setSelectedCompareOptionIndex=e=>{this.setState({selectedCompareOptionIndex:e})},this._setHoveredItemId=e=>{this.setState({hoveredItemId:e})},this._setSelectedCompareIndex=(e,t)=>{this.setState({selectedCompareIndex:e},t)},this._toggleAllowExtendTimeScale=()=>{const e=!this.state.allowExtendTimeScale;P.setValue("showAddSymbolDialog.extendCheckboxState",e),this.setState({allowExtendTimeScale:e})},this.state={selectedCompareOptionIndex:0,selectedCompareIndex:-1,hoveredItemId:void 0,allowExtendTimeScale:Boolean(P.getBool("showAddSymbolDialog.extendCheckboxState"))}}render(){const{children:e}=this.props;return n.createElement(y.Provider,{value:this._getContextValue()},e)}}var K=o(68335),W=o(79418),j=o(19291),X=o(29e3);function Y(e){const{openedItems:t,searchRef:o,feedItems:a,selectedIndex:r,toggleExpand:i,onSearchComplete:c,mode:d,setMode:u,setSelectedIndex:m,isMobile:h,isTablet:v,onClose:f,upperCaseEnabled:g,symbolSearchState:S}=(0,w.useEnsuredContext)(b.SymbolSearchItemsDialogContext),{compareModel:x,hoveredItemId:I,setHoveredItemId:C,selectedCompareOptionIndex:E,setSelectedCompareOptionIndex:k,selectedCompareIndex:D,setSelectedCompareIndex:M,selectedItemRef:N,clearInput:_,allowExtendTimeScale:L}=(0,w.useEnsuredContext)(y),O=(0,p.useWatchedValueReadonly)({watchedValue:x.studies()}),T=a[r],A="compare"===d,R="exchange"===d,z=A?D:r,H=A?O:a,V=H[z],[P,F]=B(V?.isYield);return(0,n.useEffect)((()=>{I&&C(""),D&&M(-1)}),[d]),n.createElement(W.AdaptivePopupDialog,{...e,className:s(X.dialog,!h&&(v?X.tabletDialog:X.desktopDialog)),onKeyDown:function(e){if(e.target&&e.target!==o.current)return;const n=(0,K.hashFromEvent)(e);switch(n){case 13:{if(A)return void function(){if(-1===D)return;const e=O[D];e.checked?x.removeStudy(e):x.applyStudy(e.symbol,P,L);M(-1)}();const t=U();if(t)return e.preventDefault(),void i(t);e.preventDefault();const n=function(){0;const e=e=>"string"==typeof e?.fullSymbolName?e.fullSymbolName:e?.symbol,t=-1!==r;if(t)return e(V);const n=l.enabled("allow_arbitrary_symbol_search_input"),a="empty"!==S
|
||||
;if(n)return a&&H.length?e(H[0]):o?.current?.value.trim();if(!a&&!t&&!n)return;if(H.length)return e(H[0])}();return void(n&&(c([{symbol:g?n.toString().toUpperCase():n.toString(),resolved:!1,compareOption:P,allowExtendTimeScale:L}]),_&&_(o,u)))}case 27:return e.preventDefault(),R?void u("symbolSearch"):void f()}if(!A&&"good"!==S)return;switch((0,j.mapKeyCodeToDirection)(n)){case"blockPrev":if(e.preventDefault(),0===z)return;if(-1===z)return void Y(0);Y(z-1);break;case"blockNext":if(e.preventDefault(),z===H.length-1)return;Y(z+1);break;case"inlinePrev":{const o=U();if(o&&t.has(o))return e.preventDefault(),void i(o);if(!E||o)return;e.preventDefault(),k(E-1);break}case"inlineNext":{const o=U();if(o&&!t.has(o))return e.preventDefault(),void i(o);if(E===F.length-1||o)return;e.preventDefault(),k(E+1);break}}},dataName:"compare-dialog",draggable:!0});function Y(e){A?M(e,G):m(e)}function G(){N.current?.scrollIntoView({block:"nearest"})}function U(){if(!T)return;const{id:e,isOffset:t,onExpandClick:o}=T;return!t&&Boolean(o)&&e?e:void 0}}var G=o(73280),U=o(29280),Z=o(87896);class Q extends U.DialogRenderer{constructor(e){super(),this._props=e}show(e){if(this.visible().value())return;const t=n.createElement(G.SymbolSearchItemsDialog,{...this._props,shouldReturnFocus:e?.shouldReturnFocus,initialMode:this._props.initialMode||"symbolSearch",onClose:()=>this.hide()});this._rootInstance=(0,Z.createReactRoot)(t,this._container),this._setVisibility(!0)}hide(){this._rootInstance?.unmount(),this._visibility.setValue(!1),this._props.onClose?.()}}var $=o(81319),q=o(69654),J=o(70613);function ee(e){const{searchRef:t,setMode:o}=(0,w.useEnsuredContext)(b.SymbolSearchItemsDialogContext),{currentMode:a}=(0,w.useEnsuredContext)(J.SymbolSearchDialogBodyContext);return(0,n.useEffect)((()=>{const e=t.current;if(e)return e.addEventListener("input",r),()=>{e&&e.removeEventListener("input",r)}}),[]),n.createElement(q.DialogSearch,{...e});function r(){t.current&&a&&("compare"!==a.current||""===t?.current?.value?.trim()?"symbolSearch"===a.current&&""===t?.current?.value?.trim()&&o("compare"):o("symbolSearch"))}}var te=o(70673),oe=o(39362),ne=o(69849);function ae(e){const{allowExtendTimeScale:t,toggleAllowExtendTimeScale:r}=(0,d.ensureNotNull)((0,n.useContext)(y));return n.createElement(oe.SymbolSearchDialogFooter,null,n.createElement("label",{"data-name":"allow-extend-time-scale-checkbox"},n.createElement(te.CheckboxInput,{checked:t,value:t?"on":"off",onChange:r}),n.createElement("span",{className:ne.label},a.t(null,void 0,o(1048)))))}const re=l.enabled("secondary_series_extend_time_scale");function le(e){return new Q({wrapper:(t=e,e=>n.createElement(F,{...e,compareModel:t})),dialog:Y,contentItem:T,initialScreen:V,searchInput:ee,footer:re?n.createElement(ae):void 0,initialMode:"compare",dialogTitle:a.t(null,void 0,o(93193)),autofocus:!r.mobiletouch,dialogWidth:"fixed",onSearchComplete:t=>{const{compareOption:o,allowExtendTimeScale:n}=t[0];if(void 0!==o){(0,i.getSymbolSearchCompleteOverrideFunction)()(t[0].symbol,t[0].result).then((t=>{
|
||||
e.applyStudy(t.symbol,o,n)}))}},symbolTypes:(0,$.getAvailableSymbolTypes)(),showSpreadActions:l.enabled("show_spread_operators")&&l.enabled("compare_symbol_search_spread_operators")});var t}},46148:(e,t,o)=>{"use strict";var n;o.d(t,{CompareOption:()=>n}),function(e){e[e.SamePctScale=0]="SamePctScale",e[e.NewPriceScale=1]="NewPriceScale",e[e.NewPane=2]="NewPane",e[e.SameScale=3]="SameScale"}(n||(n={}))},37558:(e,t,o)=>{"use strict";o.d(t,{DrawerContext:()=>l,DrawerManager:()=>r});var n=o(50959),a=o(99054);class r extends n.PureComponent{constructor(e){super(e),this._isBodyFixed=!1,this._addDrawer=e=>{this.setState((t=>({stack:[...t.stack,e]})))},this._removeDrawer=e=>{this.setState((t=>({stack:t.stack.filter((t=>t!==e))})))},this.state={stack:[]}}componentDidUpdate(e,t){!t.stack.length&&this.state.stack.length&&((0,a.setFixedBodyState)(!0),this._isBodyFixed=!0),t.stack.length&&!this.state.stack.length&&this._isBodyFixed&&((0,a.setFixedBodyState)(!1),this._isBodyFixed=!1)}componentWillUnmount(){this.state.stack.length&&this._isBodyFixed&&(0,a.setFixedBodyState)(!1)}render(){return n.createElement(l.Provider,{value:{addDrawer:this._addDrawer,removeDrawer:this._removeDrawer,currentDrawer:this.state.stack.length?this.state.stack[this.state.stack.length-1]:null}},this.props.children)}}const l=n.createContext(null)},41590:(e,t,o)=>{"use strict";o.d(t,{Drawer:()=>p});var n=o(50959),a=o(50151),r=o(97754),l=o(92184),i=o(42842),s=o(37558),c=o(29197),d=o(86656),u=o(36718);var m;function p(e){const{position:t="Bottom",onClose:o,children:d,reference:m,className:p,theme:v=u}=e,f=(0,a.ensureNotNull)((0,n.useContext)(s.DrawerContext)),[g]=(0,n.useState)((()=>(0,l.randomHash)())),b=(0,n.useRef)(null),S=(0,n.useContext)(c.CloseDelegateContext);return(0,n.useLayoutEffect)((()=>((0,a.ensureNotNull)(b.current).focus({preventScroll:!0}),S.subscribe(f,o),f.addDrawer(g),()=>{f.removeDrawer(g),S.unsubscribe(f,o)})),[]),n.createElement(i.Portal,null,n.createElement("div",{ref:m,className:r(u.wrap,u[`position${t}`])},g===f.currentDrawer&&n.createElement("div",{className:u.backdrop,onClick:o}),n.createElement(h,{className:r(v.drawer,u[`position${t}`],p),ref:b,"data-name":e["data-name"]},d)))}!function(e){e.Left="Left",e.Bottom="Bottom"}(m||(m={}));const h=(0,n.forwardRef)(((e,t)=>{const{className:o,...a}=e;return n.createElement(d.TouchScrollContainer,{className:r(u.drawer,o),tabIndex:-1,ref:t,...a})}))},70412:(e,t,o)=>{"use strict";o.d(t,{hoverMouseEventFilter:()=>r,useAccurateHover:()=>l,useHover:()=>a});var n=o(50959);function a(){const[e,t]=(0,n.useState)(!1);return[e,{onMouseOver:function(e){r(e)&&t(!0)},onMouseOut:function(e){r(e)&&t(!1)}}]}function r(e){return!e.currentTarget.contains(e.relatedTarget)}function l(e){const[t,o]=(0,n.useState)(!1);return(0,n.useEffect)((()=>{const t=t=>{if(null===e.current)return;const n=e.current.contains(t.target);o(n)};return document.addEventListener("mouseover",t),()=>document.removeEventListener("mouseover",t)}),[]),t}},86656:(e,t,o)=>{"use strict";o.d(t,{TouchScrollContainer:()=>c})
|
||||
;var n=o(50959),a=o(59142),r=o(50151),l=o(49483);const i=CSS.supports("overscroll-behavior","none");let s=0;const c=(0,n.forwardRef)(((e,t)=>{const{children:o,...r}=e,c=(0,n.useRef)(null);return(0,n.useImperativeHandle)(t,(()=>c.current)),(0,n.useLayoutEffect)((()=>{if(l.CheckMobile.iOS())return s++,null!==c.current&&(i?1===s&&(document.body.style.overscrollBehavior="none"):(0,a.disableBodyScroll)(c.current,{allowTouchMove:d(c)})),()=>{s--,null!==c.current&&(i?0===s&&(document.body.style.overscrollBehavior=""):(0,a.enableBodyScroll)(c.current))}}),[]),n.createElement("div",{ref:c,...r},o)}));function d(e){return t=>{const o=(0,r.ensureNotNull)(e.current),n=document.activeElement;return!o.contains(t)||null!==n&&o.contains(n)&&n.contains(t)}}},65890:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 9" width="11" height="9" fill="none"><path stroke="currentColor" stroke-width="2" d="M0.999878 4L3.99988 7L9.99988 1"/></svg>'},39750:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M7 15l5 5L23 9"/></svg>'},93986:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 121 120" width="121" height="120"><path fill="#D1D4DC" d="M53.88 18.36a43.4 43.4 0 0 1 11.24 0 1 1 0 0 0 .26-1.98 45.42 45.42 0 0 0-11.76 0 1 1 0 1 0 .26 1.98zM43.04 21.26a1 1 0 0 0-.77-1.85A44.95 44.95 0 0 0 32.1 25.3a1 1 0 0 0 1.22 1.58 42.95 42.95 0 0 1 9.72-5.62zM75.42 19.96a1 1 0 0 1 1.3-.55A44.95 44.95 0 0 1 86.9 25.3a1 1 0 0 1-1.22 1.58 42.95 42.95 0 0 0-9.72-5.62 1 1 0 0 1-.54-1.3zM25.38 34.82a1 1 0 1 0-1.58-1.22 44.95 44.95 0 0 0-5.89 10.17 1 1 0 0 0 1.85.77 42.95 42.95 0 0 1 5.62-9.72zM16.86 55.38a1 1 0 0 0-1.98-.26 45.42 45.42 0 0 0 0 11.76 1 1 0 1 0 1.98-.26 43.4 43.4 0 0 1 0-11.24zM103 54.26a1 1 0 0 1 1.12.86 45.4 45.4 0 0 1 0 11.76 1 1 0 0 1-1.98-.26 43.37 43.37 0 0 0 0-11.24 1 1 0 0 1 .86-1.12zM19.76 77.46a1 1 0 0 0-1.85.77A44.95 44.95 0 0 0 23.8 88.4a1 1 0 0 0 1.58-1.22 42.95 42.95 0 0 1-5.62-9.72zM100.54 76.92a1 1 0 0 1 .54 1.3A44.95 44.95 0 0 1 95.2 88.4a1 1 0 0 1-1.58-1.22 42.95 42.95 0 0 0 5.62-9.72 1 1 0 0 1 1.3-.54zM33.32 95.12a1 1 0 1 0-1.22 1.58 44.94 44.94 0 0 0 10.17 5.88 1 1 0 0 0 .77-1.84 42.97 42.97 0 0 1-9.72-5.62zM87.08 95.3a1 1 0 0 1-.18 1.4 44.94 44.94 0 0 1-10.17 5.88 1 1 0 0 1-.77-1.84 42.98 42.98 0 0 0 9.72-5.62 1 1 0 0 1 1.4.18zM53.88 103.64a1 1 0 0 0-.26 1.98 45.4 45.4 0 0 0 11.76 0 1 1 0 0 0-.26-1.98 43.37 43.37 0 0 1-11.24 0zM62.81 53.17a1 1 0 0 0-.78 1.84 6.62 6.62 0 0 1 3.49 3.5 1 1 0 1 0 1.84-.78 8.62 8.62 0 0 0-4.55-4.56z"/><path fill="#D1D4DC" d="M45.5 61a14 14 0 1 1 24.28 9.5l7.92 7.92a1 1 0 0 1-1.42 1.42l-7.96-7.97A14 14 0 0 1 45.5 61zm14-12a12 12 0 1 0 0 24 12 12 0 0 0 0-24z"/><circle fill="#1976D2" cx="97.5" cy="39" r="13"/><path fill="#D1D4DC" d="M98.5 34a1 1 0 1 0-2 0v4h-4a1 1 0 1 0 0 2h4v4a1 1 0 1 0 2 0v-4h4a1 1 0 0 0 0-2h-4v-4z"/></svg>'},15550:e=>{
|
||||
marketType:e.marketType,country:e.country,providerId:e.providerId,fullSymbolName:e.symbol,isSelected:k(e),itemRef:k(e)?i:void 0,isYield:e.isYield})))))}())));function E(e,t){t?.preventDefault(),r.removeStudy(e)}function k(e){return x.indexOf(e)===l}}var P=o(56840);class F extends n.PureComponent{constructor(e){super(e),this._selectedItemRef=n.createRef(),this._getContextValue=()=>{const{compareModel:e}=this.props,{selectedCompareOptionIndex:t,selectedCompareIndex:o,hoveredItemId:n,allowExtendTimeScale:a}=this.state;return{compareModel:e,selectedCompareOptionIndex:t,setSelectedCompareOptionIndex:this._setSelectedCompareOptionIndex,hoveredItemId:n,setHoveredItemId:this._setHoveredItemId,selectedCompareIndex:o,setSelectedCompareIndex:this._setSelectedCompareIndex,selectedItemRef:this._selectedItemRef,clearInput:this._clearInput,allowExtendTimeScale:a,toggleAllowExtendTimeScale:this._toggleAllowExtendTimeScale}},this._clearInput=(e,t)=>{e&&e.current&&(e.current.value="",t("compare"))},this._setSelectedCompareOptionIndex=e=>{this.setState({selectedCompareOptionIndex:e})},this._setHoveredItemId=e=>{this.setState({hoveredItemId:e})},this._setSelectedCompareIndex=(e,t)=>{this.setState({selectedCompareIndex:e},t)},this._toggleAllowExtendTimeScale=()=>{const e=!this.state.allowExtendTimeScale;P.setValue("showAddSymbolDialog.extendCheckboxState",e),this.setState({allowExtendTimeScale:e})},this.state={selectedCompareOptionIndex:0,selectedCompareIndex:-1,hoveredItemId:void 0,allowExtendTimeScale:Boolean(P.getBool("showAddSymbolDialog.extendCheckboxState"))}}render(){const{children:e}=this.props;return n.createElement(y.Provider,{value:this._getContextValue()},e)}}var K=o(68335),W=o(79418),j=o(19291),X=o(29e3);function Y(e){const{openedItems:t,searchRef:o,feedItems:a,selectedIndex:r,toggleExpand:i,onSearchComplete:c,mode:d,setMode:u,setSelectedIndex:m,isMobile:h,isTablet:v,onClose:f,upperCaseEnabled:g,symbolSearchState:S,searchSpreads:x}=(0,w.useEnsuredContext)(b.SymbolSearchItemsDialogContext),{compareModel:I,hoveredItemId:C,setHoveredItemId:E,selectedCompareOptionIndex:k,setSelectedCompareOptionIndex:D,selectedCompareIndex:M,setSelectedCompareIndex:N,selectedItemRef:_,clearInput:L,allowExtendTimeScale:O}=(0,w.useEnsuredContext)(y),T=(0,p.useWatchedValueReadonly)({watchedValue:I.studies()}),A=a[r],R="compare"===d,z="exchange"===d,H=R?M:r,V=R?T:a,P=V[H],[F,Y]=B(P?.isYield);return(0,n.useEffect)((()=>{C&&E(""),M&&N(-1)}),[d]),n.createElement(W.AdaptivePopupDialog,{...e,className:s(X.dialog,!h&&(v?X.tabletDialog:X.desktopDialog)),onKeyDown:function(e){if(e.target&&e.target!==o.current)return;const n=(0,K.hashFromEvent)(e);switch(n){case 13:{if(R)return void function(){if(-1===M)return;const e=T[M];e.checked?I.removeStudy(e):I.applyStudy(e.symbol,F,O);N(-1)}();const t=Z();if(t)return e.preventDefault(),void i(t);e.preventDefault();const n=function(){if(l.enabled("compare_symbol_search_spread_operators")&&l.enabled("show_spread_operators")&&x)return o?.current?.value.trim()
|
||||
;const e=e=>"string"==typeof e?.fullSymbolName?e.fullSymbolName:e?.symbol,t=-1!==r;if(t)return e(P);const n=l.enabled("allow_arbitrary_symbol_search_input"),a="empty"!==S;if(n)return a&&V.length?e(V[0]):o?.current?.value.trim();if(!a&&!t&&!n)return;if(V.length)return e(V[0])}();return void(n&&(c([{symbol:g?n.toString().toUpperCase():n.toString(),resolved:!1,compareOption:F,allowExtendTimeScale:O}]),L&&L(o,u)))}case 27:return e.preventDefault(),z?void u("symbolSearch"):void f()}if(!R&&"good"!==S)return;switch((0,j.mapKeyCodeToDirection)(n)){case"blockPrev":if(e.preventDefault(),0===H)return;if(-1===H)return void G(0);G(H-1);break;case"blockNext":if(e.preventDefault(),H===V.length-1)return;G(H+1);break;case"inlinePrev":{const o=Z();if(o&&t.has(o))return e.preventDefault(),void i(o);if(!k||o)return;e.preventDefault(),D(k-1);break}case"inlineNext":{const o=Z();if(o&&!t.has(o))return e.preventDefault(),void i(o);if(k===Y.length-1||o)return;e.preventDefault(),D(k+1);break}}},dataName:"compare-dialog",draggable:!0});function G(e){R?N(e,U):m(e)}function U(){_.current?.scrollIntoView({block:"nearest"})}function Z(){if(!A)return;const{id:e,isOffset:t,onExpandClick:o}=A;return!t&&Boolean(o)&&e?e:void 0}}var G=o(73280),U=o(29280),Z=o(87896);class Q extends U.DialogRenderer{constructor(e){super(),this._props=e}show(e){if(this.visible().value())return;const t=n.createElement(G.SymbolSearchItemsDialog,{...this._props,shouldReturnFocus:e?.shouldReturnFocus,initialMode:this._props.initialMode||"symbolSearch",onClose:()=>this.hide()});this._rootInstance=(0,Z.createReactRoot)(t,this._container),this._setVisibility(!0)}hide(){this._rootInstance?.unmount(),this._visibility.setValue(!1),this._props.onClose?.()}}var $=o(81319),q=o(69654),J=o(70613);function ee(e){const{searchRef:t,setMode:o}=(0,w.useEnsuredContext)(b.SymbolSearchItemsDialogContext),{currentMode:a}=(0,w.useEnsuredContext)(J.SymbolSearchDialogBodyContext);return(0,n.useEffect)((()=>{const e=t.current;if(e)return e.addEventListener("input",r),()=>{e&&e.removeEventListener("input",r)}}),[]),n.createElement(q.DialogSearch,{...e});function r(){t.current&&a&&("compare"!==a.current||""===t?.current?.value?.trim()?"symbolSearch"===a.current&&""===t?.current?.value?.trim()&&o("compare"):o("symbolSearch"))}}var te=o(70673),oe=o(39362),ne=o(69849);function ae(e){const{allowExtendTimeScale:t,toggleAllowExtendTimeScale:r}=(0,d.ensureNotNull)((0,n.useContext)(y));return n.createElement(oe.SymbolSearchDialogFooter,null,n.createElement("label",{"data-name":"allow-extend-time-scale-checkbox"},n.createElement(te.CheckboxInput,{checked:t,value:t?"on":"off",onChange:r}),n.createElement("span",{className:ne.label},a.t(null,void 0,o(1048)))))}const re=l.enabled("secondary_series_extend_time_scale");function le(e){return new Q({wrapper:(t=e,e=>n.createElement(F,{...e,compareModel:t})),dialog:Y,contentItem:T,initialScreen:V,searchInput:ee,footer:re?n.createElement(ae):void 0,initialMode:"compare",searchInitiationPoint:"compare",dialogTitle:a.t(null,void 0,o(93193)),autofocus:!r.mobiletouch,
|
||||
dialogWidth:"fixed",onSearchComplete:t=>{const{compareOption:o,allowExtendTimeScale:n}=t[0];if(void 0!==o){(0,i.getSymbolSearchCompleteOverrideFunction)()(t[0].symbol,t[0].result).then((t=>{e.applyStudy(t.symbol,o,n)}))}},symbolTypes:(0,$.getAvailableSymbolTypes)(),showSpreadActions:l.enabled("show_spread_operators")&&l.enabled("compare_symbol_search_spread_operators")});var t}},46148:(e,t,o)=>{"use strict";var n;o.d(t,{CompareOption:()=>n}),function(e){e[e.SamePctScale=0]="SamePctScale",e[e.NewPriceScale=1]="NewPriceScale",e[e.NewPane=2]="NewPane",e[e.SameScale=3]="SameScale"}(n||(n={}))},37558:(e,t,o)=>{"use strict";o.d(t,{DrawerContext:()=>l,DrawerManager:()=>r});var n=o(50959),a=o(99054);class r extends n.PureComponent{constructor(e){super(e),this._isBodyFixed=!1,this._addDrawer=e=>{this.setState((t=>({stack:[...t.stack,e]})))},this._removeDrawer=e=>{this.setState((t=>({stack:t.stack.filter((t=>t!==e))})))},this.state={stack:[]}}componentDidUpdate(e,t){!t.stack.length&&this.state.stack.length&&((0,a.setFixedBodyState)(!0),this._isBodyFixed=!0),t.stack.length&&!this.state.stack.length&&this._isBodyFixed&&((0,a.setFixedBodyState)(!1),this._isBodyFixed=!1)}componentWillUnmount(){this.state.stack.length&&this._isBodyFixed&&(0,a.setFixedBodyState)(!1)}render(){return n.createElement(l.Provider,{value:{addDrawer:this._addDrawer,removeDrawer:this._removeDrawer,currentDrawer:this.state.stack.length?this.state.stack[this.state.stack.length-1]:null}},this.props.children)}}const l=n.createContext(null)},41590:(e,t,o)=>{"use strict";o.d(t,{Drawer:()=>p});var n=o(50959),a=o(50151),r=o(97754),l=o(92184),i=o(42842),s=o(37558),c=o(29197),d=o(86656),u=o(36718);var m;function p(e){const{position:t="Bottom",onClose:o,children:d,reference:m,className:p,theme:v=u}=e,f=(0,a.ensureNotNull)((0,n.useContext)(s.DrawerContext)),[g]=(0,n.useState)((()=>(0,l.randomHash)())),b=(0,n.useRef)(null),S=(0,n.useContext)(c.CloseDelegateContext);return(0,n.useLayoutEffect)((()=>((0,a.ensureNotNull)(b.current).focus({preventScroll:!0}),S.subscribe(f,o),f.addDrawer(g),()=>{f.removeDrawer(g),S.unsubscribe(f,o)})),[]),n.createElement(i.Portal,null,n.createElement("div",{ref:m,className:r(u.wrap,u[`position${t}`])},g===f.currentDrawer&&n.createElement("div",{className:u.backdrop,onClick:o}),n.createElement(h,{className:r(v.drawer,u[`position${t}`],p),ref:b,"data-name":e["data-name"]},d)))}!function(e){e.Left="Left",e.Bottom="Bottom"}(m||(m={}));const h=(0,n.forwardRef)(((e,t)=>{const{className:o,...a}=e;return n.createElement(d.TouchScrollContainer,{className:r(u.drawer,o),tabIndex:-1,ref:t,...a})}))},70412:(e,t,o)=>{"use strict";o.d(t,{hoverMouseEventFilter:()=>r,useAccurateHover:()=>l,useHover:()=>a});var n=o(50959);function a(){const[e,t]=(0,n.useState)(!1);return[e,{onMouseOver:function(e){r(e)&&t(!0)},onMouseOut:function(e){r(e)&&t(!1)}}]}function r(e){return!e.currentTarget.contains(e.relatedTarget)}function l(e){const[t,o]=(0,n.useState)(!1);return(0,n.useEffect)((()=>{const t=t=>{if(null===e.current)return;const n=e.current.contains(t.target);o(n)
|
||||
};return document.addEventListener("mouseover",t),()=>document.removeEventListener("mouseover",t)}),[]),t}},86656:(e,t,o)=>{"use strict";o.d(t,{TouchScrollContainer:()=>c});var n=o(50959),a=o(59142),r=o(50151),l=o(49483);const i=CSS.supports("overscroll-behavior","none");let s=0;const c=(0,n.forwardRef)(((e,t)=>{const{children:o,...r}=e,c=(0,n.useRef)(null);return(0,n.useImperativeHandle)(t,(()=>c.current)),(0,n.useLayoutEffect)((()=>{if(l.CheckMobile.iOS())return s++,null!==c.current&&(i?1===s&&(document.body.style.overscrollBehavior="none"):(0,a.disableBodyScroll)(c.current,{allowTouchMove:d(c)})),()=>{s--,null!==c.current&&(i?0===s&&(document.body.style.overscrollBehavior=""):(0,a.enableBodyScroll)(c.current))}}),[]),n.createElement("div",{ref:c,...r},o)}));function d(e){return t=>{const o=(0,r.ensureNotNull)(e.current),n=document.activeElement;return!o.contains(t)||null!==n&&o.contains(n)&&n.contains(t)}}},65890:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 9" width="11" height="9" fill="none"><path stroke="currentColor" stroke-width="2" d="M0.999878 4L3.99988 7L9.99988 1"/></svg>'},39750:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M7 15l5 5L23 9"/></svg>'},93986:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 121 120" width="121" height="120"><path fill="#D1D4DC" d="M53.88 18.36a43.4 43.4 0 0 1 11.24 0 1 1 0 0 0 .26-1.98 45.42 45.42 0 0 0-11.76 0 1 1 0 1 0 .26 1.98zM43.04 21.26a1 1 0 0 0-.77-1.85A44.95 44.95 0 0 0 32.1 25.3a1 1 0 0 0 1.22 1.58 42.95 42.95 0 0 1 9.72-5.62zM75.42 19.96a1 1 0 0 1 1.3-.55A44.95 44.95 0 0 1 86.9 25.3a1 1 0 0 1-1.22 1.58 42.95 42.95 0 0 0-9.72-5.62 1 1 0 0 1-.54-1.3zM25.38 34.82a1 1 0 1 0-1.58-1.22 44.95 44.95 0 0 0-5.89 10.17 1 1 0 0 0 1.85.77 42.95 42.95 0 0 1 5.62-9.72zM16.86 55.38a1 1 0 0 0-1.98-.26 45.42 45.42 0 0 0 0 11.76 1 1 0 1 0 1.98-.26 43.4 43.4 0 0 1 0-11.24zM103 54.26a1 1 0 0 1 1.12.86 45.4 45.4 0 0 1 0 11.76 1 1 0 0 1-1.98-.26 43.37 43.37 0 0 0 0-11.24 1 1 0 0 1 .86-1.12zM19.76 77.46a1 1 0 0 0-1.85.77A44.95 44.95 0 0 0 23.8 88.4a1 1 0 0 0 1.58-1.22 42.95 42.95 0 0 1-5.62-9.72zM100.54 76.92a1 1 0 0 1 .54 1.3A44.95 44.95 0 0 1 95.2 88.4a1 1 0 0 1-1.58-1.22 42.95 42.95 0 0 0 5.62-9.72 1 1 0 0 1 1.3-.54zM33.32 95.12a1 1 0 1 0-1.22 1.58 44.94 44.94 0 0 0 10.17 5.88 1 1 0 0 0 .77-1.84 42.97 42.97 0 0 1-9.72-5.62zM87.08 95.3a1 1 0 0 1-.18 1.4 44.94 44.94 0 0 1-10.17 5.88 1 1 0 0 1-.77-1.84 42.98 42.98 0 0 0 9.72-5.62 1 1 0 0 1 1.4.18zM53.88 103.64a1 1 0 0 0-.26 1.98 45.4 45.4 0 0 0 11.76 0 1 1 0 0 0-.26-1.98 43.37 43.37 0 0 1-11.24 0zM62.81 53.17a1 1 0 0 0-.78 1.84 6.62 6.62 0 0 1 3.49 3.5 1 1 0 1 0 1.84-.78 8.62 8.62 0 0 0-4.55-4.56z"/><path fill="#D1D4DC" d="M45.5 61a14 14 0 1 1 24.28 9.5l7.92 7.92a1 1 0 0 1-1.42 1.42l-7.96-7.97A14 14 0 0 1 45.5 61zm14-12a12 12 0 1 0 0 24 12 12 0 0 0 0-24z"/><circle fill="#1976D2" cx="97.5" cy="39" r="13"/><path fill="#D1D4DC" d="M98.5 34a1 1 0 1 0-2 0v4h-4a1 1 0 1 0 0 2h4v4a1 1 0 1 0 2 0v-4h4a1 1 0 0 0 0-2h-4v-4z"/></svg>'},15550:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 121 120" width="121" height="120"><path fill="#1E222D" d="M53.88 18.36a43.4 43.4 0 0 1 11.24 0 1 1 0 0 0 .26-1.98 45.42 45.42 0 0 0-11.76 0 1 1 0 1 0 .26 1.98zM43.04 21.26a1 1 0 0 0-.77-1.85A44.95 44.95 0 0 0 32.1 25.3a1 1 0 0 0 1.22 1.58 42.95 42.95 0 0 1 9.72-5.62zM75.42 19.96a1 1 0 0 1 1.3-.55A44.95 44.95 0 0 1 86.9 25.3a1 1 0 0 1-1.22 1.58 42.95 42.95 0 0 0-9.72-5.62 1 1 0 0 1-.54-1.3zM25.38 34.82a1 1 0 1 0-1.58-1.22 44.95 44.95 0 0 0-5.89 10.17 1 1 0 0 0 1.85.77 42.95 42.95 0 0 1 5.62-9.72zM16.86 55.38a1 1 0 0 0-1.98-.26 45.42 45.42 0 0 0 0 11.76 1 1 0 1 0 1.98-.26 43.4 43.4 0 0 1 0-11.24zM103 54.26a1 1 0 0 1 1.12.86 45.4 45.4 0 0 1 0 11.76 1 1 0 0 1-1.98-.26 43.37 43.37 0 0 0 0-11.24 1 1 0 0 1 .86-1.12zM19.76 77.46a1 1 0 0 0-1.85.77A44.95 44.95 0 0 0 23.8 88.4a1 1 0 0 0 1.58-1.22 42.95 42.95 0 0 1-5.62-9.72zM100.54 76.92a1 1 0 0 1 .54 1.3A44.95 44.95 0 0 1 95.2 88.4a1 1 0 0 1-1.58-1.22 42.95 42.95 0 0 0 5.62-9.72 1 1 0 0 1 1.3-.54zM33.32 95.12a1 1 0 1 0-1.22 1.58 44.94 44.94 0 0 0 10.17 5.88 1 1 0 0 0 .77-1.84 42.97 42.97 0 0 1-9.72-5.62zM87.08 95.3a1 1 0 0 1-.18 1.4 44.94 44.94 0 0 1-10.17 5.88 1 1 0 0 1-.77-1.84 42.98 42.98 0 0 0 9.72-5.62 1 1 0 0 1 1.4.18zM53.88 103.64a1 1 0 0 0-.26 1.98 45.4 45.4 0 0 0 11.76 0 1 1 0 0 0-.26-1.98 43.37 43.37 0 0 1-11.24 0zM62.81 53.17a1 1 0 0 0-.78 1.84 6.62 6.62 0 0 1 3.49 3.5 1 1 0 1 0 1.84-.78 8.62 8.62 0 0 0-4.55-4.56z"/><path fill="#1E222D" d="M45.5 61a14 14 0 1 1 24.28 9.5l7.92 7.92a1 1 0 0 1-1.42 1.42l-7.96-7.97A14 14 0 0 1 45.5 61zm14-12a12 12 0 1 0 0 24 12 12 0 0 0 0-24z"/><circle fill="#2196F3" cx="97.5" cy="39" r="13"/><path fill="#fff" d="M98.5 34a1 1 0 1 0-2 0v4h-4a1 1 0 1 0 0 2h4v4a1 1 0 1 0 2 0v-4h4a1 1 0 0 0 0-2h-4v-4z"/></svg>'}}]);
|
||||
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],ar:["#{count} (عمود)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],ar:["#{count}' (سعر، عمود)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],ar:["(سعر الفتح + أعلى سعر+ أدنى سعر + سعر الإغلاق)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ar:["(أعلى سعر+ أدنى سعر + سعر الإغلاق)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ar:["(أعلى سعر + أدنى سعر)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ar:["تلوين الأعمدة طبقًا للإغلاق السابق"]}},78930:e=>{e.exports={en:["Coordinates"],ar:["إحداثيات"]}},24197:e=>{e.exports={en:["Center"],ar:["مركز"]}},84831:e=>{e.exports={en:["Close line"],ar:["خط الإغلاق"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ar:["تعديل البيانات لأرباح الأسهم"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ar:["ضبط لتغييرات العقود"]}},27567:e=>{e.exports={en:["Bottom"],ar:["الأسفل"]}},3159:e=>{e.exports={en:["Bottom line"],ar:["الخط السفلي"]}},74406:e=>{e.exports={en:["Body"],ar:["الجزء الرئيسي"]}},333:e=>{e.exports={en:["Borders"],ar:["إطارات"]}},42398:e=>{e.exports={en:["Base"],ar:["نقطة الأساس"]}},28975:e=>{e.exports={en:["Base level"],ar:["مستوى الأساس"]}},71776:e=>{e.exports={en:["Down"],ar:["للأسفل"]}},17611:e=>{e.exports={en:["Down bars"],ar:["الشموع الهابطة"]}},23743:e=>{e.exports={en:["Down color"],ar:["لون الإنخفاض"]}},48225:e=>{e.exports={en:["Data modification"],ar:["تعديل البيانات"]}},72942:e=>{e.exports={en:["Days"],ar:["الأيام"]}},16564:e=>{e.exports={en:["Default"],ar:["افتراضي"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],ar:["النزوح (السعر، العمود)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],ar:["خلفية ساعات التداول الإلكترونية"]}},819:e=>{e.exports={en:["Extend lines"],ar:["تمديد الخطوط"]}},41129:e=>{e.exports={en:["Fill"],ar:["ملئ"]}},61112:e=>{e.exports={en:["Fill top area"],ar:["إملئ المنطقة العلوية"]}},73185:e=>{e.exports={en:["Fill bottom area"],ar:["ملء المنطقة السفلية"]}},886:e=>{e.exports={en:["HLC bars"],ar:["أعمدة (الأعلى - الأدنى - الإغلاق)"]}},56796:e=>{e.exports={en:["Hours"],ar:["ساعات"]}},95406:e=>{e.exports={en:["Horizontal"],ar:["أفقي"]}},56359:e=>{e.exports={en:["High line"],ar:["خط أعلى مستوى"]}},47326:e=>{e.exports={en:["Integer"],ar:["عدد صحيح"]}},21429:e=>{e.exports={en:["Inputs"],ar:["مدخلات"]}},64075:e=>{e.exports={en:["Override min tick"],ar:["تجاوز الحد الأدنى للتيك"]}},34579:e=>{e.exports={en:["Low line"],ar:["خط أدنى مستوى"]}},11626:e=>{e.exports={en:["Left"],ar:["يسار"]}},43154:e=>{e.exports={en:["Months"],ar:["الشهور"]}},68833:e=>{e.exports={en:["Middle"],ar:["وسط"]}},42562:e=>{e.exports={en:["Minutes"],ar:["دقائق"]}},65188:e=>{e.exports={en:["Seconds"],ar:["ثواني"]}},13350:e=>{e.exports={en:["Pearson's R"],ar:["معامل بيرسون"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ar:["خلفية ما قبل/بعد الجلسة"]}},59766:e=>{e.exports={en:["Precision"],ar:["الدقة"]}},84684:e=>{e.exports={en:["Price source"],ar:["مصدر السعر"]
|
||||
}},73466:e=>{e.exports={en:["Projection up bars"],ar:["إسقاط الأعمدة الصاعدة"]}},77430:e=>{e.exports={en:["Projection candles"],ar:["شموع الإسقاط"]}},88367:e=>{e.exports={en:["Projection down bars"],ar:["إسقاط الأعمدة الهابطة"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ar:["عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},50421:e=>{e.exports={en:["Right"],ar:["يمين"]}},835:e=>{e.exports={en:["Weeks"],ar:["أسابيع"]}},32163:e=>{e.exports={en:["Wick"],ar:["ظل الشمعة"]}},97118:e=>{e.exports={en:["Top"],ar:["الأعلى"]}},89349:e=>{e.exports={en:["Top line"],ar:["الخط العلوي"]}},70320:e=>{e.exports={en:["Text"],ar:["النص"]}},25485:e=>{e.exports={en:["Text alignment"],ar:["محاذاة النص"]}},67781:e=>{e.exports={en:["Text orientation"],ar:["اتجاه النص"]}},20215:e=>{e.exports={en:["Thin bars"],ar:["أعمدة نحيفة"]}},24821:e=>{e.exports={en:["Ticks"],ar:["تيكات السعر"]}},77073:e=>{e.exports={en:["Timezone"],ar:["توقيت"]}},22691:e=>{e.exports={en:["Up"],ar:["أعلى"]}},23091:e=>{e.exports={en:["Up color"],ar:["لون الإرتفاع"]}},36957:e=>{e.exports={en:["Up bars"],ar:["الشموع الصاعدة"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ar:["استخدم التسوية في أقرب وقت على الفاصل الزمني اليومي"]}},69526:e=>{e.exports={en:["Vertical"],ar:["عمودي"]}},21105:e=>{e.exports={en:["candle"],ar:["شمعة"]}},27068:e=>{e.exports={en:["change HLC bars"],ar:["تغيير أعمدة HLC"]}},86866:e=>{e.exports={en:["change area fill color"],ar:["تغيير لون المنطقة"]}},89346:e=>{e.exports={en:["change area line width"],ar:["تغيير عرض خط المنطقة"]}},29605:e=>{e.exports={en:["change area line color"],ar:["تغيير لون خطوط المنطقة"]}},4640:e=>{e.exports={en:["change area price source"],ar:["تغيير مصدر سعر المنطقة"]}},42190:e=>{e.exports={en:["change base level"],ar:["تغيير مستوى الأساس"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ar:["تغيير لون قاع خط الأساس"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ar:["تغيير لون قاع خط الأساس"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ar:["تغيير لون المنطقة السفلية لخط الأساس"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ar:["تغيير لون المنطقة العليا لخط الأساس"]}},68609:e=>{e.exports={en:["change baseline price source"],ar:["تغيير مصدر السعر الأساسي"]}},69044:e=>{e.exports={en:["change baseline top line color"],ar:["تغيير لون خطوط خط الأساس"]}},68197:e=>{e.exports={en:["change baseline top line width"],ar:["تغيير عرض أعلى الخط الأساسي"]}},33464:e=>{e.exports={en:["change bar up color"],ar:["تغيير لون العمود الصاعد"]}},2066:e=>{e.exports={en:["change bar X coordinate"],ar:["تغيير إحداثيات سعر X"]}},59622:e=>{e.exports={en:["change bar down color"],ar:["تغيير لون العمود الهابط"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ar:["تغيير لون الأعمدة بناءً على الإغلاق السابق"]}},88324:e=>{e.exports={en:["change column up color"],ar:["تغيير لون الأعمدة الصاعد"]}},93890:e=>{e.exports={en:["change column down color"],
|
||||
ar:["تغيير لون الأعمدة الهابطة"]}},4727:e=>{e.exports={en:["change column price source"],ar:["تغيير مصدر سعر العمود"]}},82063:e=>{e.exports={en:["change decimal places"],ar:["تغيير المنازل العشرية"]}},44223:e=>{e.exports={en:["change extended hours color"],ar:["تغيير لون الساعات الممددة"]}},47393:e=>{e.exports={en:["change electronic trading hours"],ar:["تغيير ساعات التداول الإلكترونية"]}},6026:e=>{e.exports={en:["change high-low body color"],ar:["تغيير لون جسم أعلى-أدنى"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ar:["تغيير وضوح جسم أعلى-أدنى"]}},46844:e=>{e.exports={en:["change high-low border color"],ar:["تغيير لون حدود أعلى-أدنى"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ar:["تغيير وضوح حدود أعلى-أدنى"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ar:["تغيير وضوح ملصقات أعلى-أدنى"]}},56961:e=>{e.exports={en:["change high-low labels color"],ar:["تغيير لون ملصقات أعلى-أدنى"]}},88640:e=>{e.exports={en:["change line color"],ar:["تغيير لون الخط"]}},41837:e=>{e.exports={en:["change line price source"],ar:["تغيير مصدر سعر الخط"]}},48339:e=>{e.exports={en:["change line width"],ar:["تغيير عرض الخط"]}},38730:e=>{e.exports={en:["change post market color"],ar:["تغيير لون ما بعد الجلسة"]}},44371:e=>{e.exports={en:["change pre market color"],ar:["تغيير لون ما قبل الجلسة"]}},11737:e=>{e.exports={en:["change price Y coordinate"],ar:["تغيير إحداثيات سعر Y"]}},16241:e=>{e.exports={en:["change range bars style"],ar:["تغيير نمط أعمدة النطاق"]}},65821:e=>{e.exports={en:["change range thin bars"],ar:["تغيير نطاق الأعمدة الرقيقة"]}},75487:e=>{e.exports={en:["change renko wick down color"],ar:["تغيير لون ذيل رينكو الهابط"]}},92277:e=>{e.exports={en:["change renko wick up color"],ar:["تغيير لون ذيل الرينكو الصاعد"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ar:["تغيير وضوح ذيل الرينكو"]}},91109:e=>{e.exports={en:["change study overlay min tick"],ar:["تغيير تراكب أدنى تيك في الدراسة"]}},82924:e=>{e.exports={en:["change study overlay style"],ar:["تغيير نمط تراكب الدراسة"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ar:["تغيير عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},60834:e=>{e.exports={en:["change thin bars"],ar:["تغيير الأعمدة الرقيقة"]}},78509:e=>{e.exports={en:["change {title} base line color"],ar:["تغيير لون خط القاعدة {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],ar:["تغيير نمط خط القاعدة {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],ar:["تغيير وضوح خط القاعدة {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],ar:["تغيير عرض خط القاعدة {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],ar:["تغيير لون الخط الأدنى {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],ar:["تغيير نمط الخط الأدنى {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],ar:["تغيير وضوح الخط الأدنى {title}"]}},64615:e=>{e.exports={
|
||||
en:["change {title} down line width"],ar:["تغيير عرض الخط الأدنى {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],ar:["تغيير {title} الأيام إلى"]}},91201:e=>{e.exports={en:["change {title} days from"],ar:["تغيير {title} الأيام من"]}},76295:e=>{e.exports={en:["change {title} extend lines"],ar:["تغيير تمديد الخط {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],ar:["تغيير {title} الساعات من"]}},67233:e=>{e.exports={en:["change {title} hours to"],ar:["تغيير {title} الساعات إلى"]}},99122:e=>{e.exports={en:["change {title} months from"],ar:["تغيير {title} الأشهر من"]}},10518:e=>{e.exports={en:["change {title} months to"],ar:["تغيير {title} الأشهر إلى"]}},38011:e=>{e.exports={en:["change {title} minutes to"],ar:["تغيير وضوح {title} على الساعات"]}},59820:e=>{e.exports={en:["change {title} minutes from"],ar:["تغيير {title} الدقائق إلى"]}},6573:e=>{e.exports={en:["change {title} seconds to"],ar:["تغيير {title} الثواني إلى"]}},86780:e=>{e.exports={en:["change {title} seconds from"],ar:["تغيير {title} الثواني من"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],ar:["تغيير عرض {title} pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"],ar:["تغيير {title} الأسابيع من"]}},18678:e=>{e.exports={en:["change {title} weeks to"],ar:["تغيير {title} الأسابيع إلى"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],ar:["تغيير وضوح الخط العلوي {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],ar:["تغيير عرض الخط العلوي {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],ar:["تغيير لون الخط العلوي {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],ar:["تغيير نمط الخط العلوي {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],ar:["تغيير وضوح {title} على التيكات"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],ar:["تغيير وضوح {title} على الأسابيع"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],ar:["تغيير وضوح {title} على {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],ar:["تغيير وضوح {title} على الأيام"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],ar:["تغيير وضوح {title} على الساعات"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],ar:["تغيير {title} الدقائق من"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],ar:["تغيير وضوح {title} على الأشهر"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],ar:["تغيير وضوح {title} على الثواني"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ar:["تغيير لون حدود {candleType} الصاعد"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ar:["تغيير لون {candleType} الصاعد"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ar:["تغيير لون ذيل {candleType} الهابط"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ar:["تغيير لون ذيل {candleType} الصاعد"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ar:["تغيير وضوح ذيل {candleType}"]}},60608:e=>{
|
||||
e.exports={en:["change {candleType} body visibility"],ar:["تغيير وضوح الجسم {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ar:["تغيير وضوح حدود {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ar:["تغيير لون حدود {candleType} الهابط"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ar:["تغيير لون {candleType} الهابط"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ar:["تغيير لون حدود عمود {chartType} الهابط"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ar:["تغيير لون حدود عمود {chartType} الصاعد"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ar:["تغيير لون {chartType} الهابط"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ar:["تغيير لون الإسقاط لحدود عمود {chartType} الصاعد"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ar:["تغيير لون عمود الإسقاط {chartType} الهابط"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ar:["تغيير لون عمود الإسقاط {chartType} الصاعد"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ar:["تغيير لون {chartType} الصاعد"]}},66110:e=>{e.exports={en:["change {inputName} property"],ar:["تغيير خاصية {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],ar:["تغيير خاصية {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ar:["ضبط لبيانات توزيعات الأرباح"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ar:["ضبط لتغييرات العقد"]}},35813:e=>{e.exports={en:["days"],ar:["الأيام"]}},89919:e=>{e.exports={en:["days to"],ar:["أيام لـ"]}},59215:e=>{e.exports={en:["days from"],ar:["أيام من"]}},2359:e=>{e.exports={en:["hours"],ar:["ساعات"]}},82267:e=>{e.exports={en:["hours from"],ar:["ساعات من"]}},15600:e=>{e.exports={en:["hours to"],ar:["ساعات لـ"]}},92598:e=>{e.exports={en:["hollow candles"],ar:["شموع مفرغة"]}},76261:e=>{e.exports={en:["move drawings"],ar:["نقل الرسومات"]}},95300:e=>{e.exports={en:["months"],ar:["الشهور"]}},17250:e=>{e.exports={en:["months from"],ar:["أشهر من"]}},2828:e=>{e.exports={en:["months to"],ar:["أشهر لـ"]}},18726:e=>{e.exports={en:["minutes"],ar:["دقائق"]}},67649:e=>{e.exports={en:["minutes to"],ar:["دقائق لـ"]}},22476:e=>{e.exports={en:["minutes from"],ar:["دقائق من"]}},751:e=>{e.exports={en:["seconds"],ar:["ثواني"]}},73419:e=>{e.exports={en:["seconds to"],ar:["ثواني لـ"]}},35801:e=>{e.exports={en:["seconds from"],ar:["ثوان من"]}},57243:e=>{e.exports={en:["range","ranges"],ar:["نطاق","نطاق","نطاق","نطاقات","نطاق","نطاق"]}},70282:e=>{e.exports={en:["renko"],ar:["رينكو"]}},45537:e=>{e.exports={en:["weeks"],ar:["أسابيع"]}},92859:e=>{e.exports={en:["weeks from"],ar:["أسابيع من"]}},44127:e=>{e.exports={en:["weeks to"],ar:["أسابيع لـ"]}},3539:e=>{e.exports={en:["ticks"],ar:["تيكات السعر"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ar:["استخدام التسوية عند الإغلاق على الفاصل الزمني اليومي"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],
|
||||
ar:["{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية"]}}}]);
|
||||
6
charting_library/bundles/ar.1341.1068954aa326300ef390.js
Normal file
6
charting_library/bundles/ar.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],ar:["#{count} (عمود)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],ar:["#{count}' (سعر، عمود)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],ar:["(سعر الفتح + أعلى سعر+ أدنى سعر + سعر الإغلاق)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ar:["(أعلى سعر+ أدنى سعر + سعر الإغلاق)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ar:["(أعلى سعر + أدنى سعر)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ar:["تلوين الأعمدة طبقًا للإغلاق السابق"]}},78930:e=>{e.exports={en:["Coordinates"],ar:["إحداثيات"]}},24197:e=>{e.exports={en:["Center"],ar:["مركز"]}},84831:e=>{e.exports={en:["Close line"],ar:["خط الإغلاق"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ar:["تعديل البيانات لأرباح الأسهم"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ar:["ضبط لتغييرات العقود"]}},27567:e=>{e.exports={en:["Bottom"],ar:["الأسفل"]}},3159:e=>{e.exports={en:["Bottom line"],ar:["الخط السفلي"]}},74406:e=>{e.exports={en:["Body"],ar:["الجزء الرئيسي"]}},333:e=>{e.exports={en:["Borders"],ar:["إطارات"]}},42398:e=>{e.exports={en:["Base"],ar:["نقطة الأساس"]}},28975:e=>{e.exports={en:["Base level"],ar:["مستوى الأساس"]}},71776:e=>{e.exports={en:["Down"],ar:["للأسفل"]}},17611:e=>{e.exports={en:["Down bars"],ar:["الشموع الهابطة"]}},23743:e=>{e.exports={en:["Down color"],ar:["لون الإنخفاض"]}},48225:e=>{e.exports={en:["Data modification"],ar:["تعديل البيانات"]}},72942:e=>{e.exports={en:["Days"],ar:["الأيام"]}},16564:e=>{e.exports={en:["Default"],ar:["افتراضي"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],ar:["النزوح (السعر، العمود)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],ar:["خلفية ساعات التداول الإلكترونية"]}},819:e=>{e.exports={en:["Extend lines"],ar:["تمديد الخطوط"]}},41129:e=>{e.exports={en:["Fill"],ar:["ملئ"]}},61112:e=>{e.exports={en:["Fill top area"],ar:["إملئ المنطقة العلوية"]}},73185:e=>{e.exports={en:["Fill bottom area"],ar:["ملء المنطقة السفلية"]}},56796:e=>{e.exports={en:["Hours"],ar:["ساعات"]}},95406:e=>{e.exports={en:["Horizontal"],ar:["أفقي"]}},56359:e=>{e.exports={en:["High line"],ar:["خط أعلى مستوى"]}},47326:e=>{e.exports={en:["Integer"],ar:["عدد صحيح"]}},21429:e=>{e.exports={en:["Inputs"],ar:["مدخلات"]}},64075:e=>{e.exports={en:["Override min tick"],ar:["تجاوز الحد الأدنى للتيك"]}},34579:e=>{e.exports={en:["Low line"],ar:["خط أدنى مستوى"]}},11626:e=>{e.exports={en:["Left"],ar:["يسار"]}},43154:e=>{e.exports={en:["Months"],ar:["الشهور"]}},68833:e=>{e.exports={en:["Middle"],ar:["وسط"]}},42562:e=>{e.exports={en:["Minutes"],ar:["دقائق"]}},65188:e=>{e.exports={en:["Seconds"],ar:["ثواني"]}},13350:e=>{e.exports={en:["Pearson's R"],ar:["معامل بيرسون"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ar:["خلفية ما قبل/بعد الجلسة"]}},59766:e=>{e.exports={en:["Precision"],ar:["الدقة"]}},84684:e=>{e.exports={en:["Price source"],ar:["مصدر السعر"]}},
|
||||
73466:e=>{e.exports={en:["Projection up bars"],ar:["إسقاط الأعمدة الصاعدة"]}},77430:e=>{e.exports={en:["Projection candles"],ar:["شموع الإسقاط"]}},88367:e=>{e.exports={en:["Projection down bars"],ar:["إسقاط الأعمدة الهابطة"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ar:["عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},50421:e=>{e.exports={en:["Right"],ar:["يمين"]}},835:e=>{e.exports={en:["Weeks"],ar:["أسابيع"]}},32163:e=>{e.exports={en:["Wick"],ar:["ظل الشمعة"]}},97118:e=>{e.exports={en:["Top"],ar:["الأعلى"]}},89349:e=>{e.exports={en:["Top line"],ar:["الخط العلوي"]}},70320:e=>{e.exports={en:["Text"],ar:["النص"]}},25485:e=>{e.exports={en:["Text alignment"],ar:["محاذاة النص"]}},67781:e=>{e.exports={en:["Text orientation"],ar:["اتجاه النص"]}},20215:e=>{e.exports={en:["Thin bars"],ar:["أعمدة نحيفة"]}},24821:e=>{e.exports={en:["Ticks"],ar:["تيكات السعر"]}},77073:e=>{e.exports={en:["Timezone"],ar:["توقيت"]}},22691:e=>{e.exports={en:["Up"],ar:["أعلى"]}},23091:e=>{e.exports={en:["Up color"],ar:["لون الإرتفاع"]}},36957:e=>{e.exports={en:["Up bars"],ar:["الشموع الصاعدة"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ar:["استخدم التسوية في أقرب وقت على الفاصل الزمني اليومي"]}},69526:e=>{e.exports={en:["Vertical"],ar:["عمودي"]}},21105:e=>{e.exports={en:["candle"],ar:["شمعة"]}},27068:e=>{e.exports={en:["change HLC bars"],ar:["تغيير أعمدة HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],ar:["تغيير لون المنطقة"]}},89346:e=>{e.exports={en:["change area line width"],ar:["تغيير عرض خط المنطقة"]}},29605:e=>{e.exports={en:["change area line color"],ar:["تغيير لون خطوط المنطقة"]}},4640:e=>{e.exports={en:["change area price source"],ar:["تغيير مصدر سعر المنطقة"]}},42190:e=>{e.exports={en:["change base level"],ar:["تغيير مستوى الأساس"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ar:["تغيير لون قاع خط الأساس"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ar:["تغيير لون قاع خط الأساس"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ar:["تغيير لون المنطقة السفلية لخط الأساس"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ar:["تغيير لون المنطقة العليا لخط الأساس"]}},68609:e=>{e.exports={en:["change baseline price source"],ar:["تغيير مصدر السعر الأساسي"]}},69044:e=>{e.exports={en:["change baseline top line color"],ar:["تغيير لون خطوط خط الأساس"]}},68197:e=>{e.exports={en:["change baseline top line width"],ar:["تغيير عرض أعلى الخط الأساسي"]}},33464:e=>{e.exports={en:["change bar up color"],ar:["تغيير لون العمود الصاعد"]}},2066:e=>{e.exports={en:["change bar X coordinate"],ar:["تغيير إحداثيات سعر X"]}},59622:e=>{e.exports={en:["change bar down color"],ar:["تغيير لون العمود الهابط"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ar:["تغيير لون الأعمدة بناءً على الإغلاق السابق"]}},88324:e=>{e.exports={en:["change column up color"],ar:["تغيير لون الأعمدة الصاعد"]}},93890:e=>{e.exports={
|
||||
en:["change column down color"],ar:["تغيير لون الأعمدة الهابطة"]}},4727:e=>{e.exports={en:["change column price source"],ar:["تغيير مصدر سعر العمود"]}},82063:e=>{e.exports={en:["change decimal places"],ar:["تغيير المنازل العشرية"]}},44223:e=>{e.exports={en:["change extended hours color"],ar:["تغيير لون الساعات الممددة"]}},47393:e=>{e.exports={en:["change electronic trading hours"],ar:["تغيير ساعات التداول الإلكترونية"]}},6026:e=>{e.exports={en:["change high-low body color"],ar:["تغيير لون جسم أعلى-أدنى"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ar:["تغيير وضوح جسم أعلى-أدنى"]}},46844:e=>{e.exports={en:["change high-low border color"],ar:["تغيير لون حدود أعلى-أدنى"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ar:["تغيير وضوح حدود أعلى-أدنى"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ar:["تغيير وضوح ملصقات أعلى-أدنى"]}},56961:e=>{e.exports={en:["change high-low labels color"],ar:["تغيير لون ملصقات أعلى-أدنى"]}},88640:e=>{e.exports={en:["change line color"],ar:["تغيير لون الخط"]}},41837:e=>{e.exports={en:["change line price source"],ar:["تغيير مصدر سعر الخط"]}},48339:e=>{e.exports={en:["change line width"],ar:["تغيير عرض الخط"]}},38730:e=>{e.exports={en:["change post market color"],ar:["تغيير لون ما بعد الجلسة"]}},44371:e=>{e.exports={en:["change pre market color"],ar:["تغيير لون ما قبل الجلسة"]}},11737:e=>{e.exports={en:["change price Y coordinate"],ar:["تغيير إحداثيات سعر Y"]}},16241:e=>{e.exports={en:["change range bars style"],ar:["تغيير نمط أعمدة النطاق"]}},65821:e=>{e.exports={en:["change range thin bars"],ar:["تغيير نطاق الأعمدة الرقيقة"]}},75487:e=>{e.exports={en:["change renko wick down color"],ar:["تغيير لون ذيل رينكو الهابط"]}},92277:e=>{e.exports={en:["change renko wick up color"],ar:["تغيير لون ذيل الرينكو الصاعد"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ar:["تغيير وضوح ذيل الرينكو"]}},91109:e=>{e.exports={en:["change study overlay min tick"],ar:["تغيير تراكب أدنى تيك في الدراسة"]}},82924:e=>{e.exports={en:["change study overlay style"],ar:["تغيير نمط تراكب الدراسة"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ar:["تغيير عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},60834:e=>{e.exports={en:["change thin bars"],ar:["تغيير الأعمدة الرقيقة"]}},78509:e=>{e.exports={en:["change {title} base line color"],ar:["تغيير لون خط القاعدة {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],ar:["تغيير نمط خط القاعدة {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],ar:["تغيير وضوح خط القاعدة {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],ar:["تغيير عرض خط القاعدة {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],ar:["تغيير لون الخط الأدنى {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],ar:["تغيير نمط الخط الأدنى {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],ar:["تغيير وضوح الخط الأدنى {title}"]}},64615:e=>{e.exports={
|
||||
en:["change {title} down line width"],ar:["تغيير عرض الخط الأدنى {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],ar:["تغيير {title} الأيام إلى"]}},91201:e=>{e.exports={en:["change {title} days from"],ar:["تغيير {title} الأيام من"]}},76295:e=>{e.exports={en:["change {title} extend lines"],ar:["تغيير تمديد الخط {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],ar:["تغيير {title} الساعات من"]}},67233:e=>{e.exports={en:["change {title} hours to"],ar:["تغيير {title} الساعات إلى"]}},99122:e=>{e.exports={en:["change {title} months from"],ar:["تغيير {title} الأشهر من"]}},10518:e=>{e.exports={en:["change {title} months to"],ar:["تغيير {title} الأشهر إلى"]}},38011:e=>{e.exports={en:["change {title} minutes to"],ar:["تغيير وضوح {title} على الساعات"]}},59820:e=>{e.exports={en:["change {title} minutes from"],ar:["تغيير {title} الدقائق إلى"]}},6573:e=>{e.exports={en:["change {title} seconds to"],ar:["تغيير {title} الثواني إلى"]}},86780:e=>{e.exports={en:["change {title} seconds from"],ar:["تغيير {title} الثواني من"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],ar:["تغيير عرض {title} pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"],ar:["تغيير {title} الأسابيع من"]}},18678:e=>{e.exports={en:["change {title} weeks to"],ar:["تغيير {title} الأسابيع إلى"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],ar:["تغيير وضوح الخط العلوي {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],ar:["تغيير عرض الخط العلوي {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],ar:["تغيير لون الخط العلوي {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],ar:["تغيير نمط الخط العلوي {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],ar:["تغيير وضوح {title} على التيكات"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],ar:["تغيير وضوح {title} على الأسابيع"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],ar:["تغيير وضوح {title} على {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],ar:["تغيير وضوح {title} على الأيام"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],ar:["تغيير وضوح {title} على الساعات"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],ar:["تغيير {title} الدقائق من"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],ar:["تغيير وضوح {title} على الأشهر"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],ar:["تغيير وضوح {title} على الثواني"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ar:["تغيير لون حدود {candleType} الصاعد"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ar:["تغيير لون {candleType} الصاعد"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ar:["تغيير لون ذيل {candleType} الهابط"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ar:["تغيير لون ذيل {candleType} الصاعد"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ar:["تغيير وضوح ذيل {candleType}"]}},60608:e=>{
|
||||
e.exports={en:["change {candleType} body visibility"],ar:["تغيير وضوح الجسم {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ar:["تغيير وضوح حدود {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ar:["تغيير لون حدود {candleType} الهابط"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ar:["تغيير لون {candleType} الهابط"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ar:["تغيير لون حدود عمود {chartType} الهابط"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ar:["تغيير لون حدود عمود {chartType} الصاعد"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ar:["تغيير لون {chartType} الهابط"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ar:["تغيير لون الإسقاط لحدود عمود {chartType} الصاعد"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ar:["تغيير لون عمود الإسقاط {chartType} الهابط"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ar:["تغيير لون عمود الإسقاط {chartType} الصاعد"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ar:["تغيير لون {chartType} الصاعد"]}},66110:e=>{e.exports={en:["change {inputName} property"],ar:["تغيير خاصية {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],ar:["تغيير خاصية {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ar:["ضبط لبيانات توزيعات الأرباح"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ar:["ضبط لتغييرات العقد"]}},35813:e=>{e.exports={en:["days"],ar:["الأيام"]}},89919:e=>{e.exports={en:["days to"],ar:["أيام لـ"]}},59215:e=>{e.exports={en:["days from"],ar:["أيام من"]}},2359:e=>{e.exports={en:["hours"],ar:["ساعات"]}},82267:e=>{e.exports={en:["hours from"],ar:["ساعات من"]}},15600:e=>{e.exports={en:["hours to"],ar:["ساعات لـ"]}},92598:e=>{e.exports={en:["hollow candles"],ar:["شموع مفرغة"]}},76261:e=>{e.exports={en:["move drawings"],ar:["نقل الرسومات"]}},95300:e=>{e.exports={en:["months"],ar:["الشهور"]}},17250:e=>{e.exports={en:["months from"],ar:["أشهر من"]}},2828:e=>{e.exports={en:["months to"],ar:["أشهر لـ"]}},18726:e=>{e.exports={en:["minutes"],ar:["دقائق"]}},67649:e=>{e.exports={en:["minutes to"],ar:["دقائق لـ"]}},22476:e=>{e.exports={en:["minutes from"],ar:["دقائق من"]}},751:e=>{e.exports={en:["seconds"],ar:["ثواني"]}},73419:e=>{e.exports={en:["seconds to"],ar:["ثواني لـ"]}},35801:e=>{e.exports={en:["seconds from"],ar:["ثوان من"]}},57243:e=>{e.exports={en:["range","ranges"],ar:["نطاق","نطاق","نطاق","نطاقات","نطاق","نطاق"]}},70282:e=>{e.exports={en:["renko"],ar:["رينكو"]}},45537:e=>{e.exports={en:["weeks"],ar:["أسابيع"]}},92859:e=>{e.exports={en:["weeks from"],ar:["أسابيع من"]}},44127:e=>{e.exports={en:["weeks to"],ar:["أسابيع لـ"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],ar:["تيكات السعر"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ar:["استخدام التسوية عند الإغلاق على الفاصل الزمني اليومي"]}},59644:e=>{
|
||||
e.exports={en:["{value} decimal","{value} decimals"],ar:["{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],ar:["نقطة"]}},41256:e=>{e.exports={en:["Back"],ar:["عودة"]}},53174:e=>{e.exports={en:["Right"],ar:["حق"]}},57e3:e=>{e.exports={en:["Compare"],ar:["قارن"]}},93111:e=>{e.exports={en:["Content"],ar:["المحتوى"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],ar:["نسخ رابط صورة الرسم البياني"]}},4543:e=>{e.exports={en:["Cancel"],ar:["إلغاء"]}},59934:e=>{e.exports={en:["Channels"],ar:["القنوات"]}},63245:e=>{e.exports={en:["Change symbol"],ar:["تغيير الرمز"]}},56281:e=>{e.exports={en:["Chart style Columns"],ar:["أعمدة نمط الرسم البياني"]}},64526:e=>{e.exports={en:["Chart style Candles"],ar:["شموع نمط الرسم البياني"]}},9537:e=>{e.exports={en:["Chart style Area"],ar:["منطقة نمط الرسم البياني"]}},19265:e=>{e.exports={en:["Chart style Bars"],ar:["أعمدة نمط الرسم البياني"]}},19579:e=>{e.exports={en:["Chart style Baseline"],ar:["الخط الأساسي لنمط الرسم البياني"]}},47189:e=>{e.exports={en:["Chart style Kagi"],ar:["نمط الرسم البياني كاجي"]}},39883:e=>{e.exports={en:["Chart style HLC area"],ar:["نمط الرسم البياني HLC"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],ar:["شموع جوفاء لنمط الرسم البياني"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],ar:["نمط الرسم البياني هيكين آشي"]}},70405:e=>{e.exports={en:["Chart style High-low"],ar:["نمط الرسم البياني High-Low"]}},92911:e=>{e.exports={en:["Chart style Line"],ar:["خط نمط الرسم البياني"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],ar:["خط نمط الرسم البياني مع علامات"]}},11604:e=>{e.exports={en:["Chart style Line break"],ar:["فاصل خط لنمط الرسم البياني"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],ar:["نمط بروفايل أحجام التداول للجلسة"]}},40447:e=>{e.exports={en:["Chart style Step line"],ar:["الخط المتدرج لنمط الرسم البياني"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],ar:["نمط الرسم البياني بالرقم والنقطة"]}},49942:e=>{e.exports={en:["Chart style Range"],ar:["نطاق نمط الرسم البياني"]}},80082:e=>{e.exports={en:["Chart style Renko"],ar:["نمط الرسم البياني رينكو"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],ar:["نمط الرسم البياني: الوقت والسعر والفرص"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],ar:["شموع الحجم بنمط الرسم البياني"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],ar:["بصمة حجم نمط الرسم البياني"]}},53438:e=>{e.exports={en:["Chart template"],ar:["قالب الرسم البياني"]}},47742:e=>{e.exports={en:["Close menu"],ar:["إغلاق القائمة"]}},81578:e=>{e.exports={en:["Cursors"],ar:["المؤشرات"]}},77915:e=>{e.exports={en:["Cycles"],ar:["دورات"]}},32064:e=>{e.exports={en:["Annotation tools"],ar:["أدوات التوضيحات والملاحظات"]}},69207:e=>{e.exports={en:["Add to favorites"],ar:["اضف إلى القائمة التفضيلات"]}},34040:e=>{e.exports={en:["All sources"],ar:["كل المصادر"]}},19147:e=>{e.exports={en:["Arrows"],ar:["السهام"]}},42358:e=>{e.exports={en:["Bond"],ar:["سند"]}},65695:e=>{e.exports={en:["Brushes"],ar:["فراشي"]}},51494:e=>{e.exports={
|
||||
en:["Gann"],ar:["جان"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],ar:["أدوات فيبوناتشي و جان"]}},22145:e=>{e.exports={en:["Geometric shapes"],ar:["الأشكال الهندسية"]}},57157:e=>{e.exports={en:["Dot"],ar:["نقطة"]}},25848:e=>{e.exports={en:["Dark theme"],ar:["خلفية داكنة"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],ar:["الوصف"]}},74385:e=>{e.exports={en:["Drawings"],ar:["الرسوم"]}},44255:e=>{e.exports={en:["Elliott waves"],ar:["موجات إليوت"]}},8727:e=>{e.exports={en:["Eraser"],ar:["ممحاة"]}},93308:e=>{e.exports={en:["Extended session"],ar:["الجلسة الممدّدة"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],ar:["أدوات التنبؤ والقياس"]}},26578:e=>{e.exports={en:["Fibonacci"],ar:["فيبوناتشي"]}},67092:e=>{e.exports={en:["Fullscreen mode"],ar:["وضع الشاشة الكاملة"]}},83576:e=>{e.exports={en:["Function"],ar:["وظيفة"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"],ar:["افتح شجرة الكائن"]}},7386:e=>{e.exports={en:["Open chart layout"],ar:["افتح تنسيق الرسم"]}},79451:e=>{e.exports={en:["Lock all drawings"],ar:["غلق كل أدوات الرسم"]}},35112:e=>{e.exports={en:["Move chart back"],ar:["تحريك الرسم البياني للخلف"]}},12754:e=>{e.exports={en:["Move chart forward"],ar:["تحريك الرسم البياني للأمام"]}},37117:e=>{e.exports={en:["More"],ar:["المزيد"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],ar:["وضع المغناطيس يجذب الرسومات الموجودة بجوار أعمدة السعر عند أقرب قيمة سعر إغلاق أو افتتاح أو أعلى وأقل سعر"]}},81031:e=>{e.exports={en:["Manage layout drawings"],ar:["إدارة رسومات التنسيق"]}},91563:e=>{e.exports={en:["Measure"],ar:["مقياس"]}},97050:e=>{e.exports={en:["Measurer"],ar:["أداة القياس"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],ar:["دمج كل المقاييس إلى اليسار"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],ar:["دمج كل المقاييس إلى اليمين"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],ar:["لا توجد أسواق تطابق المعايير التي عينتها"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],ar:["لا توجد رموز تطابق معاييرك"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],ar:["لا شيء يطابق معاييرك"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],ar:["يتم تطبيق ونسخ ما قمت به من رسومات جديدة إلى جميع الرسوم البيانية في التنسيق المختار وتظهر عند اختيار نفس الرمز أو الأداة المالية"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],ar:["ستتم مزامنة الرسومات الجديدة بشكل شامل"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],ar:["ستتم مزامنة الرسومات الجديدة في التنسيق"]}},28628:e=>{e.exports={en:["Sources"],ar:["مصادر"]}},41569:e=>{e.exports={en:["Save chart layout"],ar:["حفظ تنسيق الرسم البياني"]}},8573:e=>{e.exports={en:["Search"],ar:["بحث"]}},79354:e=>{e.exports={en:["Search tool or function"],ar:["أداة البحث أو الوظيفة"]}},57640:e=>{
|
||||
e.exports={en:["Select source"],ar:["اختر مصدراً"]}},65781:e=>{e.exports={en:["Shapes"],ar:["الأشكال"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],ar:["عرض الأدوات المخفاه"]}},85786:e=>{e.exports={en:["Show Object Tree"],ar:["إظهار عناصر الرسم البياني"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],ar:["البقاء في وضع الرسم"]}},94593:e=>{e.exports={en:["Strong Magnet"],ar:["مغناطيس قوي"]}},95481:e=>{e.exports={en:["Symbol"],ar:["رمز"]}},74007:e=>{e.exports={en:["Symbol & description"],ar:["الرمز والوصف"]}},51165:e=>{e.exports={en:["Symbol Search"],ar:["بحث عن الرموز"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],ar:["ربط مابين الرسوم في كل الرسوم البيانية"]}},46417:e=>{e.exports={en:["Patterns"],ar:["نماذج"]}},36167:e=>{e.exports={en:["Pitchforks"],ar:["شوكة"]}},79366:e=>{e.exports={en:["Previous day close price line"],ar:["خط سعر إغلاق اليوم السابق"]}},76753:e=>{e.exports={en:["Recent search"],ar:["البحث الأخير"]}},28051:e=>{e.exports={en:["Regular session"],ar:["الجلسة العادية"]}},57118:e=>{e.exports={en:["Remove Drawings"],ar:["حذف الرسومات"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],ar:["حذف جميع المؤشرات وأدوات الرسم"]}},96374:e=>{e.exports={en:["Remove drawings"],ar:["حذف الرسومات"]}},85106:e=>{e.exports={en:["Remove from favorites"],ar:["حذف من القائمة المفضلة"]}},99984:e=>{e.exports={en:["Remove indicators"],ar:["حذف المؤشرات"]}},38206:e=>{e.exports={en:["Rename chart layout"],ar:["إعادة تسمية الرسم البياني"]}},31789:e=>{e.exports={en:["Reset chart"],ar:["إعادة ضبط الرسم البياني"]}},3519:e=>{e.exports={en:["Weak Magnet"],ar:["مغناطيس ضعيف"]}},65831:e=>{e.exports={en:["Text & Notes"],ar:["النص والملاحظات"]}},48773:e=>{e.exports={en:["Trend line tools"],ar:["أدوات خط الاتجاه"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],ar:["اكتب للبحث عن الرسومات والوظائف والإعدادات"]}},69260:e=>{e.exports={en:["Volume-based"],ar:["يعتمد على الحجم"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],ar:["أنت تقوم بتغيير واجهة المستخدم إلى المظهر {name}. هل ترغب في تبديل مظهر قالب الرسم البياني أيضًا؟"]}},55774:e=>{e.exports={en:["Zoom In"],ar:["تكبير"]}},37310:e=>{e.exports={en:["Zoom Out"],ar:["تصغير"]}},70932:e=>{e.exports={en:["commodity"],ar:["السلع"]}},79599:e=>{e.exports={en:["cfd"],ar:["عقود الفروقات"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],ar:["تغيير وضوح تحليل على الرسم البياني"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ar:["وضوح ملصقات تغير المؤشرات وأسماء البيانات المالية"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ar:["وضوح ملصقات تغير المؤشرات والبيانات المالية"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ar:["تغيير وضوح خط أسعار ما قبل/بعد الجلسة"]}},46128:e=>{e.exports={en:["crypto"],ar:["العملات الرقمية"]}},47268:e=>{e.exports={en:["dr"],ar:["إيصال إيداع"]}},54094:e=>{e.exports={
|
||||
en:["economy"],ar:["اقتصاد"]}},17770:e=>{e.exports={en:["forex"],ar:["فوركس"]}},4723:e=>{e.exports={en:["futures"],ar:["العقود الآجلة"]}},87464:e=>{e.exports={en:["index"],ar:["مؤشر"]}},90250:e=>{e.exports={en:["indices"],ar:["المؤشرات"]}},76752:e=>{e.exports={en:["stock"],ar:["سهم"]}},94521:e=>{e.exports={en:["sync drawings"],ar:["مزامنة الرسومات"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],ar:["{hotKey_0} + اضغط على الرسم البياني"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],ar:["{hotKey_0} - دائرة"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],ar:["{hotKey_0} - رسم خط مستقيم بزوايا 45 درجة"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],ar:["{hotKey_0} — زيادات ثابتة"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],ar:["{hotKey_0} - مربع"]}}}]);
|
||||
4
charting_library/bundles/ar.4211.932ffa2dc04657916b72.js
Normal file
4
charting_library/bundles/ar.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],ar:["نقطة"]}},41256:e=>{e.exports={en:["Back"],ar:["عودة"]}},53174:e=>{e.exports={en:["Right"],ar:["حق"]}},57e3:e=>{e.exports={en:["Compare"],ar:["قارن"]}},93111:e=>{e.exports={en:["Content"],ar:["المحتوى"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],ar:["نسخ رابط صورة الرسم البياني"]}},4543:e=>{e.exports={en:["Cancel"],ar:["إلغاء"]}},59934:e=>{e.exports={en:["Channels"],ar:["القنوات"]}},63245:e=>{e.exports={en:["Change symbol"],ar:["تغيير الرمز"]}},56281:e=>{e.exports={en:["Chart style Columns"],ar:["أعمدة نمط الرسم البياني"]}},64526:e=>{e.exports={en:["Chart style Candles"],ar:["شموع نمط الرسم البياني"]}},9537:e=>{e.exports={en:["Chart style Area"],ar:["منطقة نمط الرسم البياني"]}},19265:e=>{e.exports={en:["Chart style Bars"],ar:["أعمدة نمط الرسم البياني"]}},19579:e=>{e.exports={en:["Chart style Baseline"],ar:["الخط الأساسي لنمط الرسم البياني"]}},47189:e=>{e.exports={en:["Chart style Kagi"],ar:["نمط الرسم البياني كاجي"]}},39883:e=>{e.exports={en:["Chart style HLC area"],ar:["نمط الرسم البياني HLC"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],ar:["شموع جوفاء لنمط الرسم البياني"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],ar:["نمط الرسم البياني هيكين آشي"]}},70405:e=>{e.exports={en:["Chart style High-low"],ar:["نمط الرسم البياني High-Low"]}},92911:e=>{e.exports={en:["Chart style Line"],ar:["خط نمط الرسم البياني"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],ar:["خط نمط الرسم البياني مع علامات"]}},11604:e=>{e.exports={en:["Chart style Line break"],ar:["فاصل خط لنمط الرسم البياني"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],ar:["نمط بروفايل أحجام التداول للجلسة"]}},40447:e=>{e.exports={en:["Chart style Step line"],ar:["الخط المتدرج لنمط الرسم البياني"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],ar:["نمط الرسم البياني بالرقم والنقطة"]}},49942:e=>{e.exports={en:["Chart style Range"],ar:["نطاق نمط الرسم البياني"]}},80082:e=>{e.exports={en:["Chart style Renko"],ar:["نمط الرسم البياني رينكو"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],ar:["نمط الرسم البياني: الوقت والسعر والفرص"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],ar:["شموع الحجم بنمط الرسم البياني"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],ar:["بصمة حجم نمط الرسم البياني"]}},53438:e=>{e.exports={en:["Chart template"],ar:["قالب الرسم البياني"]}},47742:e=>{e.exports={en:["Close menu"],ar:["إغلاق القائمة"]}},81578:e=>{e.exports={en:["Cursors"],ar:["المؤشرات"]}},77915:e=>{e.exports={en:["Cycles"],ar:["دورات"]}},32064:e=>{e.exports={en:["Annotation tools"],ar:["أدوات التوضيحات والملاحظات"]}},69207:e=>{e.exports={en:["Add to favorites"],ar:["اضف إلى القائمة التفضيلات"]}},34040:e=>{e.exports={en:["All sources"],ar:["كل المصادر"]}},19147:e=>{e.exports={en:["Arrows"],ar:["السهام"]}},42358:e=>{e.exports={en:["Bond"],ar:["سند"]}},65695:e=>{e.exports={
|
||||
en:["Brushes"],ar:["فراشي"]}},51494:e=>{e.exports={en:["Gann"],ar:["جان"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],ar:["أدوات فيبوناتشي و جان"]}},22145:e=>{e.exports={en:["Geometric shapes"],ar:["الأشكال الهندسية"]}},57157:e=>{e.exports={en:["Dot"],ar:["نقطة"]}},25848:e=>{e.exports={en:["Dark theme"],ar:["خلفية داكنة"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],ar:["الوصف"]}},74385:e=>{e.exports={en:["Drawings"],ar:["الرسوم"]}},44255:e=>{e.exports={en:["Elliott waves"],ar:["موجات إليوت"]}},8727:e=>{e.exports={en:["Eraser"],ar:["ممحاة"]}},93308:e=>{e.exports={en:["Extended session"],ar:["الجلسة الممدّدة"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],ar:["أدوات التنبؤ والقياس"]}},26578:e=>{e.exports={en:["Fibonacci"],ar:["فيبوناتشي"]}},67092:e=>{e.exports={en:["Fullscreen mode"],ar:["وضع الشاشة الكاملة"]}},83576:e=>{e.exports={en:["Function"],ar:["وظيفة"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"],ar:["افتح شجرة الكائن"]}},7386:e=>{e.exports={en:["Open chart layout"],ar:["افتح تنسيق الرسم"]}},79451:e=>{e.exports={en:["Lock all drawings"],ar:["غلق كل أدوات الرسم"]}},35112:e=>{e.exports={en:["Move chart back"],ar:["تحريك الرسم البياني للخلف"]}},12754:e=>{e.exports={en:["Move chart forward"],ar:["تحريك الرسم البياني للأمام"]}},37117:e=>{e.exports={en:["More"],ar:["المزيد"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],ar:["وضع المغناطيس يجذب الرسومات الموجودة بجوار أعمدة السعر عند أقرب قيمة سعر إغلاق أو افتتاح أو أعلى وأقل سعر"]}},81031:e=>{e.exports={en:["Manage layout drawings"],ar:["إدارة رسومات التنسيق"]}},91563:e=>{e.exports={en:["Measure"],ar:["مقياس"]}},97050:e=>{e.exports={en:["Measurer"],ar:["أداة القياس"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],ar:["دمج كل المقاييس إلى اليسار"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],ar:["دمج كل المقاييس إلى اليمين"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],ar:["لا توجد أسواق تطابق المعايير التي عينتها"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],ar:["لا توجد رموز تطابق معاييرك"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],ar:["لا شيء يطابق معاييرك"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],ar:["يتم تطبيق ونسخ ما قمت به من رسومات جديدة إلى جميع الرسوم البيانية في التنسيق المختار وتظهر عند اختيار نفس الرمز أو الأداة المالية"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],ar:["ستتم مزامنة الرسومات الجديدة بشكل شامل"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],ar:["ستتم مزامنة الرسومات الجديدة في التنسيق"]}},28628:e=>{e.exports={en:["Sources"],ar:["مصادر"]}},41569:e=>{e.exports={en:["Save chart layout"],ar:["حفظ تنسيق الرسم البياني"]}},8573:e=>{e.exports={en:["Search"],ar:["بحث"]}},79354:e=>{e.exports={
|
||||
en:["Search tool or function"],ar:["أداة البحث أو الوظيفة"]}},57640:e=>{e.exports={en:["Select source"],ar:["اختر مصدراً"]}},65781:e=>{e.exports={en:["Shapes"],ar:["الأشكال"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],ar:["عرض الأدوات المخفاه"]}},85786:e=>{e.exports={en:["Show Object Tree"],ar:["إظهار عناصر الرسم البياني"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],ar:["البقاء في وضع الرسم"]}},94593:e=>{e.exports={en:["Strong Magnet"],ar:["مغناطيس قوي"]}},95481:e=>{e.exports={en:["Symbol"],ar:["رمز"]}},74007:e=>{e.exports={en:["Symbol & description"],ar:["الرمز والوصف"]}},51165:e=>{e.exports={en:["Symbol Search"],ar:["بحث عن الرموز"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],ar:["ربط مابين الرسوم في كل الرسوم البيانية"]}},46417:e=>{e.exports={en:["Patterns"],ar:["نماذج"]}},36167:e=>{e.exports={en:["Pitchforks"],ar:["شوكة"]}},79366:e=>{e.exports={en:["Previous day close price line"],ar:["خط سعر إغلاق اليوم السابق"]}},76753:e=>{e.exports={en:["Recent search"],ar:["البحث الأخير"]}},28051:e=>{e.exports={en:["Regular session"],ar:["الجلسة العادية"]}},57118:e=>{e.exports={en:["Remove Drawings"],ar:["حذف الرسومات"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],ar:["حذف جميع المؤشرات وأدوات الرسم"]}},96374:e=>{e.exports={en:["Remove drawings"],ar:["حذف الرسومات"]}},85106:e=>{e.exports={en:["Remove from favorites"],ar:["حذف من القائمة المفضلة"]}},99984:e=>{e.exports={en:["Remove indicators"],ar:["حذف المؤشرات"]}},38206:e=>{e.exports={en:["Rename chart layout"],ar:["إعادة تسمية الرسم البياني"]}},31789:e=>{e.exports={en:["Reset chart"],ar:["إعادة ضبط الرسم البياني"]}},3519:e=>{e.exports={en:["Weak Magnet"],ar:["مغناطيس ضعيف"]}},65831:e=>{e.exports={en:["Text & Notes"],ar:["النص والملاحظات"]}},48773:e=>{e.exports={en:["Trend line tools"],ar:["أدوات خط الاتجاه"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],ar:["اكتب للبحث عن الرسومات والوظائف والإعدادات"]}},69260:e=>{e.exports={en:["Volume-based"],ar:["يعتمد على الحجم"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],ar:["أنت تقوم بتغيير واجهة المستخدم إلى المظهر {name}. هل ترغب في تبديل مظهر قالب الرسم البياني أيضًا؟"]}},55774:e=>{e.exports={en:["Zoom In"],ar:["تكبير"]}},37310:e=>{e.exports={en:["Zoom Out"],ar:["تصغير"]}},70932:e=>{e.exports={en:["commodity"],ar:["السلع"]}},79599:e=>{e.exports={en:["cfd"],ar:["عقود الفروقات"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],ar:["تغيير وضوح تحليل على الرسم البياني"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ar:["وضوح ملصقات تغير المؤشرات وأسماء البيانات المالية"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ar:["وضوح ملصقات تغير المؤشرات والبيانات المالية"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ar:["تغيير وضوح خط أسعار ما قبل/بعد الجلسة"]}},46128:e=>{e.exports={en:["crypto"],ar:["العملات الرقمية"]}},47268:e=>{
|
||||
e.exports={en:["dr"],ar:["إيصال إيداع"]}},54094:e=>{e.exports={en:["economy"],ar:["اقتصاد"]}},17770:e=>{e.exports={en:["forex"],ar:["فوركس"]}},4723:e=>{e.exports={en:["futures"],ar:["العقود الآجلة"]}},87464:e=>{e.exports={en:["index"],ar:["مؤشر"]}},90250:e=>{e.exports={en:["indices"],ar:["المؤشرات"]}},76752:e=>{e.exports={en:["stock"],ar:["سهم"]}},94521:e=>{e.exports={en:["sync drawings"],ar:["مزامنة الرسومات"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],ar:["{hotKey_0} + اضغط على الرسم البياني"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],ar:["{hotKey_0} - دائرة"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],ar:["{hotKey_0} - رسم خط مستقيم بزوايا 45 درجة"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],ar:["{hotKey_0} — زيادات ثابتة"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],ar:["{hotKey_0} - مربع"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"],ar:["إعادة"]}},85119:e=>{e.exports={en:["Dark"],ar:["داكن"]}},96870:e=>{e.exports={en:["Light"],ar:["فاتح"]}},85886:e=>{e.exports={en:["d"],ar:["يوم"]}},44634:e=>{e.exports={en:["h"],ar:["ساعة"]}},5977:e=>{e.exports={en:["m"],ar:["دقيقة"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],ar:["نسخة {title}"]}},38691:e=>{e.exports={en:["D"],ar:["يوم"]}},77995:e=>{e.exports={en:["M"],ar:["شهر"]}},93934:e=>{e.exports={en:["R"],ar:["نطاق"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],ar:["أسبوع"]}},38048:e=>{e.exports={en:["h"],ar:["ساعة"]}},68430:e=>{e.exports={en:["m"],ar:["دقيقة"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"],ar:["%K"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],ar:["مستوى اللون -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],ar:["مستوى اللون -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],ar:["مستوى اللون -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],ar:["مستوى اللون -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],ar:["مستوى اللون 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],ar:["مستوى اللون 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],ar:["مستوى اللون 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],ar:["مستوى اللون 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],ar:["مستوى اللون 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],ar:["مستوى اللون 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],ar:["مستوى اللون 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],ar:["مستوى اللون 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],ar:["مستوى اللون 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],ar:["مستوى اللون 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],ar:["مستوى اللون 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],ar:["مستوى اللون 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],ar:["الفترة الأولى"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],ar:["مستوى اللون 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],ar:["مستوى اللون 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],ar:["الفترة الثانية"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],ar:["مستوى اللون 3.618"]},e.exports["3.65 Level Color_input"]={
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"],ar:["إعادة"]}},85119:e=>{e.exports={en:["Dark"],ar:["داكن"]}},96870:e=>{e.exports={en:["Light"],ar:["فاتح"]}},85886:e=>{e.exports={en:["d"],ar:["يوم"]}},44634:e=>{e.exports={en:["h"],ar:["ساعة"]}},5977:e=>{e.exports={en:["m"],ar:["دقيقة"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],ar:["نسخة {title}"]}},38691:e=>{e.exports={en:["D"],ar:["يوم"]}},77995:e=>{e.exports={en:["M"],ar:["شهر"]}},93934:e=>{e.exports={en:["R"],ar:["نطاق"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],ar:["أسبوع"]}},38048:e=>{e.exports={en:["h"],ar:["ساعة"]}},68430:e=>{e.exports={en:["m"],ar:["دقيقة"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"],ar:["%K"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],ar:["مستوى اللون -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],ar:["مستوى اللون -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],ar:["مستوى اللون -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],ar:["مستوى اللون -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],ar:["مستوى اللون 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],ar:["مستوى اللون 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],ar:["مستوى اللون 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],ar:["مستوى اللون 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],ar:["مستوى اللون 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],ar:["مستوى اللون 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],ar:["مستوى اللون 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],ar:["مستوى اللون 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],ar:["مستوى اللون 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],ar:["مستوى اللون 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],ar:["مستوى اللون 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],ar:["مستوى اللون 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],ar:["الفترة الأولى"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],ar:["مستوى اللون 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],ar:["مستوى اللون 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],ar:["الفترة الثانية"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],ar:["مستوى اللون 3.618"]},e.exports["3.65 Level Color_input"]={
|
||||
en:["3.65 Level Color"],ar:["مستوى اللون 3.65"]},e.exports["3rd Period_input"]={en:["3rd Period"],ar:["الفترة الثالثة"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],ar:["مستوى اللون 4.236"]},e.exports["4th Period_input"]={en:["4th Period"],ar:["الفترة الرابعة"]},e.exports["5th Period_input"]={en:["5th Period"],ar:["الفترة الخامسة"]},e.exports["6th Period_input"]={en:["6th Period"],ar:["الفترة السادسة"]},e.exports.ADR_B_input={en:["ADR_B"],ar:["DADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],ar:["تحسين مؤشر متوسط الحركة الاتجاهية"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],ar:["تحسين مؤشر متوسط الحركة الاتجاهية"]},e.exports.ADX_input={en:["ADX"],ar:["متوسط مؤشر الاتجاه (ADX)"]},e.exports["ATR Mult_input"]={en:["ATR Mult"],ar:["مضاعف ATR"]},e.exports["ATR length_input"]={en:["ATR length"],ar:["فترة حساب ATR"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"],ar:["متوسط المدى الحقيقي ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],ar:["تجميع/توزيع"]},e.exports["All items_combobox_input"]={en:["All items"],ar:["جميع المواد"]},e.exports.All_input={en:["All"],ar:["كل"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],ar:["فترة التثبيت"]},e.exports["Another symbol_input"]={en:["Another symbol"],ar:["رمز آخر"]},e.exports["Aroon Down_input"]={en:["Aroon Down"],ar:["أرون هابط"]},e.exports["Aroon Up_input"]={en:["Aroon Up"],ar:["أرون صاعد"]},e.exports.Average_input={en:["Average"],ar:["متوسط"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],ar:["فترات حساب المتوسّط"]},e.exports.Back_input={en:["Back"],ar:["عودة"]},e.exports["Bands style_input"]={en:["Bands style"],ar:["نمط الحدود"]},e.exports.Bar_input={en:["Bar"],ar:["عمود"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],ar:["فترات خط الأساس"]},e.exports["Base Line_input"]={en:["Base Line"],ar:["خط الأساس"]},e.exports.Basis_input={en:["Basis"],ar:["أساس"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],ar:["حدود بولنجر %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],ar:["عرض حدود بولنجر"]},e.exports.Borders_input={en:["Borders"],ar:["حدود"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],ar:["طريقة تعيين حجم الصندوق"]},e.exports["Box size_input"]={en:["Box size"],ar:["حجم المربع"]},e.exports.CCI_input={en:["CCI"],ar:["مؤشر قناة السلع، CCI"]},e.exports.CHOP_input={en:["CHOP"],ar:["نطاق تقلب سعري (نطاق شوب)"]},e.exports.Cancel_input={en:["Cancel"],ar:["إلغاء"]},e.exports.Candles_input={en:["Candles"],ar:["الشموع"]},e.exports.Centered_input={en:["Centered"],ar:["مركزي"]},e.exports.Century_input={en:["Century"],ar:["قرن"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],ar:["مؤشر شايكين"]},e.exports["Chande MO_input"]={en:["Chande MO"],ar:["مؤشر زخم اتشاند"]},e.exports.Close_input={en:["Close"],ar:["إغلاق"]},e.exports["Color 0_input"]={en:["Color 0"],ar:["لون 0"]},e.exports["Color 1_input"]={en:["Color 1"],
|
||||
ar:["لون 1"]},e.exports["Color 2_input"]={en:["Color 2"],ar:["لون 2"]},e.exports["Color 3_input"]={en:["Color 3"],ar:["لون 3"]},e.exports["Color 4_input"]={en:["Color 4"],ar:["لون 4"]},e.exports["Color 5_input"]={en:["Color 5"],ar:["لون 5"]},e.exports["Color 6_input"]={en:["Color 6"],ar:["لون 6"]},e.exports["Color 7_input"]={en:["Color 7"],ar:["لون 7"]},e.exports["Color 8_input"]={en:["Color 8"],ar:["لون 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],ar:["تلوين الأعمدة طبقًا للإغلاق السابق"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],ar:["تلوين الأعمدة طبقًا للإغلاق السابق"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],ar:["فترات خط التحويل"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],ar:["خط التحويل"]},e.exports.Correlation_input={en:["Correlation"],ar:["علاقة ارتباط"]},e.exports.Count_input={en:["Count"],ar:["عد"]},e.exports.Crosses_input={en:["Crosses"],ar:["تقاطعات"]},e.exports.Custom_input={en:["Custom"],ar:["ُمخصص"]},e.exports.DEMA_input={en:["DEMA"],ar:["المتوسط المتحرك الأسي المزدوج DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],ar:["طول مؤشر الاتجاه"]},e.exports.DPO_input={en:["DPO"],ar:["مؤشر تذبذب السعر"]},e.exports.D_input={en:["D"],ar:["يوم"]},e.exports.Day_input={en:["Day"],ar:["يوم"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],ar:["أيام في السنة"]},e.exports.Decade_input={en:["Decade"],ar:["عقد"]},e.exports.Delta_input={en:["Delta"],ar:["دلتا"]},e.exports.Depth_input={en:["Depth"],ar:["عمق"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"],ar:["مؤشر تذبذب السعر"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],ar:["تطوير نقطة التغير"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],ar:["الإنحراف (%)"]},e.exports.Deviation_input={en:["Deviation"],ar:["الانحراف"]},e.exports.Divisor_input={en:["Divisor"],ar:["المقام (المقسوم عليه)"]},e.exports["Down Volume_input"]={en:["Down Volume"],ar:["تراجع حجم التداول"]},e.exports["Down bars_input"]={en:["Down bars"],ar:["الأعمدة الهابطة"]},e.exports["Down color_input"]={en:["Down color"],ar:["لون هابط"]},e.exports["Down fractals_input"]={en:["Down fractals"],ar:["فركتلات هابطة"]},e.exports.EOM_input={en:["EOM"],ar:["بيانات نهاية الشهر"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],ar:["كل (ما قبل الجلسة، الجلسة، ما بعد الجلسة)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],ar:["مؤشر قوى إلدر"]},e.exports["Equality Line_input"]={en:["Equality Line"],ar:["خط المساواة"]},e.exports.Exponential_input={en:["Exponential"],ar:["أسي"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"],ar:["إمتداد نقطة التغير إلى اليمين"]},e.exports["Extend Right_input"]={en:["Extend Right"],ar:["تمديد لليمين"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],ar:["تمديد VAH Right"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],ar:["تمديد VAL Right"]},
|
||||
e.exports["Extend to last bar_input"]={en:["Extend to last bar"],ar:["مد إلى آخر شمعة أو عمود بياني"]},e.exports.Falling_input={en:["Falling"],ar:["هابط"]},e.exports["Fast Length_input"]={en:["Fast Length"],ar:["طول الخط السريع"]},e.exports["Fast length_input"]={en:["Fast length"],ar:["طول الخط السريع"]},e.exports.Fill_input={en:["Fill"],ar:["تنفيذ"]},e.exports.Fisher_input={en:["Fisher"],ar:["تحويلة فيشر"]},e.exports.Growing_input={en:["Growing"],ar:["صاعد"]},e.exports["HLC bars_input"]={en:["HLC bars"],ar:["الأعمدة HLC"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],ar:["مربع الأعمدة الإحصائية"]},e.exports.Histogram_input={en:["Histogram"],ar:["أعمدة أحصائية"]},e.exports["Hull MA_input"]={en:["Hull MA"],ar:["متوسط متحرك هال"]},e.exports.Increment_input={en:["Increment"],ar:["ازدياد"]},e.exports.Indicator_input={en:["Indicator"],ar:["مؤشر"]},e.exports["Instrument 1_input"]={en:["Instrument 1"],ar:["الأداة 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"],ar:["الأداة 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],ar:["طول EMA 1 للمستثمر"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],ar:["طول EMA 2 للمستثمر"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],ar:["طول EMA 3 للمستثمر"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],ar:["طول EMA 4 للمستثمر"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],ar:["طول EMA 5 للمستثمر"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],ar:["طول EMA 6 للمستثمر"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],ar:["طول الفك"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"],ar:["فك"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],ar:["ملصقات المركز"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],ar:["الملصقات على مقياس السعر"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],ar:["الفترات المتأخرة"]},e.exports["Lagging Span_input"]={en:["Lagging Span"],ar:["مدى التأخير"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],ar:["فترات المناوبة الرائدة"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],ar:["الفترة الرائدة A"]},e.exports["Leading Span B_input"]={en:["Leading Span B"],ar:["الفترة الرائدة B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],ar:["الفترة الرائدة B"]},e.exports["Length EMA_input"]={en:["Length EMA"],ar:["طول المتوسط المتحرك الأسي"]},e.exports["Length MA_input"]={en:["Length MA"],ar:["طول المتوسط المتحرك"]},e.exports.Length1_input={en:["Length1"],ar:["طول 1"]},e.exports.Length2_input={en:["Length2"],ar:["طول 2"]},e.exports.Length3_input={en:["Length3"],ar:["طول 3"]},e.exports.Length_input={en:["Length"],ar:["طول"]},e.exports.Level_input={en:["Level"],ar:["مستوى"]},e.exports["Levels Format_input"]={en:["Levels Format"],ar:["تنسيق المستويات"]},
|
||||
@@ -29,31 +29,31 @@ ar:["تعذر القطع"]}},81518:e=>{e.exports={en:["Couldn't paste"],ar:["ت
|
||||
en:["Current interval and above"],ar:["الفاصل الزمني الحالي وما فوق"]}},494:e=>{e.exports={en:["Current interval and below"],ar:["الفاصل الزمني الحالي وأدناه"]}},60668:e=>{e.exports={en:["Current interval only"],ar:["الفاصل الزمني الحالي فقط"]}},78609:e=>{e.exports={en:["Curve"],ar:["منحنى"]}},87380:e=>{e.exports={en:["Cycle"],ar:["دورة"]}},84031:e=>{e.exports={en:["Cyclic Lines"],ar:["خطوط دورية"]}},93191:e=>{e.exports={en:["Cypher Pattern"],ar:["نمط سيفر"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],ar:["يوجد بالفعل تنسيق بهذا الاسم"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],ar:["يوجد بالفعل تنسيق بهذا الاسم. هل تريد تعويضه عليه؟"]}},46712:e=>{e.exports={en:["ABCD Pattern"],ar:["نموذج ABCD"]}},36485:e=>{e.exports={en:["Amsterdam"],ar:["أمستردام"]}},24185:e=>{e.exports={en:["Anchor"],ar:["التثبيت"]}},42630:e=>{e.exports={en:["Anchorage"],ar:["التثبيت"]}},42669:e=>{e.exports={en:["Anchored Text"],ar:["نص مُثبّت"]}},84541:e=>{e.exports={en:["Anchored VWAP"],ar:["VWAP مُثبّت"]}},77401:e=>{e.exports={en:["Access error"],ar:["خطأ في الوصول"]}},46501:e=>{e.exports={en:["Add Symbol"],ar:["إضافة رمز"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],ar:["إضافة مؤشر مالي لـ {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],ar:["إضافة مؤشر/إستراتيجية على {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],ar:["أضف هذا المؤشر المالي إلى التنسيق بالكامل"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],ar:["أضف هذا المقياس المالي إلى المفضلة"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],ar:["أضف هذا المؤشر إلى التنسيق بالكامل"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],ar:["أضف هذا المؤشر إلى المفضلة"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],ar:["أضف هذه الاستراتيجية إلى التنسيق بالكامل"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],ar:["أضف هذا الرمز إلى التنسيق بالكامل"]}},426:e=>{e.exports={en:["Adelaide"],ar:["أديلايد"]}},40452:e=>{e.exports={en:["Always invisible"],ar:["مختفي دائمًا"]}},36299:e=>{e.exports={en:["Always visible"],ar:["ظاهر وموجود دائمًا"]}},58026:e=>{e.exports={en:["All intervals"],ar:["كل الفواصل الزمنية"]}},78358:e=>{e.exports={en:["Apply default"],ar:["تطبيق الوضع الافتراضي"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],ar:["تطبيق هذه المؤشرات على التنسيق بالكامل"]}},27072:e=>{e.exports={en:["Apr"],ar:["أبريل"]}},59324:e=>{e.exports={en:["Arc"],ar:["قوس"]}},34456:e=>{e.exports={en:["Area"],ar:["مساحة"]}},11858:e=>{e.exports={en:["Arrow"],ar:["سهم"]}},34247:e=>{e.exports={en:["Arrow Down"],ar:["سهم لأسفل"]}},36352:e=>{e.exports={en:["Arrow Marker"],ar:["علامة السهم"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],ar:["علامة السهم تُشير للأسفل"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],ar:["علامة السهم تُشير لليسار"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],ar:["علامة السهم تُشير لليمين"]}},
|
||||
62453:e=>{e.exports={en:["Arrow Mark Up"],ar:["علامة السهم تُشير للأعلى"]}},77231:e=>{e.exports={en:["Arrow Up"],ar:["سهم لأعلى"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],ar:["عشق أباد"]}},72445:e=>{e.exports={en:["At close"],ar:["عند الإغلاق"]}},73702:e=>{e.exports={en:["Athens"],ar:["أثينا"]}},21469:e=>{e.exports={en:["Auto"],ar:["تلقائي"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],ar:["تلقائي (تناسب البيانات مع حجم الشاشة)"]}},46450:e=>{e.exports={en:["Aug"],ar:["أغسطس"]}},21841:e=>{e.exports={en:["Average close price label"],ar:["ملصق متوسط سعر الإغلاق"]}},16138:e=>{e.exports={en:["Average close price line"],ar:["خط متوسط سعر الإغلاق"]}},73025:e=>{e.exports={en:["Avg"],ar:["متوسط"]}},87580:e=>{e.exports={en:["Azores"],ar:["جزر الأزور"]}},73905:e=>{e.exports={en:["Bogota"],ar:["بوجوتا"]}},90594:e=>{e.exports={en:["Bahrain"],ar:["البحرين"]}},70540:e=>{e.exports={en:["Balloon"],ar:["بالون"]}},47045:e=>{e.exports={en:["Bangkok"],ar:["بانكوك"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],ar:["إعادة تشغيل الأعمدة Bar Replay غير متاح لهذا النوع من الرسوم البيانية. هل تريد الخروج من Bar Replay؟"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],ar:["لا تتوفر ميزة Bar Replay لهذا الرمز. هل تريد الخروج من Bar Replay؟"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],ar:["إعادة تشغيل الشريط غير متاح لهذه الفترة الزمنية. هل تريد الخروج من Bar Replay؟"]}},27377:e=>{e.exports={en:["Bars"],ar:["أعمدة"]}},81994:e=>{e.exports={en:["Bars Pattern"],ar:["نمط الأعمدة"]}},59213:e=>{e.exports={en:["Baseline"],ar:["خط الأساس"]}},71797:e=>{e.exports={en:["Belgrade"],ar:["بلغراد"]}},64313:e=>{e.exports={en:["Berlin"],ar:["برلين"]}},43539:e=>{e.exports={en:["Brush"],ar:["فرشاة"]}},91499:e=>{e.exports={en:["Brussels"],ar:["بروكسل"]}},70876:e=>{e.exports={en:["Bratislava"],ar:["براتيسلافا"]}},55481:e=>{e.exports={en:["Bring forward"],ar:["تقديمه للأمام"]}},17293:e=>{e.exports={en:["Bring to front"],ar:["وضعه في المقدمة"]}},79336:e=>{e.exports={en:["Brisbane"],ar:["بريزبان"]}},33672:e=>{e.exports={en:["Bucharest"],ar:["بوخاريست"]}},20313:e=>{e.exports={en:["Budapest"],ar:["بودابست"]}},25282:e=>{e.exports={en:["Buenos Aires"],ar:["بوينس آيرس"]}},46768:e=>{e.exports={en:["By TradingView"],ar:["بواسطة TradingView"]}},54280:e=>{e.exports={en:["Go to date"],ar:["الذهاب إلى تاريخ"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],ar:["انتقل إلى {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],ar:["OK"]}},47460:e=>{e.exports={en:["Gann Box"],ar:["صندوق جان"]}},48683:e=>{e.exports={en:["Gann Fan"],ar:["مروحة جان"]}},44763:e=>{e.exports={en:["Gann Square"],ar:["مربع جان"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],ar:["مربع جان ثابت"]}},46808:e=>{e.exports={en:["Ghost Feed"],ar:["مسار تخيّلي"]}},57726:e=>{e.exports={en:["Grand supercycle"],ar:["الموجة الدورية العظمى"]}},15096:e=>{e.exports={
|
||||
en:["Do you really want to delete indicator template '{name}' ?"],ar:["هل تريد حقًا حذف قالب المؤشر '{name}'؟"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],ar:["هل تريد فعلا مسح هذه الدراسة وكل محتوياتها؟"]}},77125:e=>{e.exports={en:["Double Curve"],ar:["منحنى مزدوج"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],ar:["انقر نقرًا مزدوجًا فوق أي حافة لإعادة تعيين شبكة التنسيق"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],ar:["انقر مرتيين لإنهاء المسار"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],ar:["انقر مرتيين لإنهاء الشكل متعدد الخطوط"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"],ar:["انقر نقرًا مزدوجًا على أي حافة لإعادة ضبط شبكة التنسيق"]}},57131:e=>{e.exports={en:["Data Provided by"],ar:["البيانات مقدمة من قبل"]}},22677:e=>{e.exports={en:["Date"],ar:["التاريخ"]}},85444:e=>{e.exports={en:["Date Range"],ar:["المدى الزمني"]}},47017:e=>{e.exports={en:["Date and Price Range"],ar:["نطاق التاريخ والسعر"]}},32084:e=>{e.exports={en:["Dec"],ar:["ديسمبر"]}},23403:e=>{e.exports={en:["Degree"],ar:["درجة"]}},27358:e=>{e.exports={en:["Denver"],ar:["دينفر Denver"]}},24959:e=>{e.exports={en:["Dhaka"],ar:["داكا"]}},15179:e=>{e.exports={en:["Diamond"],ar:["شكل الماسة (المعين)"]}},91544:e=>{e.exports={en:["Disjoint Channel"],ar:["قناة منفصلة"]}},70132:e=>{e.exports={en:["Displacement"],ar:["إزاحة"]}},93864:e=>{e.exports={en:["Drawings toolbar"],ar:["شريط أدوات الرسم"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],ar:["ارسم خطًا أفقيًا عند {price}"]}},23650:e=>{e.exports={en:["Dubai"],ar:["دبي"]}},79716:e=>{e.exports={en:["Dublin"],ar:["دابلن"]}},73456:e=>{e.exports={en:["Emoji"],ar:["رمز تعبيري"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],ar:["ادخل اسم تصميم الرسم البياني الجديد"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],ar:["موجة إليوت التصحيحية (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],ar:["موجة إليوت الثنائية المركبة (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],ar:["موجة إليوت الدافعة (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],ar:["موجة إليوت المثلثة (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],ar:["موجة إليوت الثلاثية المركبة (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],ar:["بيضاوي"]}},52788:e=>{e.exports={en:["Extended Line"],ar:["خط ممتد"]}},86905:e=>{e.exports={en:["Exchange"],ar:["بورصة التداول"]}},19271:e=>{e.exports={en:["Existing pane above"],ar:["جزء موجود أعلاه"]}},46545:e=>{e.exports={en:["Existing pane below"],ar:["جزء موجود أدناه"]}},20138:e=>{e.exports={en:["Forecast"],ar:["التوقعات"]}},2507:e=>{e.exports={en:["Feb"],ar:["فبراير"]}},59005:e=>{e.exports={en:["Fib Channel"],ar:["قناة فيبوناتشي"]}},82330:e=>{e.exports={en:["Fib Circles"],ar:["دوائر فيبوناتشي"]}},55986:e=>{e.exports={en:["Fib Retracement"],ar:["تصحيح فيبوناتشي"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],ar:["أقواس فيبوناتشي المقاومة للسرعة"]}},
|
||||
2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],ar:["مروحة فيبوناتشي المقاومة للسرعة"]}},39014:e=>{e.exports={en:["Fib Spiral"],ar:["حلزون فيبوناتشي"]}},30622:e=>{e.exports={en:["Fib Time Zone"],ar:["منطقة فيبوناتشي الزمنية"]}},85042:e=>{e.exports={en:["Fib Wedge"],ar:["وتد فيبوناتشي"]}},33885:e=>{e.exports={en:["Flag"],ar:["علم"]}},14600:e=>{e.exports={en:["Flag Mark"],ar:["علامة تمييز"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],ar:["قمة / قاع مسطح"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],ar:["جزء الكسر غير صحيح"]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],ar:["لم تعد الدراسات الأساسية متوفرة على الرسوم البيانية"]}},31561:e=>{e.exports={en:["Kolkata"],ar:["كولكاتا"]}},54533:e=>{e.exports={en:["Kathmandu"],ar:["كاتماندو"]}},83490:e=>{e.exports={en:["Kagi"],ar:["كاجي"]}},70913:e=>{e.exports={en:["Karachi"],ar:["كراتشي"]}},76614:e=>{e.exports={en:["Kuwait"],ar:["الكويت"]}},38561:e=>{e.exports={en:["Kuala Lumpur"],ar:["كوالا لمبور"]}},99906:e=>{e.exports={en:["HLC area"],ar:["منطقة HLC."]}},34491:e=>{e.exports={en:["Ho Chi Minh"],ar:["هوشي منه"]}},13459:e=>{e.exports={en:["Hollow candles"],ar:["شموع مفرغة"]}},48861:e=>{e.exports={en:["Hong Kong"],ar:["هونج كونج"]}},79668:e=>{e.exports={en:["Honolulu"],ar:["هونولولو"]}},21795:e=>{e.exports={en:["Horizontal Line"],ar:["خط أفقي"]}},25487:e=>{e.exports={en:["Horizontal Ray"],ar:["شعاع أفقي"]}},21928:e=>{e.exports={en:["Head and Shoulders"],ar:["نموذج الرأس والكتفين"]}},63876:e=>{e.exports={en:["Heikin Ashi"],ar:["هايكين آشي"]}},48203:e=>{e.exports={en:["Helsinki"],ar:["بورصة هلسنكي"]}},27298:e=>{e.exports={en:["Hide"],ar:["إخفاء"]}},47074:e=>{e.exports={en:["Hide all"],ar:["إخفاء الكل"]}},52563:e=>{e.exports={en:["Hide all drawings"],ar:["إخفاء جميع أدوات الرسم"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],ar:["إخفاء كل الرسومات والمؤشرات"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],ar:["إخفاء كافة الرسومات والمؤشرات والمراكز والأوامر"]}},78525:e=>{e.exports={en:["Hide all indicators"],ar:["إخفاء كل المؤشرات"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],ar:["إخفاء كل المراكز والأوامر"]}},3217:e=>{e.exports={en:["Hide drawings"],ar:["إخفاء الرسومات"]}},97878:e=>{e.exports={en:["Hide events on chart"],ar:["إخفاء الأحداث على الرسم البياني"]}},72351:e=>{e.exports={en:["Hide indicators"],ar:["إخفاء المؤشرات"]}},28345:e=>{e.exports={en:["Hide marks on bars"],ar:["إخفاء العلامات على الأعمدة"]}},92226:e=>{e.exports={en:["Hide positions & orders"],ar:["إخفاء المراكز والأوامر"]}},78254:e=>{e.exports={en:["High"],ar:["أعلى سعر"]}},98236:e=>{e.exports={en:["High-low"],ar:["أعلى-أدنى"]}},99479:e=>{e.exports={en:["High and low price labels"],ar:["ملصقات أعلى وأدنى السعر"]}},33766:e=>{e.exports={en:["High and low price lines"],ar:["خطوط أعلى وأدنى سعر"]}},69476:e=>{e.exports={en:["Highlighter"],ar:["لون مُميِز"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],
|
||||
ar:["الرسم البياني كبير جدًا، يرجى زيادة {boldHighlightStart}حجم الصف{boldHighlightEnd} في نافذة الإعدادات."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],ar:["الرسم البياني كبير جدًا، يرجى زيادة {boldHighlightStart}تيك لكل صف{boldHighlightEnd} في نافذة الإعدادات."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],ar:["الرسم البياني كبير جدًا، يرجى تقليل {boldHighlightStart}حجم الصف{boldHighlightEnd} في نافذة الإعدادات."]}},68065:e=>{e.exports={en:["Image"],ar:["صورة"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],ar:["لا يتم دعم الفواصل الزمنية الأقل من {resolution} لـ {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],ar:["متوسط"]}},14285:e=>{e.exports={en:["Invalid Symbol"],ar:["رمز غير صحيح"]}},52969:e=>{e.exports={en:["Invalid symbol"],ar:["رمز غير صحيح"]}},37189:e=>{e.exports={en:["Invert scale"],ar:["عكس المقياس"]}},89999:e=>{e.exports={en:["Indexed to 100"],ar:["مدرجة إلى 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],ar:["ملصقات قيمة المؤشرات"]}},54418:e=>{e.exports={en:["Indicators name labels"],ar:["ملصق اسم المؤشر"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],ar:["المؤشرات والمقاييس والاستراتيجيات. اضغط على سلاش"]}},15992:e=>{e.exports={en:["Info Line"],ar:["خط المعلومات"]}},87829:e=>{e.exports={en:["Insert indicator"],ar:["إدخال مؤشر"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],ar:["داخل الرسم البياني بيتش فورك"]}},37913:e=>{e.exports={en:["Icon"],ar:["أيقونة"]}},78326:e=>{e.exports={en:["Istanbul"],ar:["إسطنبول"]}},39585:e=>{e.exports={en:["Johannesburg"],ar:["جوهانسبرج"]}},14995:e=>{e.exports={en:["Jakarta"],ar:["بورصة جاكرتا"]}},62310:e=>{e.exports={en:["Jan"],ar:["يناير"]}},36057:e=>{e.exports={en:["Jerusalem"],ar:["القدس"]}},53786:e=>{e.exports={en:["Jul"],ar:["يوليو"]}},429:e=>{e.exports={en:["Jun"],ar:["يونيو"]}},67560:e=>{e.exports={en:["Juneau"],ar:["جونو"]}},62329:e=>{e.exports={en:["On the left"],ar:["على اليسار"]}},55813:e=>{e.exports={en:["On the right"],ar:["على اليمين"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],ar:["يتم دعم الفواصل الزمنية {availableResolutions} فقط لـ {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],ar:["عفوا!"]}},51221:e=>{e.exports={en:["Object Tree"],ar:["عناصر الرسم البياني"]}},12179:e=>{e.exports={en:["Oct"],ar:["أكتوبر"]}},16610:e=>{e.exports={en:["Open"],ar:["افتتاح"]}},27884:e=>{e.exports={en:["Open layout. Press period"],ar:["تنسيق مفتوح. فترة الضغط"]}},75722:e=>{e.exports={en:["Oslo"],ar:["أوسلو"]}},65318:e=>{e.exports={en:["Low"],ar:["أدنى سعر"]}},51077:e=>{e.exports={en:["Lock"],ar:["غلق"]}},79777:e=>{e.exports={en:["Lock/unlock"],ar:["إغلاق/ فتح"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],ar:["قفل خط المؤشر العمودي بمرور الوقت"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],
|
||||
ar:["قفل نسبة السعر للعمود البياني"]}},16170:e=>{e.exports={en:["Logarithmic"],ar:["لوغاريتمي"]}},19439:e=>{e.exports={en:["London"],ar:["لندن"]}},74832:e=>{e.exports={en:["Long Position"],ar:["صفقة شراء"]}},28733:e=>{e.exports={en:["Los Angeles"],ar:["لوس أنجلوس"]}},85924:e=>{e.exports={en:["Label Down"],ar:["إشارة لأسفل"]}},52402:e=>{e.exports={en:["Label Up"],ar:["إشارة لأعلى"]}},5119:e=>{e.exports={en:["Labels"],ar:["عناوين"]}},19931:e=>{e.exports={en:["Lagos"],ar:["بورصة لاغوس"]}},63815:e=>{e.exports={en:["Last day change"],ar:["تغيير اليوم الأخير"]}},59444:e=>{e.exports={en:["Lima"],ar:["بورصة ليما"]}},3554:e=>{e.exports={en:["Line"],ar:["خط"]}},9394:e=>{e.exports={en:["Line with markers"],ar:["خط بعلامات"]}},43588:e=>{e.exports={en:["Line break"],ar:["خط فاصل"]}},56982:e=>{e.exports={en:["Lines"],ar:["الخطوط"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],ar:["تم نسخ رابط صورة الرسم البيانية إلى الحافظة {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],ar:["لشبونة"]}},81038:e=>{e.exports={en:["Luxembourg"],ar:["لوكسمبورغ"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],ar:["حرّك النقطة لتغيير موضع المُثبّت ثم اضغط لوضعه"]}},35049:e=>{e.exports={en:["Move to"],ar:["حرك إلى"]}},26493:e=>{e.exports={en:["Move scale to left"],ar:["حرك المقياس إلى اليسار"]}},40789:e=>{e.exports={en:["Move scale to right"],ar:["حرك المقياس إلى اليمين"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],ar:["شيف بيتش فورك المعدل"]}},93907:e=>{e.exports={en:["More settings"],ar:["المزيد من الإعدادات"]}},64039:e=>{e.exports={en:["Moscow"],ar:["موسكو"]}},52066:e=>{e.exports={en:["Madrid"],ar:["مدريد"]}},38365:e=>{e.exports={en:["Malta"],ar:["مالطا"]}},48991:e=>{e.exports={en:["Manila"],ar:["مانيلا"]}},92767:e=>{e.exports={en:["Mar"],ar:["مارس"]}},73332:e=>{e.exports={en:["Mexico City"],ar:["مدينة المكسيك"]}},88314:e=>{e.exports={en:["Merge all scales into one"],ar:["دمج كل المقاييس في مقياس واحد"]}},54215:e=>{e.exports={en:["Mixed"],ar:["مختلط"]}},24866:e=>{e.exports={en:["Micro"],ar:["صغيرة"]}},87957:e=>{e.exports={en:["Millennium"],ar:["ألفية"]}},14724:e=>{e.exports={en:["Minuette"],ar:["موجة إليوت الذرية"]}},78273:e=>{e.exports={en:["Minuscule"],ar:["حرف صغير"]}},9865:e=>{e.exports={en:["Muscat"],ar:["مسقط"]}},96935:e=>{e.exports={en:["N/A"],ar:["غير متاح"]}},36252:e=>{e.exports={en:["No data here"],ar:["لا توجد بيانات هنا"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],ar:["بدون مقياس ثابت (ملء الشاشة)"]}},9140:e=>{e.exports={en:["No sync"],ar:["لا مزامنة"]}},50910:e=>{e.exports={en:["No volume data"],ar:["بيانات الحجم غير موجودة"]}},99024:e=>{e.exports={en:["No, keep them"],ar:["لا، احتفظ بها"]}},94389:e=>{e.exports={en:["Note"],ar:["ملاحظة"]}},26899:e=>{e.exports={en:["Nov"],ar:["نوفمبر"]}},67891:e=>{e.exports={en:["Norfolk Island"],ar:["جزيرة نورفولك"]}},40977:e=>{e.exports={en:["Nairobi"],ar:["نيروبي"]}},40544:e=>{e.exports={en:["New York"],ar:["نيويورك"]}},66103:e=>{e.exports={en:["New Zealand"],ar:["نيوزلندا"]}},15512:e=>{e.exports={
|
||||
en:["New pane above"],ar:["جزء جديد أعلاه"]}},52160:e=>{e.exports={en:["New pane below"],ar:["جزء جديد أدناه"]}},94600:e=>{e.exports={en:["Nicosia"],ar:["نيقوسيا"]}},73013:e=>{e.exports={en:["Something went wrong"],ar:["حدث خطأ ما"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],ar:["حدث خطأ ما عند إنشاء المؤشر."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],ar:["حدث خطأ ما، الرجاء المحاولة مرة أخرى في وقت لاحق."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],ar:["حفظ التنسيق الجديد للرسم البياني"]}},76266:e=>{e.exports={en:["Save as"],ar:["حفظ باسم"]}},55502:e=>{e.exports={en:["San Salvador"],ar:["سان سلفادور"]}},30231:e=>{e.exports={en:["Santiago"],ar:["بورصة سانتياغو"]}},91912:e=>{e.exports={en:["Sao Paulo"],ar:["ساو باولو"]}},43931:e=>{e.exports={en:["Scale currency"],ar:["عملة المقياس"]}},43758:e=>{e.exports={en:["Scale price chart only"],ar:["نطاق الرسم البياني للسعر فقط"]}},40012:e=>{e.exports={en:["Scale unit"],ar:["وحدة المقياس"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],ar:["سكيف بيتش فورك"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],ar:["يمكن أن لا يتم تحديث النص البرمجي المكتوب إذا غادرت الصفحة."]}},32514:e=>{e.exports={en:["Settings"],ar:["إعدادات"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],ar:["الجزء الثاني غير صحيح."]}},75594:e=>{e.exports={en:["Security info"],ar:["معلومات الرمز"]}},21973:e=>{e.exports={en:["Send to back"],ar:["إرسال للمؤخرة"]}},71179:e=>{e.exports={en:["Send backward"],ar:["إرسال إلى الخلف"]}},26820:e=>{e.exports={en:["Seoul"],ar:["سيول"]}},6816:e=>{e.exports={en:["Sep"],ar:["سبتمبر"]}},94031:e=>{e.exports={en:["Session"],ar:["فترة"]}},83298:e=>{e.exports={en:["Session volume profile"],ar:["بروفايل أحجام التداول للجلسة"]}},66707:e=>{e.exports={en:["Session breaks"],ar:["راحات جلسة التداول"]}},1852:e=>{e.exports={en:["Shanghai"],ar:["شنغهاي"]}},8075:e=>{e.exports={en:["Short Position"],ar:["صفقة بيع على المكشوف"]}},98334:e=>{e.exports={en:["Show"],ar:["عرض"]}},85891:e=>{e.exports={en:["Show all drawings"],ar:["عرض كل الرسومات"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],ar:["عرض كل الرسومات والمؤشرات"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],ar:["إظهار كافة الرسومات والمؤشرات والمراكز والأوامر"]}},98753:e=>{e.exports={en:["Show all indicators"],ar:["عرض كل المؤشرات"]}},55418:e=>{e.exports={en:["Show all ideas"],ar:["عرض جميع الأفكار"]}},20506:e=>{e.exports={en:["Show all positions & orders"],ar:["إظهار المراكز والأوامر"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],ar:["إظهار تبديل العقد المستمر"]}},81465:e=>{e.exports={en:["Show contract expiration"],ar:["إظهار انتهاء صلاحية العقد"]}},29449:e=>{e.exports={en:["Show dividends"],ar:["عرض توزيعات الأرباح"]}},37113:e=>{e.exports={en:["Show earnings"],ar:["عرض الأرباح"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],ar:["عرض جميع الأفكار للمستخدمين الذين يتم متابعتهم"]}},62986:e=>{e.exports={en:["Show latest news"],
|
||||
ar:["عرض آخر الأخبار"]}},44020:e=>{e.exports={en:["Show my ideas only"],ar:["عرض أفكاري فقط"]}},50849:e=>{e.exports={en:["Show splits"],ar:["عرض تقسيمات الأسهم"]}},67751:e=>{e.exports={en:["Signpost"],ar:["لافتة"]}},77377:e=>{e.exports={en:["Singapore"],ar:["سنغافورة"]}},39090:e=>{e.exports={en:["Sine Line"],ar:["منحنى الجيب"]}},66205:e=>{e.exports={en:["Square"],ar:["مربع"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],ar:["تم تجاوز الحد الأقصى للدراسات : {number} دراسة لكل نسق\nبرجاء حذب البعض"]}},92516:e=>{e.exports={en:["Style"],ar:["نمط"]}},61507:e=>{e.exports={en:["Stack on the left"],ar:["انحياز لليسار"]}},97800:e=>{e.exports={en:["Stack on the right"],ar:["انحياز لليمين"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],ar:["ابدأ باستخدام وضع التنقل باستخدام لوحة المفاتيح. اضغط على {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],ar:["البقاء في وضع الرسم"]}},69217:e=>{e.exports={en:["Step line"],ar:["خط متدرج"]}},43114:e=>{e.exports={en:["Sticker"],ar:["ملصق"]}},86716:e=>{e.exports={en:["Stockholm"],ar:["بورصة ستوكهولم"]}},1145:e=>{e.exports={en:["Submicro"],ar:["موجة مجهرية فرعية"]}},63375:e=>{e.exports={en:["Submillennium"],ar:["موجة الألفية الثانوية"]}},30585:e=>{e.exports={en:["Subminuette"],ar:["فاصل الدقيقة في موجات اليوت"]}},67948:e=>{e.exports={en:["Supercycle"],ar:["الموجة الدورية العليا"]}},3348:e=>{e.exports={en:["Supermillennium"],ar:["موجة الألفية العظمى"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],ar:["قم بالتبديل إلى {resolution}"]}},31622:e=>{e.exports={en:["Sydney"],ar:["سيدني"]}},70963:e=>{e.exports={en:["Symbol Error"],ar:["خطأ في الرمز"]}},32390:e=>{e.exports={en:["Symbol name label"],ar:["ملصق اسم الرمز"]}},10127:e=>{e.exports={en:["Symbol last price label"],ar:["ملصق آخر قيمة للرمز"]}},39079:e=>{e.exports={en:["Sync globally"],ar:["مزامنة شاملة"]}},46607:e=>{e.exports={en:["Sync in layout"],ar:["مزامنة مع كل الرسوم البيانية"]}},76519:e=>{e.exports={en:["Point & figure"],ar:["النقطة والرقم"]}},39949:e=>{e.exports={en:["Polyline"],ar:["متعدد الخطوط"]}},371:e=>{e.exports={en:["Path"],ar:["مسار"]}},59256:e=>{e.exports={en:["Parallel Channel"],ar:["قناة متوازية"]}},61879:e=>{e.exports={en:["Paris"],ar:["باريس"]}},35140:e=>{e.exports={en:["Paste"],ar:["لصق"]}},6919:e=>{e.exports={en:["Percent"],ar:["نسبة مئوية"]}},24436:e=>{e.exports={en:["Perth"],ar:["بِرث"]}},14055:e=>{e.exports={en:["Phoenix"],ar:["فونيكس"]}},34156:e=>{e.exports={en:["Pitchfan"],ar:["بتشفان"]}},19634:e=>{e.exports={en:["Pitchfork"],ar:["بيتش فورك"]}},86631:e=>{e.exports={en:["Pin"],ar:["شبك"]}},33110:e=>{e.exports={en:["Pin to new left scale"],ar:["ثبت على مقياس أيسر جديد"]}},28280:e=>{e.exports={en:["Pin to new right scale"],ar:["ثبت على مقياس أيمن جديد"]}},14115:e=>{e.exports={en:["Pin to left scale"],ar:["ثبت إلى المقياس الأيسر"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],ar:["ثبت على المقياس الأيسر (مخفي)"]}},81054:e=>{e.exports={en:["Pin to right scale"],
|
||||
ar:["ثبت إلى المقياس الأيمن"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],ar:["ثبت على المقياس الأيمن (مخفي)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],ar:["تثبيت إلى المقياس (الآن يسار)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],ar:["تثبيت مقياس الرسم (الأن لا مقياس محدد)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],ar:["تثبيت إلى المقياس (الآن يمين)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],ar:["ثبت على مقياس ({label} جديد)"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],ar:["ثبت إلى المقياس {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],ar:["ثبت على المقياس {label} (مخفي)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],ar:["تم التثبيت إلى المقياس الأيسر"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],ar:["تم التثبيت على المقياس الأيسر (مخفي)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],ar:["تم التثبيت إلى المقياس الأيمن"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],ar:["ثبت على المقياس الأيمن (مخفي)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],ar:["ثبت على المقياس {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],ar:["تم التثبيت على المقياس {label} (مخفي)"]}},71566:e=>{e.exports={en:["Plus button"],ar:["زر زائد"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],ar:["يرجى منحنا إذن الكتابة للحافظة في متصفحك أو الضغط على {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],ar:["براغ"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],ar:["اضغط لمدة مطولة على {key} أثناء التكبير للحفاظ على موضع الرسم البياني"]}},91282:e=>{e.exports={en:["Price Label"],ar:["ملصق السعر"]}},97512:e=>{e.exports={en:["Price Note"],ar:["بطاقة السعر"]}},68941:e=>{e.exports={en:["Price Range"],ar:["المدى السعري"]}},66123:e=>{e.exports={en:["Price format is invalid."],ar:["صيغة السعر غير صحيحة"]}},72926:e=>{e.exports={en:["Price line"],ar:["خط السعر"]}},59189:e=>{e.exports={en:["Primary"],ar:["أوًلي"]}},75747:e=>{e.exports={en:["Projection"],ar:["مسقط"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],ar:["تم نشره على {customer} في {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"],ar:["قطر"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],ar:["بحث سريع. اضغط على {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],ar:["مستطيل مائل"]}},52961:e=>{e.exports={en:["Rome"],ar:["روما"]}},50318:e=>{e.exports={en:["Ray"],ar:["شعاع"]}},55169:e=>{e.exports={en:["Range"],ar:["مدى"]}},13386:e=>{e.exports={en:["Reykjavik"],ar:["بورصة ريكيافيك"]}},26001:e=>{e.exports={en:["Rectangle"],ar:["مستطيل"]}},48236:e=>{e.exports={en:["Redo"],ar:["إعادة"]}},2460:e=>{e.exports={en:["Regression Trend"],ar:["إتجاه الإنحدار"]}},67410:e=>{e.exports={en:["Remove"],ar:["حذف"]}},3061:e=>{e.exports={
|
||||
en:["Remove this financial metric from favorites"],ar:["أزل هذا المقياس المالي من المفضلة"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],ar:["أزل هذا المؤشر من المفضلة"]}},86285:e=>{e.exports={en:["Remove {drawings}"],ar:["إزالة {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],ar:["إزالة {drawings} و{indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],ar:["إزالة {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],ar:["إعادة تسمية الرسم البياني"]}},88130:e=>{e.exports={en:["Renko"],ar:["رينكو"]}},75246:e=>{e.exports={en:["Reset chart view"],ar:["إعادة تعيين عرض الرسم البياني"]}},88853:e=>{e.exports={en:["Reset points"],ar:["نقاط إعادة الضبط"]}},15332:e=>{e.exports={en:["Reset price scale"],ar:["إعادة تعيين مقياس السعر"]}},54170:e=>{e.exports={en:["Reset time scale"],ar:["إعادة تعيين مقياس الزمن"]}},37974:e=>{e.exports={en:["Riyadh"],ar:["الرياض"]}},94022:e=>{e.exports={en:["Riga"],ar:["بورصة ريغا"]}},60630:e=>{e.exports={en:["Runtime error"],ar:["خطأ وقت التشغيل"]}},66719:e=>{e.exports={en:["Warning"],ar:["تحذير"]}},5959:e=>{e.exports={en:["Warsaw"],ar:["وارسو"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],ar:["طوكيو"]}},10095:e=>{e.exports={en:["Toronto"],ar:["تورنتو"]}},17981:e=>{e.exports={en:["Table"],ar:["الطاولة"]}},11034:e=>{e.exports={en:["Taipei"],ar:["طرابلس"]}},79995:e=>{e.exports={en:["Tallinn"],ar:["بورصة تالين"]}},6686:e=>{e.exports={en:["Tehran"],ar:["طهران"]}},93553:e=>{e.exports={en:["Template"],ar:["قالب"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],ar:["لا يوفر المزود بيانات أحجام التداول لهذا الرمز."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],ar:["لا يمكن تحميل عرض المنشور. يُرجى إيقاف إمتدادات المتصفح الخاص بك وإعادة المحاولة."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],ar:["استغرقت معالجة الطلب وقتًا طويلاً. تأكد من أن لديك اتصال إنترنت مستقر. إذا استمرت المشكلة، حاول تقليل طول الفاصل الزمني المطلوب."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],ar:["لا توجد بيانات للفترة المحددة والإطار الزمني للرسم البياني."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],ar:["هذا الملف كبير جدًا. الحد الأقصى للحجم هو {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],ar:["هذا المؤشر لا يمكن تطبيقه على مؤشر آخر"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],ar:["يحتوي هذا النص البرمجي على خطأ. يرجى الاتصال بمؤلفها."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],ar:["هذا النص البرمجي هو بدعوة فقط. لطلب الوصول، يرجى الاتصال بالمؤلف."]}},47773:e=>{e.exports={
|
||||
en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],ar:["هذا الرمز متاح فقط في {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],ar:["نموذج الثلاث موجات"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],ar:["الفواصل الزمنية المستندة إلى التيك غير متوفرة لـ {ticker}."]}},12806:e=>{e.exports={en:["Time"],ar:["الوقت"]}},20909:e=>{e.exports={en:["Time zone"],ar:["المنطقة الزمنية"]}},46852:e=>{e.exports={en:["Time Cycles"],ar:["الدورات الزمنية"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],ar:["فرص الوقت والأسعار"]}},66823:e=>{e.exports={en:["Trade"],ar:["تداول"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],ar:["Tradingview تفاعلية ولديها أوامر لاستخدامها مع قارئ الشاشة. فيما يلي قائمة بأوامر لوحة المفاتيح المتاحة للتفاعل على المنصة"]}},35757:e=>{e.exports={en:["Trend Angle"],ar:["زاوية الإتجاه"]}},97339:e=>{e.exports={en:["Trend Line"],ar:["خط الاتجاه"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],ar:["امتداد فيبوناتشي الاتجاهي"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],ar:["فيبوناتشي الزمني الاتجاهي"]}},1671:e=>{e.exports={en:["Triangle"],ar:["مثلث"]}},76152:e=>{e.exports={en:["Triangle Down"],ar:["مثلث هابط"]}},90148:e=>{e.exports={en:["Triangle Pattern"],ar:["نموذج المثلث"]}},21236:e=>{e.exports={en:["Triangle Up"],ar:["مثلث صاعد"]}},21007:e=>{e.exports={en:["Tunis"],ar:["تونس"]}},1833:e=>{e.exports={en:["UTC"],ar:["بالتوقيت العالمي المنسق"]}},14804:e=>{e.exports={en:["Undo"],ar:["تراجع"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],ar:["خطأ غير متوقع في وضع الاختبار الخلفي العميق. اتصل بالدعم للحصول على مزيد من المعلومات."]}},15432:e=>{e.exports={en:["Units"],ar:["وحدات"]}},11768:e=>{e.exports={en:["Unknown error"],ar:["خطأ غير معروف"]}},99894:e=>{e.exports={en:["Unlock"],ar:["فتح"]}},75546:e=>{e.exports={en:["Unsupported interval"],ar:["فاصل زمني غير مدعوم"]}},8580:e=>{e.exports={en:["User-defined error"],ar:["خطأ معرّف من قبل المستخدم"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],ar:["بروفايل حجم التداول بنطاق ثابت"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],ar:["مؤشر بروفايل حجم التداول متاح فقط على عضوياتنا المدفوعة."]}},93722:e=>{e.exports={en:["Volume candles"],ar:["شموع الحجم"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],ar:["لا يتم توفير بيانات الحجم في بيانات BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],ar:["بصمة الحجم"]}},32838:e=>{e.exports={en:["Vancouver"],ar:["فانكوفر"]}},29535:e=>{e.exports={en:["Vertical Line"],ar:["خط رأسي"]}},23160:e=>{e.exports={en:["Vienna"],ar:["فيينا"]}},60534:e=>{e.exports={en:["Vilnius"],ar:["بورصة فيلنيوس"]}},40091:e=>{e.exports={en:["Visibility"],ar:["الظهور"]}},54853:e=>{e.exports={en:["Visibility on intervals"],
|
||||
ar:["الوضوح على الفواصل الزمنية"]}},58302:e=>{e.exports={en:["Visible on tap"],ar:["مرئي عند النقر"]}},10309:e=>{e.exports={en:["Visible on mouse over"],ar:["مرئية عند تمرير الفأرة"]}},4077:e=>{e.exports={en:["Visual order"],ar:["الترتيب المرئي"]}},11316:e=>{e.exports={en:["X Cross"],ar:["تقاطع"]}},42231:e=>{e.exports={en:["XABCD Pattern"],ar:["XABCD نموذج"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],ar:["لا يمكنك رؤية النقاط المحورية على هذا الإطار الزمني"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],ar:["لقد قمت بإغلاق الرسومات على هذا الرمز. هل تريد إزالة الرسومات المقفلة أيضًا؟"]}},53168:e=>{e.exports={en:["Yangon"],ar:["يانجون"]}},93123:e=>{e.exports={en:["Yes, remove them"],ar:["نعم، قم بإزالتها"]}},62859:e=>{e.exports={en:["Zurich"],ar:["زيوريخ"]}},47977:e=>{e.exports={en:["change Elliott degree"],ar:["تغيير درجة إليوت"]}},61557:e=>{e.exports={en:["change no overlapping labels"],ar:["تغيير الملصقات غير متداخلة"]}},76852:e=>{e.exports={en:["change average close price label visibility"],ar:["تغيير وضوح ملصق متوسط إغلاق السعر"]}},1022:e=>{e.exports={en:["change average close price line visibility"],ar:["تغيير وضوح خط سعر الإغلاق السابق"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],ar:["تغيير وضوح ملصقات سعري البيع والشراء"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],ar:["تغيير وضوح خط سعري البيع والشراء"]}},32302:e=>{e.exports={en:["change currency"],ar:["تغيير العملة"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],ar:["تغيير تنسيق الرسم البياني إلى {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],ar:["تغيير رؤية تبديل العقد المستمر"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],ar:["تغيير وضوح العد التنازلي لعمود الإغلاق"]}},16979:e=>{e.exports={en:["change date range"],ar:["تغيير نطاق التاريخ"]}},53929:e=>{e.exports={en:["change dividends visibility"],ar:["تغيير وضوح توزيعات الأرباح"]}},6119:e=>{e.exports={en:["change events visibility on chart"],ar:["تغيير وضوح الأحداث على الرسم البياني"]}},6819:e=>{e.exports={en:["change earnings visibility"],ar:["تغيير وضوح الأرباح"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],ar:["تغيير وضوح انتهاء صلاحية العقود الآجلة"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],ar:["تغيير وضوح ملصقات أعلى سعر وأدنى سعر"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],ar:["تغيير وضوح خطوط أعلى سعر وأدنى سعر"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],ar:["وضوح ملصقات تغير المؤشرات"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],ar:["وضوح ملصقات تغيير المؤشرات"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],ar:["تغيير عرض آخر الأخبار والأفكار"]}},88849:e=>{e.exports={en:["change linking group"],ar:["تغيير مجموعة الربط"]}},14691:e=>{e.exports={en:["change pane height"],
|
||||
ar:["تغيير ارتفاع الجزء"]}},96379:e=>{e.exports={en:["change plus button visibility"],ar:["تغيير وضوح زر +"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],ar:["تغيير وضوح ملصق أسعار ما قبل/بعد الجلسة"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],ar:["تغيير وضوح خط أسعار ما قبل/بعد الجلسة"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],ar:["تغيير وضوح خط سعر الإغلاق السابق"]}},8662:e=>{e.exports={en:["change price line visibility"],ar:["تغيير خط السعر"]}},2509:e=>{e.exports={en:["change price to bar ratio"],ar:["تغيير السعر إلى نسبة العمود"]}},32829:e=>{e.exports={en:["change resolution"],ar:["تغيير النطاق"]}},35400:e=>{e.exports={en:["change symbol"],ar:["تغيير الرمز"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],ar:["تغيير وضوح ملصقات رمز"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],ar:["تغيير وضوح آخر قيمة للرمز"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],ar:["تغيير وضوح قيمة الإغلاق للرمز"]}},87041:e=>{e.exports={en:["change session"],ar:["تغيير الجلسة"]}},38413:e=>{e.exports={en:["change session breaks visibility"],ar:["تغيير وضوح فواصل الجلسة"]}},49965:e=>{e.exports={en:["change series style"],ar:["تغيير نمط السلسلة"]}},47474:e=>{e.exports={en:["change splits visibility"],ar:["تغيير وضوح تقسيمات الأسهم"]}},20137:e=>{e.exports={en:["change timezone"],ar:["تغيير المنطقة الزمنية"]}},85975:e=>{e.exports={en:["change unit"],ar:["تغيير الوحدة"]}},1924:e=>{e.exports={en:["change visibility"],ar:["تغيير الرؤية"]}},84331:e=>{e.exports={en:["change visibility at current interval"],ar:["تغيير وضوح الفاصل الزمني الحالي"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],ar:["تغيير الوضوح في الفاصل الزمني الحالي وما فوقه"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],ar:["تغيير الوضوح في الفاصل الزمني الحالي وأدناه"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],ar:["تغيير الوضوح في جميع الفترات"]}},94566:e=>{e.exports={en:["charts by TradingView"],ar:["الرسوم البيانية بواسطة TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],ar:["أدوات نسخ الخط"]}},46219:e=>{e.exports={en:["create line tools group"],ar:["أنشئ مجموعة أدوات الخطوط"]}},95394:e=>{e.exports={en:["create line tools group from selection"],ar:["إنشاء مجموعة أدوات الخطوط من الخيارات المتاحة"]}},12898:e=>{e.exports={en:["create {tool}"],ar:["إنشاء {tool}"]}},94227:e=>{e.exports={en:["cut sources"],ar:["مصادر القطع"]}},11500:e=>{e.exports={en:["cut {title}"],ar:["قص {title}"]}},63869:e=>{e.exports={en:["anchor objects"],ar:["عناصر مثبتة"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],ar:["إضافة أداة الخطوط {lineTool} لمجموعة {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],ar:["إضافة أداة (أدوات) الخط إلى المجموعة {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],
|
||||
ar:["أضف هذا المؤشر المالي إلى التنسيق بالكامل"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],ar:["أضف هذا المؤشر إلى التنسيق بالكامل"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],ar:["أضف هذه الاستراتيجية إلى التنسيق بالكامل"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],ar:["أضف هذا الرمز إلى التنسيق بالكامل"]}},4128:e=>{e.exports={en:["align to 45 degrees"],ar:["محاذاة إلى 45 درجة"]}},68231:e=>{e.exports={en:["apply chart theme"],ar:["تطبيق مظهر الرسم البياني"]}},99551:e=>{e.exports={en:["apply all chart properties"],ar:["تطبيق كافة خصائص الرسم البياني"]}},89720:e=>{e.exports={en:["apply drawing template"],ar:["تطبيق قالب الرسم"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],ar:["تطبيق إعدادات المصنع الافتراضية على المصادر المختارة"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],ar:["تطبيق المؤشرات على التنسيق بأكمله"]}},69604:e=>{e.exports={en:["apply study template {template}"],ar:["تطبيق قالب الدراسة {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],ar:["تطبيق مظهر أشرطة الأدوات"]}},1979:e=>{e.exports={en:["bring group {title} forward"],ar:["جلب المجموعة {title} إلى الأمام"]}},53159:e=>{e.exports={en:["bring {title} to front"],ar:["جلب {title} إلى المقدمة"]}},41966:e=>{e.exports={en:["bring {title} forward"],ar:["حرّك {title} للأمام"]}},44676:e=>{e.exports={en:["by TradingView"],ar:["بواسطة TradingView"]}},58850:e=>{e.exports={en:["date range lock"],ar:["تجميد النطاق الزمني"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],ar:["استثناء أدوات الخطوط من المجموعة {group}"]}},13017:e=>{e.exports={en:["hide {title}"],ar:["إخفاء {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],ar:["إخفاء العلامات على الأعمدة"]}},56558:e=>{e.exports={en:["interval lock"],ar:["قفل الفاصل"]}},6830:e=>{e.exports={en:["invert scale"],ar:["عكس المقياس"]}},48818:e=>{e.exports={en:["insert {title}"],ar:["أدخل {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],ar:["أدخل {title} بعد {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],ar:["أدخل {title} بعد {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],ar:["أدخل {title} قبل {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],ar:["أدخل {title} قبل {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],ar:["تحميل قالب الرسم الافتراضي"]}},62011:e=>{e.exports={en:["loading..."],ar:["تحميل..."]}},76104:e=>{e.exports={en:["lock {title}"],ar:["تثبيت {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],ar:["غلق المجموعة {group}"]}},18942:e=>{e.exports={en:["lock objects"],ar:["قفل العنصر"]}},98277:e=>{e.exports={en:["move"],ar:["تحريك"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],ar:["انقل {title} إلى مقياس يسار جديد"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],ar:["انقل {title} إلى مقياس جديد على اليسار"]}},64077:e=>{e.exports={en:["move all scales to left"],
|
||||
ar:["حرك كل المقاييس إلى اليسار"]}},19013:e=>{e.exports={en:["move all scales to right"],ar:["حرك كل المقاييس إلى اليمين"]}},52510:e=>{e.exports={en:["move drawing(s)"],ar:["نقل الرسم (الرسومات)"]}},79209:e=>{e.exports={en:["move left"],ar:["حرك يسارًا"]}},60114:e=>{e.exports={en:["move right"],ar:["حرّك يمينًا"]}},44854:e=>{e.exports={en:["move scale"],ar:["حرك المقياس"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],ar:["اجعل {title} بدون مقياس محدد (ملء الشاشة)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],ar:["اجعل المجموعة {group} غير مرئية"]}},45987:e=>{e.exports={en:["make group {group} visible"],ar:["اجعل المجموعة {group} مرئية"]}},78055:e=>{e.exports={en:["merge down"],ar:["دمج لأسفل"]}},41866:e=>{e.exports={en:["merge to pane"],ar:["دمج في جزء"]}},52458:e=>{e.exports={en:["merge up"],ar:["دمج لأعلى"]}},90091:e=>{e.exports={en:["n/a"],ar:["لا يوجد"]}},94981:e=>{e.exports={en:["scale price"],ar:["مقياس السعر"]}},63796:e=>{e.exports={en:["scale price chart only"],ar:["نطاق الرسم البياني للسعر فقط"]}},70771:e=>{e.exports={en:["scale time"],ar:["وقت المقياس"]}},42070:e=>{e.exports={en:["scroll"],ar:["تمرير"]}},87840:e=>{e.exports={en:["scroll time"],ar:["وقت التمرير"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],ar:["تعيين إستراتيجية اختيار مقياس السعر على {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],ar:["أرسل {title} للخلف"]}},5005:e=>{e.exports={en:["send {title} to back"],ar:["أرسل {title} إلى الخلف"]}},69546:e=>{e.exports={en:["send group {title} backward"],ar:["أرسل المجموعة {title} إلى الخلف"]}},63934:e=>{e.exports={en:["share line tools globally"],ar:["مشاركة أدوات الخط بشكل شامل"]}},90221:e=>{e.exports={en:["share line tools in layout"],ar:["مشاركة أدوات الخط في التنسيق"]}},13336:e=>{e.exports={en:["show all ideas"],ar:["عرض جميع التحاليل"]}},91395:e=>{e.exports={en:["show ideas of followed users"],ar:["عرض جميع التحاليل للمستخدمين الذين يتم متابعتهم"]}},57460:e=>{e.exports={en:["show my ideas only"],ar:["عرض تحاليلي فقط"]}},4114:e=>{e.exports={en:["stay in drawing mode"],ar:["البقاء في وضع الرسم"]}},3350:e=>{e.exports={en:["stop syncing drawing"],ar:["إيقاف مزامنة الرسم"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],ar:["وقف أداة (أدوات) مزامنة الخط"]}},53278:e=>{e.exports={en:["symbol lock"],ar:["قفل الرمز"]}},91677:e=>{e.exports={en:["sync time"],ar:["وقت المزامنة"]}},3140:e=>{e.exports={en:["powered by"],ar:["مدعوم من"]}},92800:e=>{e.exports={en:["powered by TradingView"],ar:["بواسطة TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],ar:["لصق الرسم"]}},1064:e=>{e.exports={en:["paste indicator"],ar:["لصق مؤشر"]}},57010:e=>{e.exports={en:["paste {title}"],ar:["لصق {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],ar:["ثبت على المقياس الأيسر"]}},7495:e=>{e.exports={en:["pin to right scale"],ar:["ثبت إلى المقياس الأيمن"]}},81566:e=>{e.exports={en:["pin to scale {label}"],ar:["ثبت على المقياس {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],ar:["إعادة ترتيب الأجزاء"]}},60806:e=>{
|
||||
e.exports={en:["remove all indicators"],ar:["إزالة جميع المؤشرات"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],ar:["إزالة جميع المؤشرات وأدوات الرسم"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],ar:["إزالة أدوات الخط الفارغة غير المحددة"]}},30538:e=>{e.exports={en:["remove drawings"],ar:["حذف الرسومات"]}},1193:e=>{e.exports={en:["remove drawings group"],ar:["تغيير المنازل العشرية"]}},38199:e=>{e.exports={en:["remove line data sources"],ar:["إزالة مصادر خط البيانات"]}},93333:e=>{e.exports={en:["remove pane"],ar:["إزالة جزء"]}},94543:e=>{e.exports={en:["remove {title}"],ar:["إزالة {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],ar:["حذف مجموعة أدوات الخطوط {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],ar:["تغيير اسم المجموعة {group} إلى {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],ar:["إعادة تعيين أحجام التنسيق"]}},3323:e=>{e.exports={en:["reset scales"],ar:["إعادة تعيين المقاييس"]}},17336:e=>{e.exports={en:["reset time scale"],ar:["إعادة تعيين مقياس الزمن"]}},47418:e=>{e.exports={en:["resize layout"],ar:["تغيير حجم التنسيق"]}},85815:e=>{e.exports={en:["restore defaults"],ar:["استعادة الإعدادات الافتراضية"]}},96881:e=>{e.exports={en:["restore study defaults"],ar:["استعادة الإعدادات الافتراضية للدراسة"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],ar:["تبديل حالة اللوحة المكبرة"]}},42240:e=>{e.exports={en:["toggle auto scale"],ar:["تبديل المقياس التلقائي"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],ar:["تبديل حالة اللوحة المطوية"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],ar:["تبديل الفهرس إلى مقياس 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],ar:["تبديل قفل المقياس"]}},49403:e=>{e.exports={en:["toggle log scale"],ar:["تبديل المقياس اللوغاريتمي"]}},98994:e=>{e.exports={en:["toggle percentage scale"],ar:["تبديل مقياس النسبة المئوية"]}},80688:e=>{e.exports={en:["toggle regular scale"],ar:["تبديل المقياس العادي"]}},46807:e=>{e.exports={en:["track time"],ar:["وقت المسار"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],ar:["وقف تشغيل مشاركة أدوات الخط"]}},99234:e=>{e.exports={en:["unanchor objects"],ar:["عناصر غير مثبتة"]}},23230:e=>{e.exports={en:["unlock objects"],ar:["تحرير العنصر"]}},74590:e=>{e.exports={en:["unlock group {group}"],ar:["فتح المجموعة {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],ar:["تحرير {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],ar:["إلغاء الاندماج في الجزء السفلي الجديد"]}},79443:e=>{e.exports={en:["unmerge up"],ar:["فصل"]}},46453:e=>{e.exports={en:["unmerge down"],ar:["إلغاء الدمج لأسفل"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],ar:["نوع رسم {chartStyle} غير متاح حاليًا للفواصل الزمنية القائمة على التيك."]}},41643:e=>{e.exports={en:["{count} bars"],ar:["{count} أعمدة"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],ar:["{symbol} تم تفريغ القوائم المالية عن طريق TradingView"]}},40947:e=>{e.exports={
|
||||
en:["{userName} published on {customer}, {date}"],ar:["نشر {userName} على {customer} في {date}"]}},91084:e=>{e.exports={en:["zoom"],ar:["تكبير"]}},49856:e=>{e.exports={en:["zoom in"],ar:["تكبير"]}},73638:e=>{e.exports={en:["zoom out"],ar:["تصغير"]}},41807:e=>{e.exports={en:["day","days"],ar:["يوم","يوم","يومين","أيام","يوم","يوم"]}},42328:e=>{e.exports={en:["hour","hours"],ar:["ساعة","ساعة","ساعة","ساعات","ساعة","ساعة"]}},98393:e=>{e.exports={en:["month","months"],ar:["شهر","شهر","شهر","أشهر","شهرًا","شهرًا"]}},78318:e=>{e.exports={en:["minute","minutes"],ar:["دقيقة","دقيقة","دقيقتين","دقائق","دقيقة","دقيقة"]}},33232:e=>{e.exports={en:["second","seconds"],ar:["ثانية","ثانية","ثانيتان","ثوان","ثانية","ثانية"]}},89937:e=>{e.exports={en:["range","ranges"],ar:["نطاق","نطاق","نطاق","نطاقات","نطاق","نطاق"]}},48898:e=>{e.exports={en:["week","weeks"],ar:["أسبوع","أسبوع","أسبوعين","أسابيع","أسبوع","أسبوع"]}},11913:e=>{e.exports={en:["tick","ticks"],ar:["تيك","تيك","تيك","تيك","تيك","تيك"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],ar:["{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم "]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],ar:["{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],ar:["{count}ش","{count}ش","{count}ش","{count}ش","{count}ش","{count}ش"]}},47801:e=>{e.exports={en:["{count}d","{count}d"],ar:["{count}ي","{count}ي","{count}ي","{count}ي","{count}ي","{count}ي"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],ar:["{count}س","{count}س","{count}س","{count}س","{count}س","{count}س"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],ar:["صناديق مؤشرات سندات الخزانة قصيرة الأجل Schwab"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"],ar:["صندوق مؤشرات أسهم الشركات الأعلى عائد من 0 إلى 5 سنوات"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],ar:["مؤشر S&P/ASX للأسهم الاسترالية 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],ar:["مؤشر S&P/ASX للأسهم الاسترالية 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],ar:["مؤشر S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],ar:["دولار أسترالي/ دولار كندي"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],ar:["دولار أسترالي/ فرنك سويسري"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],ar:["دولار أسترالي/ ين ياباني"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],ar:["دولار أسترالي/ دولار نيوزلاندي"]},e.exports["#AUDRUB-symbol-description"]={
|
||||
en:["Australian Dollar / Russian Ruble"],ar:["دولار أسترالي/ روبل روسي"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],ar:["دولار أسترالي/ دولار أمريكي"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],ar:["مؤشر S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"],ar:["بيتكوين كاش / يورو"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],ar:["بيتكوين كاش/ دولار أمريكي"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],ar:["مؤشر BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],ar:["مؤشر بورصة استانبول 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],ar:["بيتكون / مؤشر الدولار الأمريكي"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],ar:["مؤشر IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],ar:["مؤشر Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],ar:["مؤشر IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],ar:["مؤشر Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"],ar:["شركة فورد للسيارات"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],ar:["مؤشر S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],ar:["ريال برازيلي/ ين ياباني"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],ar:["مؤشر S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],ar:["بتكوين / دولار كندي"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],ar:["بتكوين/ يوان صيني"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],ar:["بتكوين/ يورو"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],ar:["بتكوين/ وون كوري جنوبي"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],ar:["بيتكوين / روبل روسي"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],ar:["بيتكوين / بات تايلندي"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],ar:["بتكوين/ دولار أمريكي"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],ar:["بيتكوين جولد / دولار أمريكي"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],ar:["مؤشر بيرو العام S&P / BVL (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],ar:["مؤشر بورصة الأوراق المالية بساو باولو"]},e.exports["#CADJPY-symbol-description"]={
|
||||
en:["Canadian Dollar / Japanese Yen"],ar:["دولار كندي/ ين ياباني"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],ar:["الدولار الكندي/الدولار الأمريكي"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],ar:["مؤشر S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],ar:["مؤشر تقلب S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],ar:["العقود الآجلة لسندات الخزينة"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],ar:["العقود الآجلة للذرة"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],ar:["العقود الآجلة لوجبة فول الصويا"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],ar:["العقود الآجلة لسندات الخزينة لأجل 10 سنوات"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],ar:["العقود الآجلة للشوفان"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],ar:["العقود الآجلة للفائدة الفديرالية 30 يوم"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],ar:["العقود الآجلة للأرز"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],ar:["عقود الآجلة لفول الصويا"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],ar:["عقود القمح الآجلة"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],ar:["عقود Mini الآجلة لفول الصويا"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],ar:["عقود Mini الآجلة للقمح"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],ar:["عقود داو جونز 30 الاجلة E-MINI ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],ar:["فرنك سويسري/ ين ياباني"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],ar:["الفرنك السويسري/الدولار الأمريكي"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],ar:["العقود الآجلة للبيتكوين CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],ar:["العقود الآجلة-النقدية للزبدة (مستمرة: العقد الحالي الأمامي)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],ar:["العقود الآجلة للماشية المغذية"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],ar:["العقود الآجلة للحم الخنزير خالي الدهن Lean Hogs"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],ar:["العقود الآجلة للماشية الحية"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],ar:["عقود E-mini الآجلة لليورو"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],ar:["عقود E-mini الآجلة لـ S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],ar:["عقود E-mini آجلة للين الياباني"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],ar:["عقود NASDAQ 100 E-MINI الآجلة"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],
|
||||
ar:["العقود الآجلة لمؤشر E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],ar:["العقود الآجلة للألومينوم الأوروبي Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],ar:["العقود الآجلة للألومينيوم MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],ar:["العقود الآجلة للذهب"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],ar:["عقود النحاس الآجلة"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],ar:["العقود الآجلة للفضة"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],ar:["عقود E-mini الآجلة للنحاس"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],ar:["عقود (Mini) الآجلة للفضة"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],ar:["عقود (Mini) الآجلة للذهب"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],ar:["عقود الفروقات السعرية للنحاس"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],ar:["عقود الفروقات السعرية للذرة"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],ar:["عقود الفروقات السعرية للقطن"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],ar:["إجمالي القيمة السوقية للعملات الرقمية بالدولار الأمريكي"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],ar:["مؤشر DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],ar:["مؤشر متوسط داو جونز المركب"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],ar:["مؤشر داو جونز للسلع - العنصر الزراعي المغطى"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],ar:["مؤشر داو جونز للسلع - كاكاو"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],ar:["مؤشر داو جونز للسلع - الطاقة"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],ar:["مؤشر داو جونز للسلع - ذهب"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],ar:["مؤشر داو جونز للسلع - حبوب"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],ar:["مؤشر داو جونز للسلع - نيكل"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],ar:["مؤشر داو جونز للسلع - البن"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],ar:["مؤشر داو جونز للسلع - السكر"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],ar:["مؤشر داو جونز للسلع - فضة"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["مؤشر متوسط داو جونز الصناعي"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],ar:["مؤشر متوسط داو جونز للنقل"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],
|
||||
ar:["مؤشر متوسط داو جونز الخدمي"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],ar:["مؤشر داو جونز للفحم في الولايات المتحدة"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],ar:["مؤشر EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],ar:["ايثيريوم كلاسيك/بيتكوين"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"],ar:["إيثريوم كلاسيك / يورو"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],ar:["ايثيريوم كلاسيك/دولار أمريكي"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"],ar:["إيثيريوم/بيتكوين"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"],ar:["الإيثيريوم / يورو"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],ar:["الإيثيريوم / جنيه بريطاني"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],ar:["الإيثيريوم / ين ياباني"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],ar:["إيثيريوم / وون كوريا الجنوبية"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],ar:["إيثيريوم / البات التايلندي"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],ar:["اثيريوم/دولار أمريكي"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],ar:["سند دين باليورو"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],ar:["يورو / دولار أسترالي"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],ar:["يورو/ ريال برازيلي"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],ar:["يورو / دولار كندي"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],ar:["يورو / فرنك سويسرى"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],ar:["يورو / جنيه إسترليني"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],ar:["يورو / ين يابانى"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],ar:["يورو / كرونا نرويجي"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],ar:["يورو / دولار نيوزيلاندى"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],ar:["مؤشر AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],ar:["مؤشر BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],ar:["مؤشر CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],ar:["يورو/ روبل روسي"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],ar:["يورو / روبل روسي"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],ar:["يورو / كورونة سويدية"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],ar:["يورو / ليره تركية"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],ar:["يورو / دولار أمريكى"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],ar:["مؤشر يورو ستوكس 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"],
|
||||
ar:["US SmallCap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],ar:["مؤشر كاك 40 CAC"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],ar:["الناتج المحلي الإجمالي، مقرب لأقرب علامة عشرية واحدة"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],ar:["إجمالي تعداد السكان: تشمل جميع الأعمار والقوات المسلحة في الخارج"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],ar:["معدل البطالة المدنية"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],ar:["مؤشر FTSE بورصة ماليزيا KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."],ar:["شركة كي ترونيك."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],ar:["مؤشر S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["متوسط مؤشر داو جونز الصناعي"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],ar:["جنيه إسترليني / دولار أسترالي"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],ar:["جنيه إسترليني / دولار كندي"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],ar:["جنيه إسترليني / فرنك سويسري"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],ar:["جنيه إسترليني / يورو"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],ar:["جنيه إسترليني / ين ياباني"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],ar:["جنيه إسترليني / دولار نيوزيلندي"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],ar:["جنيه بريطاني / زلوتي بولندي"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],ar:["جنيه إسترليني / روبل روسي"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],ar:["جنيه إسترليني / دولار أمريكي"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],ar:["مؤشر داكس"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],ar:["ألفابيت إنك (جوجل) فئة C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],ar:["شركة ألفابت (شركة جوجل) الفئة أ"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],ar:["مؤشر بورصة وارسو 20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],ar:["مؤشر هانج سينج Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],ar:["العقود الآجلة لمؤشر الدولار الأمريكي"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],ar:["مؤشر IDX المركب"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],ar:["مؤشر الشركات الصينية هانغ سنغ"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],ar:["مؤشر جاكارتا المركب"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],
|
||||
ar:["مؤشر KLCI الماليزي"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],ar:["مؤشر MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],ar:["مؤشر Euro Stoxx 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],ar:["مؤشر بورصة سينغافورة"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],ar:["مؤشر تايوان المرجح"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],ar:["مؤشر شنغاهاي المركب"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],ar:["يوتا / دولار أمريكي"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],ar:["مؤشر Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],ar:["ين ياباني / وون كورى"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],ar:["ين ياباني / روبل روسي"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],ar:["الين الياباني/الدولار الأمريكي"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"],ar:["شركة لوك أويل"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],ar:["لايتكوين / ريال برازيلي"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],ar:["لايتكوين / بيتكوين"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],ar:["لايتكوين/دولار"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],ar:["لونا / الدولار الأمريكي"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],ar:["العقود الآجلة للنفط خام برنت"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],ar:["مؤشر أسعار الأسهم في بورصة موسكو"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],ar:["مؤشر بورصة موسكو"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],ar:["العقود الآجلة لمؤشر MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],ar:["عقود مؤشر بورصة موسكو الآجلة"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],ar:["العقود الآجلة لمؤشر RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],ar:["مؤشر نظام التداول الروسي RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"],ar:["شركة روسال المتحدة العمومية المحدودة"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"],ar:["بنك SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],ar:["Microsoft شركة مايكروسوفت"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],ar:["مؤشر ناسداك 100 CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"],ar:["شركة Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],
|
||||
ar:["Alphabet Inc (Google) الفئة C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],ar:["Alphabet Inc (Google) الفئة A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],ar:["مؤشر PHLX لقطاع الإسكان"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],ar:["عقود صناديق تداول المؤشرات لسندات الخزينة لأجل 7-10 سنوات"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],ar:["صناديق مؤشرات سندات الخزانة 3-7 سنوات Ishares"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],ar:["مؤشر ناسداك المركب"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."],ar:["لوسيد موتور"]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],ar:["مؤشر ناسداك 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],ar:["مؤشر PHLX لقطاع خدمات النفط"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],ar:["صناديق مؤشرات سندات الخزانة 1-3 سنوات Ishares"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],ar:["مؤشر فيلادلفيا لأشباه الموصلات"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],ar:["صناديق مؤشرات سندات الخزانة أكثر من 20 سنة Ishares"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],ar:["مؤشر PHLX للقطاع الخدمي"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],ar:["مؤشر PHLX لقطاع الذهب والفضة"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"],ar:["سهم شركة زسكلار"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],ar:["نيو / دولار أمريكي"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],ar:["غاز طبيعى (خطوط أنابيب هنري هاب)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],ar:["مؤشر Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],ar:["مؤشر Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],ar:["العقود الآجلة للإيثانول NY Ethanol"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],ar:["عقود الكاكاو الآجلة"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],ar:["عقود خام النفط الخفيف الآجلة"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],ar:["العقود الآجلة للديزل منخفض الكبريت NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],ar:["عقود القهوة الآجلة"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],ar:["عقود الغاز الطبيعي الآجلة"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],ar:["العقود الآجلة للبلاديوم"]},
|
||||
e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],ar:["العقود الآجلة للبلاتين"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],ar:["العقود الآجلة للغاز الطبيعي RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],ar:["عقود القطن الآجلة"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],ar:["عقود E-mini الآجلة للغاز الطبيعي"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],ar:["عقود E-mini الآجلة لخام النفط الخفيف"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],ar:["عقود E-mini الآجلة للجازولين"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],ar:["مجموعة علي بابا القابضة المحدودة"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],ar:["مؤشر NYSE المركب"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],ar:["مؤشر AMEX المركب"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],ar:["مؤشر السوق الرئيسي NYSE ARCA"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],ar:["دولار نيوزيلندي / ين ياباني"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],ar:["دولار نيوزيلندي / دولار أمريكي"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],ar:["المؤشر الشامل للسوق النيوزيلاندي S&P/NZX"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],ar:["مؤشر S & P / NZX 50 الإجمالي"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],ar:["الغاز الطبيعي"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],ar:["مؤشر ستاندرد أند بورز S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],ar:["نحاس"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],ar:["مؤشر كوبنهاجن OMX 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],ar:["مؤشر OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],ar:["مؤشر OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],ar:["مؤشر OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],ar:["مؤشر OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],ar:["مؤشر OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"],ar:["صندوق مؤشرات الأسهم اليابانية"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],ar:["مؤشر QE"]},e.exports["#RTS-symbol-description"]={
|
||||
en:["Russian RTS Index"],ar:["مؤشر RTS الروسي"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],ar:["مؤشر Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],ar:["مؤشر Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],ar:["مؤشر Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],ar:["شركة الاتصالات العالمية العامة"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"],ar:["شركة فورد للسيارات"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],ar:["مؤشر السوق السويسري"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],ar:["سولانا / الدولار الأمريكي"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],ar:["عقود الفروقات السعرية لفول الصويا"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],ar:["مؤشر S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],ar:["مؤشر S&P جولدمان ساكس للسلع"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],ar:["ستاندرد أند بورز 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],ar:["مؤشر قيمة S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],ar:["مؤشر ستاندرد آند بورز 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],ar:["عقود الفروقات السعرية للسكر"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],ar:["مؤشر Shenzhen"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."],ar:["سهم مسك تداول"]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],ar:["مؤشر تداول السعودي لجميع الأسهم"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],ar:["مؤشر TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],ar:["مؤشر S&P/TSX المركب"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],ar:["صناديق مؤشرات بورصة باريس S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],ar:["السندات الحكومية الاسترالية 10 سنوات"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الاسترالية 10 سنوات"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],ar:["مؤشر الدولار الأسترالي"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],ar:["مؤشر الجنيه البريطاني"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],ar:["سندات الحكومة الكندية لـ10 سنوات"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة الكندية لـ10 سنوات"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],ar:["مؤشر كاك 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],ar:["السندات الحكومية الصينية 10 سنوات"]},
|
||||
e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الصينية 10 سنوات"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],ar:["مؤشر الدولار الكندي"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],ar:["السندات الحكومية الألمانية 10 سنوات"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الألمانية 10 سنوات"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],ar:["مؤشر داكس"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["مؤشر داو جونز التصنيعي"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],ar:["موشر الدولار الأمريكي"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],ar:["السندات الحكومية الإسبانية لأجل 10 سنوات"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الإسبانية لأجل 10 سنوات"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"],ar:["سندات اليورو"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],ar:["مؤشر اليورو"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],ar:["السندات الحكومية الفرنسية 10 سنوات"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الفرنسية 10 سنوات"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],ar:["السندات الحكومية البريطانية لأجل سنتين"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],ar:["السندات الحكومية البريطانية لأجل 10 سنوات"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية البريطانية لأجل 10 سنوات"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],ar:["الذهب (دولار أمريكي/أونصة)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],ar:["مؤشر Hang Seng للشركات الصينية"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],ar:["مؤشر IBEX 35 الإسباني"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],ar:["السندات الحكومية الإندونيسية 3 سنوات"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],ar:["السندات الحكومية الإندونيسية 10 سنوات"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة الأندونيسية لـ10 سنوات"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],ar:["السندات الحكومية الهندية 10 سنوات"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],ar:["عوائد سندات الحكومه الهنديه لـ 10 سنوات"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],ar:["السندات الحكومية الإيطالية 10 سنوات"]},
|
||||
e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],ar:["عوائد سندات الحكومه الإيطالية لأجل 10 سنوات"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],ar:["مؤشر الولايات المتحدة المركب"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],ar:["السندات الحكومية اليابانبة 10 سنوات"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],ar:["عوائد سندات الحكومة اليابانية لـ 10 سنوت"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],ar:["مؤشر الين الياباني"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],ar:["مؤشر أسعار الأسهم المركب في كوريا"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],ar:["السندات الحكومية الكورية 10 سنوات"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الكورية 10 سنوات"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],ar:["السندات الحكومية الماليزية لأجل 10 سنوات"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الماليزية لأجل 10 سنوات"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],ar:["مؤشر ناسداك 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],ar:["مؤشر Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],ar:["سندات الحكومة الهولندية لـ10 سنوات"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة الهولندية لـ10 سنوات"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],ar:["مؤشر NYSE المركب"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],ar:["سندات الحكومة النيوزلندية لـ10 سنوات"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة النيوزلندية لـ10 سنوات"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],ar:["البلاديوم (دولار أمريكي/أونصة)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],ar:["عوائد السندات الحكومية البولندية لأجل 5 سنوات"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية البولندية لأجل 10 سنوات"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],ar:["عقود الفروقات السعرية للبلاتين (دولار أمريكي/أونصة)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],ar:["السندات الحكومية البرتغالية 10 سنوات"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية البرتغالية 10 سنوات"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],ar:["مؤشر Top 40 جنوب أفريقيا"]},e.exports["#TVC:SILVER-symbol-description"]={
|
||||
en:["CFDs on Silver (US$ / OZ)"],ar:["الفضة (دولا أمريكي/أونصة)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],ar:["ستاندرد أند بورز 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],ar:["مؤشر السوق السويسري"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],ar:["مؤشر Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],ar:["مؤشر Euro Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],ar:["مؤشر الفرنك السويسري"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],ar:["السندات الحكومية التركية 10 سنوات"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية التركية أجل 10 سنوات"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],ar:["عقود الفروقات لنفط خام برنت"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],ar:["السندات الحكومية الأمريكية لأجل سنتين"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],ar:["عوائد السندات الحكومية الأمريكية لأجل سنتان"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],ar:["السندات الحكومية الأمريكية 5 سنوات"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],ar:["عوائد السندات الحكومية الأمريكية لأجل 5 سنوات"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],ar:["السندات الحكومية الأمريكية 10 سنوات"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الأمريكية لأجل 10 سنوات"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],ar:["سندات الخدانة الحكومية لأجل 30 سنة"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],ar:["عقود الفروقات السعرية للنفط الخام WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],ar:["مؤشر تّقلب S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],ar:["مؤشر عملة الدولار النيوزيلاندي"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],ar:["مؤشر بورصة تايوان المرجح"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],ar:["مؤشر رأس المال المرجعي في تايوان"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],ar:["شركة تويتر"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],ar:["مؤشر فوتسي 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],ar:["عقود الفروقات السعرية للنفط (خام برنت)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],ar:["Uniswap / الدولار الأمريكي"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["مؤشر متوسط داو جونز الصناعي"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],
|
||||
ar:["الدولار الأمريكي/الدولار الأسترالي"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],ar:["دولار أمريكي / ريال برازيلي"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],ar:["دولار أمريكي / دولار كندي"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],ar:["دولار أمريكي / فرنك سويسري"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],ar:["دولار أمريكي / يوان صيني"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],ar:["دولار أمريكي / كورونا دنماركية"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],ar:["الدولار الأمريكي/اليورو"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],ar:["الدولار الأمريكي/الجنيه البريطاني"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],ar:["دولار أمريكي / دولار هونج كونج"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],ar:["دولار أمريكي / فورنت مجري"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],ar:["دولار أمريكي / روبية"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],ar:["الدولار الأمريكي / الشيكل الإسرائيلي"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],ar:["دولار أمريكي / روبية هندية"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],ar:["دولار أمريكي / ين ياباني"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],ar:["دولار أمريكي / وون كوري"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],ar:["دولار أمريكي / بيزو مكسيكي"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],ar:["الدولار الأمريكي/الدولار النيوزيلاندي"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],ar:["دولار أمريكي / بيزو مكسيكي"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],ar:["دولار أمريكي / زلوتى بولندي"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],ar:["دولار أمريكي / روبل روسي"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],ar:["دولار أمريكي / روبل روسي غدا"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],ar:["دولار أمريكي / كورونا سويدية"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],ar:["دولار أمريكي / دولار سنغافوري"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],ar:["دولار أمريكي / بات تايلندي"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],ar:["دولار أمريكي / ليرة تركية"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],ar:["الدولار الأمريكي / الراند الجنوب إفريقي"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],ar:["عقود الفروقات السعرية للنفط الخام (WTI )"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],
|
||||
ar:["عقود الفروقات السعرية للقمح"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],ar:["دولار أمريكي / معدن الفضة"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],ar:["الذهب / دولار أمريكي"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],ar:["بيتكوين/دولار كندي"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],ar:["مؤشر داكس"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],ar:["مونيرو / دولار أمريكي"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],ar:["عقود فروقات معدن البالاديوم"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],ar:["معدن البلاتين / دولار أمريكي"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],ar:["ريبيل / بيتكوين"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],ar:["ريبيل / يورو"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],ar:["ريبيل / دولار أمريكي"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],ar:["زد كاش / دولار أمريكي"]}}}]);
|
||||
2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],ar:["مروحة فيبوناتشي المقاومة للسرعة"]}},39014:e=>{e.exports={en:["Fib Spiral"],ar:["حلزون فيبوناتشي"]}},30622:e=>{e.exports={en:["Fib Time Zone"],ar:["منطقة فيبوناتشي الزمنية"]}},85042:e=>{e.exports={en:["Fib Wedge"],ar:["وتد فيبوناتشي"]}},33885:e=>{e.exports={en:["Flag"],ar:["علم"]}},14600:e=>{e.exports={en:["Flag Mark"],ar:["علامة تمييز"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],ar:["قمة / قاع مسطح"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],ar:["جزء الكسر غير صحيح"]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],ar:["لم تعد الدراسات الأساسية متوفرة على الرسوم البيانية"]}},31561:e=>{e.exports={en:["Kolkata"],ar:["كولكاتا"]}},54533:e=>{e.exports={en:["Kathmandu"],ar:["كاتماندو"]}},83490:e=>{e.exports={en:["Kagi"],ar:["كاجي"]}},70913:e=>{e.exports={en:["Karachi"],ar:["كراتشي"]}},76614:e=>{e.exports={en:["Kuwait"],ar:["الكويت"]}},38561:e=>{e.exports={en:["Kuala Lumpur"],ar:["كوالا لمبور"]}},99906:e=>{e.exports={en:["HLC area"],ar:["منطقة HLC."]}},886:e=>{e.exports={en:["HLC bars"],ar:["أعمدة (الأعلى - الأدنى - الإغلاق)"]}},34491:e=>{e.exports={en:["Ho Chi Minh"],ar:["هوشي منه"]}},13459:e=>{e.exports={en:["Hollow candles"],ar:["شموع مفرغة"]}},48861:e=>{e.exports={en:["Hong Kong"],ar:["هونج كونج"]}},79668:e=>{e.exports={en:["Honolulu"],ar:["هونولولو"]}},21795:e=>{e.exports={en:["Horizontal Line"],ar:["خط أفقي"]}},25487:e=>{e.exports={en:["Horizontal Ray"],ar:["شعاع أفقي"]}},21928:e=>{e.exports={en:["Head and Shoulders"],ar:["نموذج الرأس والكتفين"]}},63876:e=>{e.exports={en:["Heikin Ashi"],ar:["هايكين آشي"]}},48203:e=>{e.exports={en:["Helsinki"],ar:["بورصة هلسنكي"]}},27298:e=>{e.exports={en:["Hide"],ar:["إخفاء"]}},47074:e=>{e.exports={en:["Hide all"],ar:["إخفاء الكل"]}},52563:e=>{e.exports={en:["Hide all drawings"],ar:["إخفاء جميع أدوات الرسم"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],ar:["إخفاء كل الرسومات والمؤشرات"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],ar:["إخفاء كافة الرسومات والمؤشرات والمراكز والأوامر"]}},78525:e=>{e.exports={en:["Hide all indicators"],ar:["إخفاء كل المؤشرات"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],ar:["إخفاء كل المراكز والأوامر"]}},3217:e=>{e.exports={en:["Hide drawings"],ar:["إخفاء الرسومات"]}},97878:e=>{e.exports={en:["Hide events on chart"],ar:["إخفاء الأحداث على الرسم البياني"]}},72351:e=>{e.exports={en:["Hide indicators"],ar:["إخفاء المؤشرات"]}},28345:e=>{e.exports={en:["Hide marks on bars"],ar:["إخفاء العلامات على الأعمدة"]}},92226:e=>{e.exports={en:["Hide positions & orders"],ar:["إخفاء المراكز والأوامر"]}},78254:e=>{e.exports={en:["High"],ar:["أعلى سعر"]}},98236:e=>{e.exports={en:["High-low"],ar:["أعلى-أدنى"]}},99479:e=>{e.exports={en:["High and low price labels"],ar:["ملصقات أعلى وأدنى السعر"]}},33766:e=>{e.exports={en:["High and low price lines"],ar:["خطوط أعلى وأدنى سعر"]}},69476:e=>{e.exports={en:["Highlighter"],ar:["لون مُميِز"]}},72819:e=>{e.exports={
|
||||
en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],ar:["الرسم البياني كبير جدًا، يرجى زيادة {boldHighlightStart}حجم الصف{boldHighlightEnd} في نافذة الإعدادات."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],ar:["الرسم البياني كبير جدًا، يرجى زيادة {boldHighlightStart}تيك لكل صف{boldHighlightEnd} في نافذة الإعدادات."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],ar:["الرسم البياني كبير جدًا، يرجى تقليل {boldHighlightStart}حجم الصف{boldHighlightEnd} في نافذة الإعدادات."]}},68065:e=>{e.exports={en:["Image"],ar:["صورة"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],ar:["لا يتم دعم الفواصل الزمنية الأقل من {resolution} لـ {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],ar:["متوسط"]}},14285:e=>{e.exports={en:["Invalid Symbol"],ar:["رمز غير صحيح"]}},52969:e=>{e.exports={en:["Invalid symbol"],ar:["رمز غير صحيح"]}},37189:e=>{e.exports={en:["Invert scale"],ar:["عكس المقياس"]}},89999:e=>{e.exports={en:["Indexed to 100"],ar:["مدرجة إلى 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],ar:["ملصقات قيمة المؤشرات"]}},54418:e=>{e.exports={en:["Indicators name labels"],ar:["ملصق اسم المؤشر"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],ar:["المؤشرات والمقاييس والاستراتيجيات. اضغط على سلاش"]}},15992:e=>{e.exports={en:["Info Line"],ar:["خط المعلومات"]}},87829:e=>{e.exports={en:["Insert indicator"],ar:["إدخال مؤشر"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],ar:["داخل الرسم البياني بيتش فورك"]}},37913:e=>{e.exports={en:["Icon"],ar:["أيقونة"]}},78326:e=>{e.exports={en:["Istanbul"],ar:["إسطنبول"]}},39585:e=>{e.exports={en:["Johannesburg"],ar:["جوهانسبرج"]}},14995:e=>{e.exports={en:["Jakarta"],ar:["بورصة جاكرتا"]}},62310:e=>{e.exports={en:["Jan"],ar:["يناير"]}},36057:e=>{e.exports={en:["Jerusalem"],ar:["القدس"]}},53786:e=>{e.exports={en:["Jul"],ar:["يوليو"]}},429:e=>{e.exports={en:["Jun"],ar:["يونيو"]}},67560:e=>{e.exports={en:["Juneau"],ar:["جونو"]}},62329:e=>{e.exports={en:["On the left"],ar:["على اليسار"]}},55813:e=>{e.exports={en:["On the right"],ar:["على اليمين"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],ar:["يتم دعم الفواصل الزمنية {availableResolutions} فقط لـ {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],ar:["عفوا!"]}},51221:e=>{e.exports={en:["Object Tree"],ar:["عناصر الرسم البياني"]}},12179:e=>{e.exports={en:["Oct"],ar:["أكتوبر"]}},16610:e=>{e.exports={en:["Open"],ar:["افتتاح"]}},27884:e=>{e.exports={en:["Open layout. Press period"],ar:["تنسيق مفتوح. فترة الضغط"]}},75722:e=>{e.exports={en:["Oslo"],ar:["أوسلو"]}},65318:e=>{e.exports={en:["Low"],ar:["أدنى سعر"]}},51077:e=>{e.exports={en:["Lock"],ar:["غلق"]}},79777:e=>{e.exports={en:["Lock/unlock"],ar:["إغلاق/ فتح"]}},66005:e=>{e.exports={
|
||||
en:["Lock vertical cursor line by time"],ar:["قفل خط المؤشر العمودي بمرور الوقت"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],ar:["قفل نسبة السعر للعمود البياني"]}},16170:e=>{e.exports={en:["Logarithmic"],ar:["لوغاريتمي"]}},19439:e=>{e.exports={en:["London"],ar:["لندن"]}},74832:e=>{e.exports={en:["Long Position"],ar:["صفقة شراء"]}},28733:e=>{e.exports={en:["Los Angeles"],ar:["لوس أنجلوس"]}},85924:e=>{e.exports={en:["Label Down"],ar:["إشارة لأسفل"]}},52402:e=>{e.exports={en:["Label Up"],ar:["إشارة لأعلى"]}},5119:e=>{e.exports={en:["Labels"],ar:["عناوين"]}},19931:e=>{e.exports={en:["Lagos"],ar:["بورصة لاغوس"]}},63815:e=>{e.exports={en:["Last day change"],ar:["تغيير اليوم الأخير"]}},59444:e=>{e.exports={en:["Lima"],ar:["بورصة ليما"]}},3554:e=>{e.exports={en:["Line"],ar:["خط"]}},9394:e=>{e.exports={en:["Line with markers"],ar:["خط بعلامات"]}},43588:e=>{e.exports={en:["Line break"],ar:["خط فاصل"]}},56982:e=>{e.exports={en:["Lines"],ar:["الخطوط"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],ar:["تم نسخ رابط صورة الرسم البيانية إلى الحافظة {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],ar:["لشبونة"]}},81038:e=>{e.exports={en:["Luxembourg"],ar:["لوكسمبورغ"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],ar:["حرّك النقطة لتغيير موضع المُثبّت ثم اضغط لوضعه"]}},35049:e=>{e.exports={en:["Move to"],ar:["حرك إلى"]}},26493:e=>{e.exports={en:["Move scale to left"],ar:["حرك المقياس إلى اليسار"]}},40789:e=>{e.exports={en:["Move scale to right"],ar:["حرك المقياس إلى اليمين"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],ar:["شيف بيتش فورك المعدل"]}},93907:e=>{e.exports={en:["More settings"],ar:["المزيد من الإعدادات"]}},64039:e=>{e.exports={en:["Moscow"],ar:["موسكو"]}},52066:e=>{e.exports={en:["Madrid"],ar:["مدريد"]}},38365:e=>{e.exports={en:["Malta"],ar:["مالطا"]}},48991:e=>{e.exports={en:["Manila"],ar:["مانيلا"]}},92767:e=>{e.exports={en:["Mar"],ar:["مارس"]}},73332:e=>{e.exports={en:["Mexico City"],ar:["مدينة المكسيك"]}},88314:e=>{e.exports={en:["Merge all scales into one"],ar:["دمج كل المقاييس في مقياس واحد"]}},54215:e=>{e.exports={en:["Mixed"],ar:["مختلط"]}},24866:e=>{e.exports={en:["Micro"],ar:["صغيرة"]}},87957:e=>{e.exports={en:["Millennium"],ar:["ألفية"]}},14724:e=>{e.exports={en:["Minuette"],ar:["موجة إليوت الذرية"]}},78273:e=>{e.exports={en:["Minuscule"],ar:["حرف صغير"]}},9865:e=>{e.exports={en:["Muscat"],ar:["مسقط"]}},96935:e=>{e.exports={en:["N/A"],ar:["غير متاح"]}},36252:e=>{e.exports={en:["No data here"],ar:["لا توجد بيانات هنا"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],ar:["بدون مقياس ثابت (ملء الشاشة)"]}},9140:e=>{e.exports={en:["No sync"],ar:["لا مزامنة"]}},50910:e=>{e.exports={en:["No volume data"],ar:["بيانات الحجم غير موجودة"]}},99024:e=>{e.exports={en:["No, keep them"],ar:["لا، احتفظ بها"]}},94389:e=>{e.exports={en:["Note"],ar:["ملاحظة"]}},26899:e=>{e.exports={en:["Nov"],ar:["نوفمبر"]}},67891:e=>{e.exports={en:["Norfolk Island"],ar:["جزيرة نورفولك"]}},40977:e=>{e.exports={en:["Nairobi"],ar:["نيروبي"]}},
|
||||
40544:e=>{e.exports={en:["New York"],ar:["نيويورك"]}},66103:e=>{e.exports={en:["New Zealand"],ar:["نيوزلندا"]}},15512:e=>{e.exports={en:["New pane above"],ar:["جزء جديد أعلاه"]}},52160:e=>{e.exports={en:["New pane below"],ar:["جزء جديد أدناه"]}},94600:e=>{e.exports={en:["Nicosia"],ar:["نيقوسيا"]}},73013:e=>{e.exports={en:["Something went wrong"],ar:["حدث خطأ ما"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],ar:["حدث خطأ ما عند إنشاء المؤشر."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],ar:["حدث خطأ ما، الرجاء المحاولة مرة أخرى في وقت لاحق."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],ar:["حفظ التنسيق الجديد للرسم البياني"]}},76266:e=>{e.exports={en:["Save as"],ar:["حفظ باسم"]}},55502:e=>{e.exports={en:["San Salvador"],ar:["سان سلفادور"]}},30231:e=>{e.exports={en:["Santiago"],ar:["بورصة سانتياغو"]}},91912:e=>{e.exports={en:["Sao Paulo"],ar:["ساو باولو"]}},43931:e=>{e.exports={en:["Scale currency"],ar:["عملة المقياس"]}},43758:e=>{e.exports={en:["Scale price chart only"],ar:["نطاق الرسم البياني للسعر فقط"]}},40012:e=>{e.exports={en:["Scale unit"],ar:["وحدة المقياس"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],ar:["سكيف بيتش فورك"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],ar:["يمكن أن لا يتم تحديث النص البرمجي المكتوب إذا غادرت الصفحة."]}},32514:e=>{e.exports={en:["Settings"],ar:["إعدادات"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],ar:["الجزء الثاني غير صحيح."]}},75594:e=>{e.exports={en:["Security info"],ar:["معلومات الرمز"]}},21973:e=>{e.exports={en:["Send to back"],ar:["إرسال للمؤخرة"]}},71179:e=>{e.exports={en:["Send backward"],ar:["إرسال إلى الخلف"]}},26820:e=>{e.exports={en:["Seoul"],ar:["سيول"]}},6816:e=>{e.exports={en:["Sep"],ar:["سبتمبر"]}},94031:e=>{e.exports={en:["Session"],ar:["فترة"]}},83298:e=>{e.exports={en:["Session volume profile"],ar:["بروفايل أحجام التداول للجلسة"]}},66707:e=>{e.exports={en:["Session breaks"],ar:["راحات جلسة التداول"]}},1852:e=>{e.exports={en:["Shanghai"],ar:["شنغهاي"]}},8075:e=>{e.exports={en:["Short Position"],ar:["صفقة بيع على المكشوف"]}},98334:e=>{e.exports={en:["Show"],ar:["عرض"]}},85891:e=>{e.exports={en:["Show all drawings"],ar:["عرض كل الرسومات"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],ar:["عرض كل الرسومات والمؤشرات"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],ar:["إظهار كافة الرسومات والمؤشرات والمراكز والأوامر"]}},98753:e=>{e.exports={en:["Show all indicators"],ar:["عرض كل المؤشرات"]}},55418:e=>{e.exports={en:["Show all ideas"],ar:["عرض جميع الأفكار"]}},20506:e=>{e.exports={en:["Show all positions & orders"],ar:["إظهار المراكز والأوامر"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],ar:["إظهار تبديل العقد المستمر"]}},81465:e=>{e.exports={en:["Show contract expiration"],ar:["إظهار انتهاء صلاحية العقد"]}},29449:e=>{e.exports={en:["Show dividends"],ar:["عرض توزيعات الأرباح"]}},37113:e=>{e.exports={en:["Show earnings"],ar:["عرض الأرباح"]}},10261:e=>{e.exports={
|
||||
en:["Show ideas of followed users"],ar:["عرض جميع الأفكار للمستخدمين الذين يتم متابعتهم"]}},62986:e=>{e.exports={en:["Show latest news"],ar:["عرض آخر الأخبار"]}},44020:e=>{e.exports={en:["Show my ideas only"],ar:["عرض أفكاري فقط"]}},50849:e=>{e.exports={en:["Show splits"],ar:["عرض تقسيمات الأسهم"]}},67751:e=>{e.exports={en:["Signpost"],ar:["لافتة"]}},77377:e=>{e.exports={en:["Singapore"],ar:["سنغافورة"]}},39090:e=>{e.exports={en:["Sine Line"],ar:["منحنى الجيب"]}},66205:e=>{e.exports={en:["Square"],ar:["مربع"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],ar:["تم تجاوز الحد الأقصى للدراسات : {number} دراسة لكل نسق\nبرجاء حذب البعض"]}},92516:e=>{e.exports={en:["Style"],ar:["نمط"]}},61507:e=>{e.exports={en:["Stack on the left"],ar:["انحياز لليسار"]}},97800:e=>{e.exports={en:["Stack on the right"],ar:["انحياز لليمين"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],ar:["ابدأ باستخدام وضع التنقل باستخدام لوحة المفاتيح. اضغط على {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],ar:["البقاء في وضع الرسم"]}},69217:e=>{e.exports={en:["Step line"],ar:["خط متدرج"]}},43114:e=>{e.exports={en:["Sticker"],ar:["ملصق"]}},86716:e=>{e.exports={en:["Stockholm"],ar:["بورصة ستوكهولم"]}},1145:e=>{e.exports={en:["Submicro"],ar:["موجة مجهرية فرعية"]}},63375:e=>{e.exports={en:["Submillennium"],ar:["موجة الألفية الثانوية"]}},30585:e=>{e.exports={en:["Subminuette"],ar:["فاصل الدقيقة في موجات اليوت"]}},67948:e=>{e.exports={en:["Supercycle"],ar:["الموجة الدورية العليا"]}},3348:e=>{e.exports={en:["Supermillennium"],ar:["موجة الألفية العظمى"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],ar:["قم بالتبديل إلى {resolution}"]}},31622:e=>{e.exports={en:["Sydney"],ar:["سيدني"]}},70963:e=>{e.exports={en:["Symbol Error"],ar:["خطأ في الرمز"]}},32390:e=>{e.exports={en:["Symbol name label"],ar:["ملصق اسم الرمز"]}},10127:e=>{e.exports={en:["Symbol last price label"],ar:["ملصق آخر قيمة للرمز"]}},39079:e=>{e.exports={en:["Sync globally"],ar:["مزامنة شاملة"]}},46607:e=>{e.exports={en:["Sync in layout"],ar:["مزامنة مع كل الرسوم البيانية"]}},76519:e=>{e.exports={en:["Point & figure"],ar:["النقطة والرقم"]}},39949:e=>{e.exports={en:["Polyline"],ar:["متعدد الخطوط"]}},371:e=>{e.exports={en:["Path"],ar:["مسار"]}},59256:e=>{e.exports={en:["Parallel Channel"],ar:["قناة متوازية"]}},61879:e=>{e.exports={en:["Paris"],ar:["باريس"]}},35140:e=>{e.exports={en:["Paste"],ar:["لصق"]}},6919:e=>{e.exports={en:["Percent"],ar:["نسبة مئوية"]}},24436:e=>{e.exports={en:["Perth"],ar:["بِرث"]}},14055:e=>{e.exports={en:["Phoenix"],ar:["فونيكس"]}},34156:e=>{e.exports={en:["Pitchfan"],ar:["بتشفان"]}},19634:e=>{e.exports={en:["Pitchfork"],ar:["بيتش فورك"]}},86631:e=>{e.exports={en:["Pin"],ar:["شبك"]}},33110:e=>{e.exports={en:["Pin to new left scale"],ar:["ثبت على مقياس أيسر جديد"]}},28280:e=>{e.exports={en:["Pin to new right scale"],ar:["ثبت على مقياس أيمن جديد"]}},14115:e=>{e.exports={en:["Pin to left scale"],ar:["ثبت إلى المقياس الأيسر"]}},72046:e=>{e.exports={
|
||||
en:["Pin to left scale (hidden)"],ar:["ثبت على المقياس الأيسر (مخفي)"]}},81054:e=>{e.exports={en:["Pin to right scale"],ar:["ثبت إلى المقياس الأيمن"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],ar:["ثبت على المقياس الأيمن (مخفي)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],ar:["تثبيت إلى المقياس (الآن يسار)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],ar:["تثبيت مقياس الرسم (الأن لا مقياس محدد)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],ar:["تثبيت إلى المقياس (الآن يمين)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],ar:["ثبت على مقياس ({label} جديد)"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],ar:["ثبت إلى المقياس {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],ar:["ثبت على المقياس {label} (مخفي)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],ar:["تم التثبيت إلى المقياس الأيسر"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],ar:["تم التثبيت على المقياس الأيسر (مخفي)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],ar:["تم التثبيت إلى المقياس الأيمن"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],ar:["ثبت على المقياس الأيمن (مخفي)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],ar:["ثبت على المقياس {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],ar:["تم التثبيت على المقياس {label} (مخفي)"]}},71566:e=>{e.exports={en:["Plus button"],ar:["زر زائد"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],ar:["يرجى منحنا إذن الكتابة للحافظة في متصفحك أو الضغط على {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],ar:["براغ"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],ar:["اضغط لمدة مطولة على {key} أثناء التكبير للحفاظ على موضع الرسم البياني"]}},91282:e=>{e.exports={en:["Price Label"],ar:["ملصق السعر"]}},97512:e=>{e.exports={en:["Price Note"],ar:["بطاقة السعر"]}},68941:e=>{e.exports={en:["Price Range"],ar:["المدى السعري"]}},66123:e=>{e.exports={en:["Price format is invalid."],ar:["صيغة السعر غير صحيحة"]}},72926:e=>{e.exports={en:["Price line"],ar:["خط السعر"]}},59189:e=>{e.exports={en:["Primary"],ar:["أوًلي"]}},75747:e=>{e.exports={en:["Projection"],ar:["مسقط"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],ar:["تم نشره على {customer} في {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"],ar:["قطر"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],ar:["بحث سريع. اضغط على {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],ar:["مستطيل مائل"]}},52961:e=>{e.exports={en:["Rome"],ar:["روما"]}},50318:e=>{e.exports={en:["Ray"],ar:["شعاع"]}},55169:e=>{e.exports={en:["Range"],ar:["مدى"]}},13386:e=>{e.exports={en:["Reykjavik"],ar:["بورصة ريكيافيك"]}},26001:e=>{e.exports={en:["Rectangle"],ar:["مستطيل"]}},48236:e=>{e.exports={en:["Redo"],ar:["إعادة"]}},2460:e=>{e.exports={en:["Regression Trend"],
|
||||
ar:["إتجاه الإنحدار"]}},67410:e=>{e.exports={en:["Remove"],ar:["حذف"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],ar:["أزل هذا المقياس المالي من المفضلة"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],ar:["أزل هذا المؤشر من المفضلة"]}},86285:e=>{e.exports={en:["Remove {drawings}"],ar:["إزالة {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],ar:["إزالة {drawings} و{indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],ar:["إزالة {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],ar:["إعادة تسمية الرسم البياني"]}},88130:e=>{e.exports={en:["Renko"],ar:["رينكو"]}},75246:e=>{e.exports={en:["Reset chart view"],ar:["إعادة تعيين عرض الرسم البياني"]}},88853:e=>{e.exports={en:["Reset points"],ar:["نقاط إعادة الضبط"]}},15332:e=>{e.exports={en:["Reset price scale"],ar:["إعادة تعيين مقياس السعر"]}},54170:e=>{e.exports={en:["Reset time scale"],ar:["إعادة تعيين مقياس الزمن"]}},37974:e=>{e.exports={en:["Riyadh"],ar:["الرياض"]}},94022:e=>{e.exports={en:["Riga"],ar:["بورصة ريغا"]}},60630:e=>{e.exports={en:["Runtime error"],ar:["خطأ وقت التشغيل"]}},66719:e=>{e.exports={en:["Warning"],ar:["تحذير"]}},5959:e=>{e.exports={en:["Warsaw"],ar:["وارسو"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],ar:["طوكيو"]}},10095:e=>{e.exports={en:["Toronto"],ar:["تورنتو"]}},17981:e=>{e.exports={en:["Table"],ar:["الطاولة"]}},11034:e=>{e.exports={en:["Taipei"],ar:["طرابلس"]}},79995:e=>{e.exports={en:["Tallinn"],ar:["بورصة تالين"]}},6686:e=>{e.exports={en:["Tehran"],ar:["طهران"]}},93553:e=>{e.exports={en:["Template"],ar:["قالب"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],ar:["لا يوفر المزود بيانات أحجام التداول لهذا الرمز."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],ar:["لا يمكن تحميل عرض المنشور. يُرجى إيقاف إمتدادات المتصفح الخاص بك وإعادة المحاولة."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],ar:["استغرقت معالجة الطلب وقتًا طويلاً. تأكد من أن لديك اتصال إنترنت مستقر. إذا استمرت المشكلة، حاول تقليل طول الفاصل الزمني المطلوب."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],ar:["لا توجد بيانات للفترة المحددة والإطار الزمني للرسم البياني."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],ar:["هذا الملف كبير جدًا. الحد الأقصى للحجم هو {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],ar:["هذا المؤشر لا يمكن تطبيقه على مؤشر آخر"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],ar:["يحتوي هذا النص البرمجي على خطأ. يرجى الاتصال بمؤلفها."]}},76989:e=>{e.exports={
|
||||
en:["This script is invite-only. To request access, please contact its author."],ar:["هذا النص البرمجي هو بدعوة فقط. لطلب الوصول، يرجى الاتصال بالمؤلف."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],ar:["هذا الرمز متاح فقط في {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],ar:["نموذج الثلاث موجات"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],ar:["الفواصل الزمنية المستندة إلى التيك غير متوفرة لـ {ticker}."]}},12806:e=>{e.exports={en:["Time"],ar:["الوقت"]}},20909:e=>{e.exports={en:["Time zone"],ar:["المنطقة الزمنية"]}},46852:e=>{e.exports={en:["Time Cycles"],ar:["الدورات الزمنية"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],ar:["فرص الوقت والأسعار"]}},66823:e=>{e.exports={en:["Trade"],ar:["تداول"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],ar:["Tradingview تفاعلية ولديها أوامر لاستخدامها مع قارئ الشاشة. فيما يلي قائمة بأوامر لوحة المفاتيح المتاحة للتفاعل على المنصة"]}},35757:e=>{e.exports={en:["Trend Angle"],ar:["زاوية الإتجاه"]}},97339:e=>{e.exports={en:["Trend Line"],ar:["خط الاتجاه"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],ar:["امتداد فيبوناتشي الاتجاهي"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],ar:["فيبوناتشي الزمني الاتجاهي"]}},1671:e=>{e.exports={en:["Triangle"],ar:["مثلث"]}},76152:e=>{e.exports={en:["Triangle Down"],ar:["مثلث هابط"]}},90148:e=>{e.exports={en:["Triangle Pattern"],ar:["نموذج المثلث"]}},21236:e=>{e.exports={en:["Triangle Up"],ar:["مثلث صاعد"]}},21007:e=>{e.exports={en:["Tunis"],ar:["تونس"]}},1833:e=>{e.exports={en:["UTC"],ar:["بالتوقيت العالمي المنسق"]}},14804:e=>{e.exports={en:["Undo"],ar:["تراجع"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],ar:["خطأ غير متوقع في وضع الاختبار الخلفي العميق. اتصل بالدعم للحصول على مزيد من المعلومات."]}},15432:e=>{e.exports={en:["Units"],ar:["وحدات"]}},11768:e=>{e.exports={en:["Unknown error"],ar:["خطأ غير معروف"]}},99894:e=>{e.exports={en:["Unlock"],ar:["فتح"]}},75546:e=>{e.exports={en:["Unsupported interval"],ar:["فاصل زمني غير مدعوم"]}},8580:e=>{e.exports={en:["User-defined error"],ar:["خطأ معرّف من قبل المستخدم"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],ar:["بروفايل حجم التداول بنطاق ثابت"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],ar:["مؤشر بروفايل حجم التداول متاح فقط على عضوياتنا المدفوعة."]}},93722:e=>{e.exports={en:["Volume candles"],ar:["شموع الحجم"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],ar:["لا يتم توفير بيانات الحجم في بيانات BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],ar:["بصمة الحجم"]}},32838:e=>{e.exports={en:["Vancouver"],ar:["فانكوفر"]}},29535:e=>{e.exports={en:["Vertical Line"],ar:["خط رأسي"]}},
|
||||
23160:e=>{e.exports={en:["Vienna"],ar:["فيينا"]}},60534:e=>{e.exports={en:["Vilnius"],ar:["بورصة فيلنيوس"]}},40091:e=>{e.exports={en:["Visibility"],ar:["الظهور"]}},54853:e=>{e.exports={en:["Visibility on intervals"],ar:["الوضوح على الفواصل الزمنية"]}},58302:e=>{e.exports={en:["Visible on tap"],ar:["مرئي عند النقر"]}},10309:e=>{e.exports={en:["Visible on mouse over"],ar:["مرئية عند تمرير الفأرة"]}},4077:e=>{e.exports={en:["Visual order"],ar:["الترتيب المرئي"]}},11316:e=>{e.exports={en:["X Cross"],ar:["تقاطع"]}},42231:e=>{e.exports={en:["XABCD Pattern"],ar:["XABCD نموذج"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],ar:["لا يمكنك رؤية النقاط المحورية على هذا الإطار الزمني"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],ar:["لقد قمت بإغلاق الرسومات على هذا الرمز. هل تريد إزالة الرسومات المقفلة أيضًا؟"]}},53168:e=>{e.exports={en:["Yangon"],ar:["يانجون"]}},93123:e=>{e.exports={en:["Yes, remove them"],ar:["نعم، قم بإزالتها"]}},62859:e=>{e.exports={en:["Zurich"],ar:["زيوريخ"]}},47977:e=>{e.exports={en:["change Elliott degree"],ar:["تغيير درجة إليوت"]}},61557:e=>{e.exports={en:["change no overlapping labels"],ar:["تغيير الملصقات غير متداخلة"]}},76852:e=>{e.exports={en:["change average close price label visibility"],ar:["تغيير وضوح ملصق متوسط إغلاق السعر"]}},1022:e=>{e.exports={en:["change average close price line visibility"],ar:["تغيير وضوح خط سعر الإغلاق السابق"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],ar:["تغيير وضوح ملصقات سعري البيع والشراء"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],ar:["تغيير وضوح خط سعري البيع والشراء"]}},32302:e=>{e.exports={en:["change currency"],ar:["تغيير العملة"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],ar:["تغيير تنسيق الرسم البياني إلى {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],ar:["تغيير رؤية تبديل العقد المستمر"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],ar:["تغيير وضوح العد التنازلي لعمود الإغلاق"]}},16979:e=>{e.exports={en:["change date range"],ar:["تغيير نطاق التاريخ"]}},53929:e=>{e.exports={en:["change dividends visibility"],ar:["تغيير وضوح توزيعات الأرباح"]}},6119:e=>{e.exports={en:["change events visibility on chart"],ar:["تغيير وضوح الأحداث على الرسم البياني"]}},6819:e=>{e.exports={en:["change earnings visibility"],ar:["تغيير وضوح الأرباح"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],ar:["تغيير وضوح انتهاء صلاحية العقود الآجلة"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],ar:["تغيير وضوح ملصقات أعلى سعر وأدنى سعر"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],ar:["تغيير وضوح خطوط أعلى سعر وأدنى سعر"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],ar:["وضوح ملصقات تغير المؤشرات"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],ar:["وضوح ملصقات تغيير المؤشرات"]}},50243:e=>{e.exports={
|
||||
en:["change latest news and Minds visibility"],ar:["تغيير عرض آخر الأخبار والأفكار"]}},88849:e=>{e.exports={en:["change linking group"],ar:["تغيير مجموعة الربط"]}},14691:e=>{e.exports={en:["change pane height"],ar:["تغيير ارتفاع الجزء"]}},96379:e=>{e.exports={en:["change plus button visibility"],ar:["تغيير وضوح زر +"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],ar:["تغيير وضوح ملصق أسعار ما قبل/بعد الجلسة"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],ar:["تغيير وضوح خط أسعار ما قبل/بعد الجلسة"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],ar:["تغيير وضوح خط سعر الإغلاق السابق"]}},8662:e=>{e.exports={en:["change price line visibility"],ar:["تغيير خط السعر"]}},2509:e=>{e.exports={en:["change price to bar ratio"],ar:["تغيير السعر إلى نسبة العمود"]}},32829:e=>{e.exports={en:["change resolution"],ar:["تغيير النطاق"]}},35400:e=>{e.exports={en:["change symbol"],ar:["تغيير الرمز"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],ar:["تغيير وضوح ملصقات رمز"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],ar:["تغيير وضوح آخر قيمة للرمز"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],ar:["تغيير وضوح قيمة الإغلاق للرمز"]}},87041:e=>{e.exports={en:["change session"],ar:["تغيير الجلسة"]}},38413:e=>{e.exports={en:["change session breaks visibility"],ar:["تغيير وضوح فواصل الجلسة"]}},49965:e=>{e.exports={en:["change series style"],ar:["تغيير نمط السلسلة"]}},47474:e=>{e.exports={en:["change splits visibility"],ar:["تغيير وضوح تقسيمات الأسهم"]}},20137:e=>{e.exports={en:["change timezone"],ar:["تغيير المنطقة الزمنية"]}},85975:e=>{e.exports={en:["change unit"],ar:["تغيير الوحدة"]}},1924:e=>{e.exports={en:["change visibility"],ar:["تغيير الرؤية"]}},84331:e=>{e.exports={en:["change visibility at current interval"],ar:["تغيير وضوح الفاصل الزمني الحالي"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],ar:["تغيير الوضوح في الفاصل الزمني الحالي وما فوقه"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],ar:["تغيير الوضوح في الفاصل الزمني الحالي وأدناه"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],ar:["تغيير الوضوح في جميع الفترات"]}},94566:e=>{e.exports={en:["charts by TradingView"],ar:["الرسوم البيانية بواسطة TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],ar:["أدوات نسخ الخط"]}},46219:e=>{e.exports={en:["create line tools group"],ar:["أنشئ مجموعة أدوات الخطوط"]}},95394:e=>{e.exports={en:["create line tools group from selection"],ar:["إنشاء مجموعة أدوات الخطوط من الخيارات المتاحة"]}},12898:e=>{e.exports={en:["create {tool}"],ar:["إنشاء {tool}"]}},94227:e=>{e.exports={en:["cut sources"],ar:["مصادر القطع"]}},11500:e=>{e.exports={en:["cut {title}"],ar:["قص {title}"]}},63869:e=>{e.exports={en:["anchor objects"],ar:["عناصر مثبتة"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],ar:["إضافة أداة الخطوط {lineTool} لمجموعة {name}"]}},
|
||||
21162:e=>{e.exports={en:["add line tool(s) to group {group}"],ar:["إضافة أداة (أدوات) الخط إلى المجموعة {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],ar:["أضف هذا المؤشر المالي إلى التنسيق بالكامل"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],ar:["أضف هذا المؤشر إلى التنسيق بالكامل"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],ar:["أضف هذه الاستراتيجية إلى التنسيق بالكامل"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],ar:["أضف هذا الرمز إلى التنسيق بالكامل"]}},4128:e=>{e.exports={en:["align to 45 degrees"],ar:["محاذاة إلى 45 درجة"]}},68231:e=>{e.exports={en:["apply chart theme"],ar:["تطبيق مظهر الرسم البياني"]}},99551:e=>{e.exports={en:["apply all chart properties"],ar:["تطبيق كافة خصائص الرسم البياني"]}},89720:e=>{e.exports={en:["apply drawing template"],ar:["تطبيق قالب الرسم"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],ar:["تطبيق إعدادات المصنع الافتراضية على المصادر المختارة"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],ar:["تطبيق المؤشرات على التنسيق بأكمله"]}},69604:e=>{e.exports={en:["apply study template {template}"],ar:["تطبيق قالب الدراسة {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],ar:["تطبيق مظهر أشرطة الأدوات"]}},1979:e=>{e.exports={en:["bring group {title} forward"],ar:["جلب المجموعة {title} إلى الأمام"]}},53159:e=>{e.exports={en:["bring {title} to front"],ar:["جلب {title} إلى المقدمة"]}},41966:e=>{e.exports={en:["bring {title} forward"],ar:["حرّك {title} للأمام"]}},44676:e=>{e.exports={en:["by TradingView"],ar:["بواسطة TradingView"]}},58850:e=>{e.exports={en:["date range lock"],ar:["تجميد النطاق الزمني"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],ar:["استثناء أدوات الخطوط من المجموعة {group}"]}},13017:e=>{e.exports={en:["hide {title}"],ar:["إخفاء {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],ar:["إخفاء العلامات على الأعمدة"]}},56558:e=>{e.exports={en:["interval lock"],ar:["قفل الفاصل"]}},6830:e=>{e.exports={en:["invert scale"],ar:["عكس المقياس"]}},48818:e=>{e.exports={en:["insert {title}"],ar:["أدخل {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],ar:["أدخل {title} بعد {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],ar:["أدخل {title} بعد {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],ar:["أدخل {title} قبل {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],ar:["أدخل {title} قبل {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],ar:["تحميل قالب الرسم الافتراضي"]}},62011:e=>{e.exports={en:["loading..."],ar:["تحميل..."]}},76104:e=>{e.exports={en:["lock {title}"],ar:["تثبيت {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],ar:["غلق المجموعة {group}"]}},18942:e=>{e.exports={en:["lock objects"],ar:["قفل العنصر"]}},98277:e=>{e.exports={en:["move"],ar:["تحريك"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],ar:["انقل {title} إلى مقياس يسار جديد"]}},
|
||||
77482:e=>{e.exports={en:["move {title} to new right scale"],ar:["انقل {title} إلى مقياس جديد على اليسار"]}},64077:e=>{e.exports={en:["move all scales to left"],ar:["حرك كل المقاييس إلى اليسار"]}},19013:e=>{e.exports={en:["move all scales to right"],ar:["حرك كل المقاييس إلى اليمين"]}},52510:e=>{e.exports={en:["move drawing(s)"],ar:["نقل الرسم (الرسومات)"]}},79209:e=>{e.exports={en:["move left"],ar:["حرك يسارًا"]}},60114:e=>{e.exports={en:["move right"],ar:["حرّك يمينًا"]}},44854:e=>{e.exports={en:["move scale"],ar:["حرك المقياس"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],ar:["اجعل {title} بدون مقياس محدد (ملء الشاشة)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],ar:["اجعل المجموعة {group} غير مرئية"]}},45987:e=>{e.exports={en:["make group {group} visible"],ar:["اجعل المجموعة {group} مرئية"]}},78055:e=>{e.exports={en:["merge down"],ar:["دمج لأسفل"]}},41866:e=>{e.exports={en:["merge to pane"],ar:["دمج في جزء"]}},52458:e=>{e.exports={en:["merge up"],ar:["دمج لأعلى"]}},90091:e=>{e.exports={en:["n/a"],ar:["لا يوجد"]}},94981:e=>{e.exports={en:["scale price"],ar:["مقياس السعر"]}},63796:e=>{e.exports={en:["scale price chart only"],ar:["نطاق الرسم البياني للسعر فقط"]}},70771:e=>{e.exports={en:["scale time"],ar:["وقت المقياس"]}},42070:e=>{e.exports={en:["scroll"],ar:["تمرير"]}},87840:e=>{e.exports={en:["scroll time"],ar:["وقت التمرير"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],ar:["تعيين إستراتيجية اختيار مقياس السعر على {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],ar:["أرسل {title} للخلف"]}},5005:e=>{e.exports={en:["send {title} to back"],ar:["أرسل {title} إلى الخلف"]}},69546:e=>{e.exports={en:["send group {title} backward"],ar:["أرسل المجموعة {title} إلى الخلف"]}},63934:e=>{e.exports={en:["share line tools globally"],ar:["مشاركة أدوات الخط بشكل شامل"]}},90221:e=>{e.exports={en:["share line tools in layout"],ar:["مشاركة أدوات الخط في التنسيق"]}},13336:e=>{e.exports={en:["show all ideas"],ar:["عرض جميع التحاليل"]}},91395:e=>{e.exports={en:["show ideas of followed users"],ar:["عرض جميع التحاليل للمستخدمين الذين يتم متابعتهم"]}},57460:e=>{e.exports={en:["show my ideas only"],ar:["عرض تحاليلي فقط"]}},4114:e=>{e.exports={en:["stay in drawing mode"],ar:["البقاء في وضع الرسم"]}},3350:e=>{e.exports={en:["stop syncing drawing"],ar:["إيقاف مزامنة الرسم"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],ar:["وقف أداة (أدوات) مزامنة الخط"]}},53278:e=>{e.exports={en:["symbol lock"],ar:["قفل الرمز"]}},91677:e=>{e.exports={en:["sync time"],ar:["وقت المزامنة"]}},3140:e=>{e.exports={en:["powered by"],ar:["مدعوم من"]}},92800:e=>{e.exports={en:["powered by TradingView"],ar:["بواسطة TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],ar:["لصق الرسم"]}},1064:e=>{e.exports={en:["paste indicator"],ar:["لصق مؤشر"]}},57010:e=>{e.exports={en:["paste {title}"],ar:["لصق {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],ar:["ثبت على المقياس الأيسر"]}},7495:e=>{e.exports={
|
||||
en:["pin to right scale"],ar:["ثبت إلى المقياس الأيمن"]}},81566:e=>{e.exports={en:["pin to scale {label}"],ar:["ثبت على المقياس {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],ar:["إعادة ترتيب الأجزاء"]}},60806:e=>{e.exports={en:["remove all indicators"],ar:["إزالة جميع المؤشرات"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],ar:["إزالة جميع المؤشرات وأدوات الرسم"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],ar:["إزالة أدوات الخط الفارغة غير المحددة"]}},30538:e=>{e.exports={en:["remove drawings"],ar:["حذف الرسومات"]}},1193:e=>{e.exports={en:["remove drawings group"],ar:["تغيير المنازل العشرية"]}},38199:e=>{e.exports={en:["remove line data sources"],ar:["إزالة مصادر خط البيانات"]}},93333:e=>{e.exports={en:["remove pane"],ar:["إزالة جزء"]}},94543:e=>{e.exports={en:["remove {title}"],ar:["إزالة {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],ar:["حذف مجموعة أدوات الخطوط {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],ar:["تغيير اسم المجموعة {group} إلى {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],ar:["إعادة تعيين أحجام التنسيق"]}},3323:e=>{e.exports={en:["reset scales"],ar:["إعادة تعيين المقاييس"]}},17336:e=>{e.exports={en:["reset time scale"],ar:["إعادة تعيين مقياس الزمن"]}},47418:e=>{e.exports={en:["resize layout"],ar:["تغيير حجم التنسيق"]}},85815:e=>{e.exports={en:["restore defaults"],ar:["استعادة الإعدادات الافتراضية"]}},96881:e=>{e.exports={en:["restore study defaults"],ar:["استعادة الإعدادات الافتراضية للدراسة"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],ar:["تبديل حالة اللوحة المكبرة"]}},42240:e=>{e.exports={en:["toggle auto scale"],ar:["تبديل المقياس التلقائي"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],ar:["تبديل حالة اللوحة المطوية"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],ar:["تبديل الفهرس إلى مقياس 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],ar:["تبديل قفل المقياس"]}},49403:e=>{e.exports={en:["toggle log scale"],ar:["تبديل المقياس اللوغاريتمي"]}},98994:e=>{e.exports={en:["toggle percentage scale"],ar:["تبديل مقياس النسبة المئوية"]}},80688:e=>{e.exports={en:["toggle regular scale"],ar:["تبديل المقياس العادي"]}},46807:e=>{e.exports={en:["track time"],ar:["وقت المسار"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],ar:["وقف تشغيل مشاركة أدوات الخط"]}},99234:e=>{e.exports={en:["unanchor objects"],ar:["عناصر غير مثبتة"]}},23230:e=>{e.exports={en:["unlock objects"],ar:["تحرير العنصر"]}},74590:e=>{e.exports={en:["unlock group {group}"],ar:["فتح المجموعة {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],ar:["تحرير {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],ar:["إلغاء الاندماج في الجزء السفلي الجديد"]}},79443:e=>{e.exports={en:["unmerge up"],ar:["فصل"]}},46453:e=>{e.exports={en:["unmerge down"],ar:["إلغاء الدمج لأسفل"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],
|
||||
ar:["نوع رسم {chartStyle} غير متاح حاليًا للفواصل الزمنية القائمة على التيك."]}},41643:e=>{e.exports={en:["{count} bars"],ar:["{count} أعمدة"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],ar:["{symbol} تم تفريغ القوائم المالية عن طريق TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],ar:["نشر {userName} على {customer} في {date}"]}},91084:e=>{e.exports={en:["zoom"],ar:["تكبير"]}},49856:e=>{e.exports={en:["zoom in"],ar:["تكبير"]}},73638:e=>{e.exports={en:["zoom out"],ar:["تصغير"]}},41807:e=>{e.exports={en:["day","days"],ar:["يوم","يوم","يومين","أيام","يوم","يوم"]}},42328:e=>{e.exports={en:["hour","hours"],ar:["ساعة","ساعة","ساعة","ساعات","ساعة","ساعة"]}},98393:e=>{e.exports={en:["month","months"],ar:["شهر","شهر","شهر","أشهر","شهرًا","شهرًا"]}},78318:e=>{e.exports={en:["minute","minutes"],ar:["دقيقة","دقيقة","دقيقتين","دقائق","دقيقة","دقيقة"]}},33232:e=>{e.exports={en:["second","seconds"],ar:["ثانية","ثانية","ثانيتان","ثوان","ثانية","ثانية"]}},89937:e=>{e.exports={en:["range","ranges"],ar:["نطاق","نطاق","نطاق","نطاقات","نطاق","نطاق"]}},48898:e=>{e.exports={en:["week","weeks"],ar:["أسبوع","أسبوع","أسبوعين","أسابيع","أسبوع","أسبوع"]}},11913:e=>{e.exports={en:["tick","ticks"],ar:["تيك","تيك","تيك","تيك","تيك","تيك"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],ar:["{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم ","{amount} من الرسوم "]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],ar:["{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات","{amount} من المؤشرات"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],ar:["{count}ش","{count}ش","{count}ش","{count}ش","{count}ش","{count}ش"]}},47801:e=>{e.exports={en:["{count}d","{count}d"],ar:["{count}ي","{count}ي","{count}ي","{count}ي","{count}ي","{count}ي"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],ar:["{count}س","{count}س","{count}س","{count}س","{count}س","{count}س"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],ar:["صناديق مؤشرات سندات الخزانة قصيرة الأجل Schwab"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"],ar:["صندوق مؤشرات أسهم الشركات الأعلى عائد من 0 إلى 5 سنوات"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],ar:["مؤشر S&P/ASX للأسهم الاسترالية 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],ar:["مؤشر S&P/ASX للأسهم الاسترالية 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],ar:["مؤشر S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],ar:["دولار أسترالي/ دولار كندي"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],
|
||||
ar:["دولار أسترالي/ فرنك سويسري"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],ar:["دولار أسترالي/ ين ياباني"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],ar:["دولار أسترالي/ دولار نيوزلاندي"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],ar:["دولار أسترالي/ روبل روسي"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],ar:["دولار أسترالي/ دولار أمريكي"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],ar:["مؤشر S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"],ar:["بيتكوين كاش / يورو"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],ar:["بيتكوين كاش/ دولار أمريكي"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],ar:["مؤشر BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],ar:["مؤشر بورصة استانبول 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],ar:["بيتكون / مؤشر الدولار الأمريكي"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],ar:["مؤشر IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],ar:["مؤشر Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],ar:["مؤشر IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],ar:["مؤشر Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"],ar:["شركة فورد للسيارات"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],ar:["مؤشر S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],ar:["ريال برازيلي/ ين ياباني"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],ar:["مؤشر S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],ar:["بتكوين / دولار كندي"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],ar:["بتكوين/ يوان صيني"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],ar:["بتكوين/ يورو"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],ar:["بتكوين/ وون كوري جنوبي"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],ar:["بيتكوين / روبل روسي"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],ar:["بيتكوين / بات تايلندي"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],ar:["بتكوين/ دولار أمريكي"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],
|
||||
ar:["بيتكوين جولد / دولار أمريكي"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],ar:["مؤشر بيرو العام S&P / BVL (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],ar:["مؤشر بورصة الأوراق المالية بساو باولو"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],ar:["دولار كندي/ ين ياباني"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],ar:["الدولار الكندي/الدولار الأمريكي"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],ar:["مؤشر S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],ar:["مؤشر تقلب S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],ar:["العقود الآجلة لسندات الخزينة"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],ar:["العقود الآجلة للذرة"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],ar:["العقود الآجلة لوجبة فول الصويا"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],ar:["العقود الآجلة لسندات الخزينة لأجل 10 سنوات"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],ar:["العقود الآجلة للشوفان"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],ar:["العقود الآجلة للفائدة الفديرالية 30 يوم"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],ar:["العقود الآجلة للأرز"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],ar:["عقود الآجلة لفول الصويا"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],ar:["عقود القمح الآجلة"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],ar:["عقود Mini الآجلة لفول الصويا"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],ar:["عقود Mini الآجلة للقمح"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],ar:["عقود داو جونز 30 الاجلة E-MINI ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],ar:["فرنك سويسري/ ين ياباني"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],ar:["الفرنك السويسري/الدولار الأمريكي"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],ar:["العقود الآجلة للبيتكوين CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],ar:["العقود الآجلة-النقدية للزبدة (مستمرة: العقد الحالي الأمامي)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],ar:["العقود الآجلة للماشية المغذية"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],ar:["العقود الآجلة للحم الخنزير خالي الدهن Lean Hogs"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],ar:["العقود الآجلة للماشية الحية"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],ar:["عقود E-mini الآجلة لليورو"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],ar:["عقود E-mini الآجلة لـ S&P 500"]},
|
||||
e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],ar:["عقود E-mini آجلة للين الياباني"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],ar:["عقود NASDAQ 100 E-MINI الآجلة"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],ar:["العقود الآجلة لمؤشر E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],ar:["العقود الآجلة للألومينوم الأوروبي Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],ar:["العقود الآجلة للألومينيوم MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],ar:["العقود الآجلة للذهب"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],ar:["عقود النحاس الآجلة"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],ar:["العقود الآجلة للفضة"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],ar:["عقود E-mini الآجلة للنحاس"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],ar:["عقود (Mini) الآجلة للفضة"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],ar:["عقود (Mini) الآجلة للذهب"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],ar:["عقود الفروقات السعرية للنحاس"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],ar:["عقود الفروقات السعرية للذرة"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],ar:["عقود الفروقات السعرية للقطن"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],ar:["إجمالي القيمة السوقية للعملات الرقمية بالدولار الأمريكي"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],ar:["مؤشر DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],ar:["مؤشر متوسط داو جونز المركب"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],ar:["مؤشر داو جونز للسلع - العنصر الزراعي المغطى"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],ar:["مؤشر داو جونز للسلع - كاكاو"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],ar:["مؤشر داو جونز للسلع - الطاقة"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],ar:["مؤشر داو جونز للسلع - ذهب"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],ar:["مؤشر داو جونز للسلع - حبوب"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],ar:["مؤشر داو جونز للسلع - نيكل"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],ar:["مؤشر داو جونز للسلع - البن"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],ar:["مؤشر داو جونز للسلع - السكر"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],ar:["مؤشر داو جونز للسلع - فضة"]},
|
||||
e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["مؤشر متوسط داو جونز الصناعي"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],ar:["مؤشر متوسط داو جونز للنقل"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],ar:["مؤشر متوسط داو جونز الخدمي"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],ar:["مؤشر داو جونز للفحم في الولايات المتحدة"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],ar:["مؤشر EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],ar:["ايثيريوم كلاسيك/بيتكوين"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"],ar:["إيثريوم كلاسيك / يورو"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],ar:["ايثيريوم كلاسيك/دولار أمريكي"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"],ar:["إيثيريوم/بيتكوين"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"],ar:["الإيثيريوم / يورو"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],ar:["الإيثيريوم / جنيه بريطاني"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],ar:["الإيثيريوم / ين ياباني"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],ar:["إيثيريوم / وون كوريا الجنوبية"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],ar:["إيثيريوم / البات التايلندي"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],ar:["اثيريوم/دولار أمريكي"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],ar:["سند دين باليورو"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],ar:["يورو / دولار أسترالي"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],ar:["يورو/ ريال برازيلي"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],ar:["يورو / دولار كندي"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],ar:["يورو / فرنك سويسرى"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],ar:["يورو / جنيه إسترليني"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],ar:["يورو / ين يابانى"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],ar:["يورو / كرونا نرويجي"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],ar:["يورو / دولار نيوزيلاندى"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],ar:["مؤشر AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],ar:["مؤشر BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],ar:["مؤشر CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],ar:["يورو/ روبل روسي"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],ar:["يورو / روبل روسي"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],ar:["يورو / كورونة سويدية"]},e.exports["#EURTRY-symbol-description"]={
|
||||
en:["Euro / Turkish Lira"],ar:["يورو / ليره تركية"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],ar:["يورو / دولار أمريكى"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],ar:["مؤشر يورو ستوكس 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"],ar:["US SmallCap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],ar:["مؤشر كاك 40 CAC"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],ar:["الناتج المحلي الإجمالي، مقرب لأقرب علامة عشرية واحدة"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],ar:["إجمالي تعداد السكان: تشمل جميع الأعمار والقوات المسلحة في الخارج"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],ar:["معدل البطالة المدنية"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],ar:["مؤشر FTSE بورصة ماليزيا KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."],ar:["شركة كي ترونيك."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],ar:["مؤشر S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["متوسط مؤشر داو جونز الصناعي"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],ar:["جنيه إسترليني / دولار أسترالي"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],ar:["جنيه إسترليني / دولار كندي"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],ar:["جنيه إسترليني / فرنك سويسري"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],ar:["جنيه إسترليني / يورو"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],ar:["جنيه إسترليني / ين ياباني"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],ar:["جنيه إسترليني / دولار نيوزيلندي"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],ar:["جنيه بريطاني / زلوتي بولندي"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],ar:["جنيه إسترليني / روبل روسي"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],ar:["جنيه إسترليني / دولار أمريكي"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],ar:["مؤشر داكس"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],ar:["ألفابيت إنك (جوجل) فئة C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],ar:["شركة ألفابت (شركة جوجل) الفئة أ"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],ar:["مؤشر بورصة وارسو 20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],ar:["مؤشر هانج سينج Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],ar:["العقود الآجلة لمؤشر الدولار الأمريكي"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],
|
||||
ar:["مؤشر IDX المركب"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],ar:["مؤشر الشركات الصينية هانغ سنغ"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],ar:["مؤشر جاكارتا المركب"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],ar:["مؤشر KLCI الماليزي"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],ar:["مؤشر MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],ar:["مؤشر Euro Stoxx 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],ar:["مؤشر بورصة سينغافورة"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],ar:["مؤشر تايوان المرجح"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],ar:["مؤشر شنغاهاي المركب"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],ar:["يوتا / دولار أمريكي"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],ar:["مؤشر Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],ar:["ين ياباني / وون كورى"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],ar:["ين ياباني / روبل روسي"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],ar:["الين الياباني/الدولار الأمريكي"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"],ar:["شركة لوك أويل"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],ar:["لايتكوين / ريال برازيلي"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],ar:["لايتكوين / بيتكوين"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],ar:["لايتكوين/دولار"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],ar:["لونا / الدولار الأمريكي"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],ar:["العقود الآجلة للنفط خام برنت"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],ar:["مؤشر أسعار الأسهم في بورصة موسكو"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],ar:["مؤشر بورصة موسكو"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],ar:["العقود الآجلة لمؤشر MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],ar:["عقود مؤشر بورصة موسكو الآجلة"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],ar:["العقود الآجلة لمؤشر RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],ar:["مؤشر نظام التداول الروسي RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"],ar:["شركة روسال المتحدة العمومية المحدودة"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"],ar:["بنك SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],
|
||||
ar:["Microsoft شركة مايكروسوفت"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],ar:["مؤشر ناسداك 100 CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"],ar:["شركة Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],ar:["Alphabet Inc (Google) الفئة C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],ar:["Alphabet Inc (Google) الفئة A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],ar:["مؤشر PHLX لقطاع الإسكان"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],ar:["عقود صناديق تداول المؤشرات لسندات الخزينة لأجل 7-10 سنوات"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],ar:["صناديق مؤشرات سندات الخزانة 3-7 سنوات Ishares"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],ar:["مؤشر ناسداك المركب"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."],ar:["لوسيد موتور"]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],ar:["مؤشر ناسداك 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],ar:["مؤشر PHLX لقطاع خدمات النفط"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],ar:["صناديق مؤشرات سندات الخزانة 1-3 سنوات Ishares"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],ar:["مؤشر فيلادلفيا لأشباه الموصلات"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],ar:["صناديق مؤشرات سندات الخزانة أكثر من 20 سنة Ishares"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],ar:["مؤشر PHLX للقطاع الخدمي"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],ar:["مؤشر PHLX لقطاع الذهب والفضة"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"],ar:["سهم شركة زسكلار"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],ar:["نيو / دولار أمريكي"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],ar:["غاز طبيعى (خطوط أنابيب هنري هاب)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],ar:["مؤشر Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],ar:["مؤشر Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],ar:["العقود الآجلة للإيثانول NY Ethanol"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],ar:["عقود الكاكاو الآجلة"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],ar:["عقود خام النفط الخفيف الآجلة"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],
|
||||
ar:["العقود الآجلة للديزل منخفض الكبريت NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],ar:["عقود القهوة الآجلة"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],ar:["عقود الغاز الطبيعي الآجلة"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],ar:["العقود الآجلة للبلاديوم"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],ar:["العقود الآجلة للبلاتين"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],ar:["العقود الآجلة للغاز الطبيعي RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],ar:["عقود القطن الآجلة"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],ar:["عقود E-mini الآجلة للغاز الطبيعي"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],ar:["عقود E-mini الآجلة لخام النفط الخفيف"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],ar:["عقود E-mini الآجلة للجازولين"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],ar:["مجموعة علي بابا القابضة المحدودة"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],ar:["مؤشر NYSE المركب"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],ar:["مؤشر AMEX المركب"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],ar:["مؤشر السوق الرئيسي NYSE ARCA"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],ar:["دولار نيوزيلندي / ين ياباني"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],ar:["دولار نيوزيلندي / دولار أمريكي"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],ar:["المؤشر الشامل للسوق النيوزيلاندي S&P/NZX"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],ar:["مؤشر S & P / NZX 50 الإجمالي"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],ar:["الغاز الطبيعي"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],ar:["مؤشر ستاندرد أند بورز S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],ar:["نحاس"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],ar:["مؤشر كوبنهاجن OMX 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],ar:["مؤشر OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],ar:["مؤشر OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],ar:["مؤشر OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],
|
||||
ar:["مؤشر OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],ar:["مؤشر OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"],ar:["صندوق مؤشرات الأسهم اليابانية"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],ar:["مؤشر QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],ar:["مؤشر RTS الروسي"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],ar:["مؤشر Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],ar:["مؤشر Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],ar:["مؤشر Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],ar:["شركة الاتصالات العالمية العامة"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"],ar:["شركة فورد للسيارات"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],ar:["مؤشر السوق السويسري"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],ar:["سولانا / الدولار الأمريكي"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],ar:["عقود الفروقات السعرية لفول الصويا"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],ar:["مؤشر S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],ar:["مؤشر S&P جولدمان ساكس للسلع"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],ar:["ستاندرد أند بورز 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],ar:["مؤشر قيمة S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],ar:["مؤشر ستاندرد آند بورز 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],ar:["عقود الفروقات السعرية للسكر"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],ar:["مؤشر Shenzhen"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."],ar:["سهم مسك تداول"]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],ar:["مؤشر تداول السعودي لجميع الأسهم"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],ar:["مؤشر TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],ar:["مؤشر S&P/TSX المركب"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],ar:["صناديق مؤشرات بورصة باريس S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],ar:["السندات الحكومية الاسترالية 10 سنوات"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الاسترالية 10 سنوات"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],ar:["مؤشر الدولار الأسترالي"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],ar:["مؤشر الجنيه البريطاني"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],ar:["سندات الحكومة الكندية لـ10 سنوات"]},
|
||||
e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة الكندية لـ10 سنوات"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],ar:["مؤشر كاك 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],ar:["السندات الحكومية الصينية 10 سنوات"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الصينية 10 سنوات"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],ar:["مؤشر الدولار الكندي"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],ar:["السندات الحكومية الألمانية 10 سنوات"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الألمانية 10 سنوات"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],ar:["مؤشر داكس"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["مؤشر داو جونز التصنيعي"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],ar:["موشر الدولار الأمريكي"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],ar:["السندات الحكومية الإسبانية لأجل 10 سنوات"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الإسبانية لأجل 10 سنوات"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"],ar:["سندات اليورو"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],ar:["مؤشر اليورو"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],ar:["السندات الحكومية الفرنسية 10 سنوات"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الفرنسية 10 سنوات"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],ar:["السندات الحكومية البريطانية لأجل سنتين"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],ar:["السندات الحكومية البريطانية لأجل 10 سنوات"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية البريطانية لأجل 10 سنوات"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],ar:["الذهب (دولار أمريكي/أونصة)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],ar:["مؤشر Hang Seng للشركات الصينية"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],ar:["مؤشر IBEX 35 الإسباني"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],ar:["السندات الحكومية الإندونيسية 3 سنوات"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],ar:["السندات الحكومية الإندونيسية 10 سنوات"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة الأندونيسية لـ10 سنوات"]},e.exports["#TVC:IN10-symbol-description"]={
|
||||
en:["India Government Bonds 10 YR"],ar:["السندات الحكومية الهندية 10 سنوات"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],ar:["عوائد سندات الحكومه الهنديه لـ 10 سنوات"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],ar:["السندات الحكومية الإيطالية 10 سنوات"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],ar:["عوائد سندات الحكومه الإيطالية لأجل 10 سنوات"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],ar:["مؤشر الولايات المتحدة المركب"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],ar:["السندات الحكومية اليابانبة 10 سنوات"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],ar:["عوائد سندات الحكومة اليابانية لـ 10 سنوت"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],ar:["مؤشر الين الياباني"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],ar:["مؤشر أسعار الأسهم المركب في كوريا"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],ar:["السندات الحكومية الكورية 10 سنوات"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الكورية 10 سنوات"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],ar:["السندات الحكومية الماليزية لأجل 10 سنوات"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الماليزية لأجل 10 سنوات"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],ar:["مؤشر ناسداك 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],ar:["مؤشر Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],ar:["سندات الحكومة الهولندية لـ10 سنوات"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة الهولندية لـ10 سنوات"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],ar:["مؤشر NYSE المركب"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],ar:["سندات الحكومة النيوزلندية لـ10 سنوات"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],ar:["عائد سندات الحكومة النيوزلندية لـ10 سنوات"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],ar:["البلاديوم (دولار أمريكي/أونصة)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],ar:["عوائد السندات الحكومية البولندية لأجل 5 سنوات"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية البولندية لأجل 10 سنوات"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],ar:["عقود الفروقات السعرية للبلاتين (دولار أمريكي/أونصة)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],
|
||||
ar:["السندات الحكومية البرتغالية 10 سنوات"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية البرتغالية 10 سنوات"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],ar:["مؤشر Top 40 جنوب أفريقيا"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],ar:["الفضة (دولا أمريكي/أونصة)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],ar:["ستاندرد أند بورز 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],ar:["مؤشر السوق السويسري"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],ar:["مؤشر Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],ar:["مؤشر Euro Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],ar:["مؤشر الفرنك السويسري"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],ar:["السندات الحكومية التركية 10 سنوات"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية التركية أجل 10 سنوات"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],ar:["عقود الفروقات لنفط خام برنت"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],ar:["السندات الحكومية الأمريكية لأجل سنتين"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],ar:["عوائد السندات الحكومية الأمريكية لأجل سنتان"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],ar:["السندات الحكومية الأمريكية 5 سنوات"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],ar:["عوائد السندات الحكومية الأمريكية لأجل 5 سنوات"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],ar:["السندات الحكومية الأمريكية 10 سنوات"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],ar:["عوائد السندات الحكومية الأمريكية لأجل 10 سنوات"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],ar:["سندات الخدانة الحكومية لأجل 30 سنة"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],ar:["عقود الفروقات السعرية للنفط الخام WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],ar:["مؤشر تّقلب S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],ar:["مؤشر عملة الدولار النيوزيلاندي"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],ar:["مؤشر بورصة تايوان المرجح"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],ar:["مؤشر رأس المال المرجعي في تايوان"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],ar:["شركة تويتر"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],ar:["مؤشر فوتسي 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],
|
||||
ar:["عقود الفروقات السعرية للنفط (خام برنت)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],ar:["Uniswap / الدولار الأمريكي"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],ar:["مؤشر متوسط داو جونز الصناعي"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],ar:["الدولار الأمريكي/الدولار الأسترالي"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],ar:["دولار أمريكي / ريال برازيلي"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],ar:["دولار أمريكي / دولار كندي"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],ar:["دولار أمريكي / فرنك سويسري"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],ar:["دولار أمريكي / يوان صيني"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],ar:["دولار أمريكي / كورونا دنماركية"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],ar:["الدولار الأمريكي/اليورو"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],ar:["الدولار الأمريكي/الجنيه البريطاني"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],ar:["دولار أمريكي / دولار هونج كونج"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],ar:["دولار أمريكي / فورنت مجري"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],ar:["دولار أمريكي / روبية"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],ar:["الدولار الأمريكي / الشيكل الإسرائيلي"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],ar:["دولار أمريكي / روبية هندية"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],ar:["دولار أمريكي / ين ياباني"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],ar:["دولار أمريكي / وون كوري"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],ar:["دولار أمريكي / بيزو مكسيكي"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],ar:["الدولار الأمريكي/الدولار النيوزيلاندي"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],ar:["دولار أمريكي / بيزو مكسيكي"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],ar:["دولار أمريكي / زلوتى بولندي"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],ar:["دولار أمريكي / روبل روسي"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],ar:["دولار أمريكي / روبل روسي غدا"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],ar:["دولار أمريكي / كورونا سويدية"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],ar:["دولار أمريكي / دولار سنغافوري"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],ar:["دولار أمريكي / بات تايلندي"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],
|
||||
ar:["دولار أمريكي / ليرة تركية"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],ar:["الدولار الأمريكي / الراند الجنوب إفريقي"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],ar:["عقود الفروقات السعرية للنفط الخام (WTI )"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],ar:["عقود الفروقات السعرية للقمح"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],ar:["دولار أمريكي / معدن الفضة"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],ar:["الذهب / دولار أمريكي"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],ar:["بيتكوين/دولار كندي"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],ar:["مؤشر داكس"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],ar:["مونيرو / دولار أمريكي"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],ar:["عقود فروقات معدن البالاديوم"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],ar:["معدن البلاتين / دولار أمريكي"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],ar:["ريبيل / بيتكوين"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],ar:["ريبيل / يورو"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],ar:["ريبيل / دولار أمريكي"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],ar:["زد كاش / دولار أمريكي"]}}}]);
|
||||
@@ -1,7 +1,7 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],ar:["الأعمدة البيانية"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],ar:["(سعر الفتح + أعلى سعر+ أدنى سعر + سعر الإغلاق)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ar:["(أعلى سعر+ أدنى سعر + سعر الإغلاق)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ar:["(أعلى سعر + أدنى سعر)/2"]}},31882:e=>{e.exports={en:["12-hours"],ar:[" 12 ساعة"]}},5797:e=>{e.exports={en:["24-hours"],ar:["24 ساعة"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ar:["تلوين الأعمدة طبقًا للإغلاق السابق"]}},23739:e=>{e.exports={en:["Canvas"],ar:["لوحة"]}},24197:e=>{e.exports={en:["Center"],ar:["مركز"]}},15153:e=>{e.exports={en:["Chart basic styles"],ar:["أنماط الرسم البياني الأساسية"]}},45639:e=>{e.exports={en:["Chart values"],ar:["قيم الرسم البياني"]}},84831:e=>{e.exports={en:["Close line"],ar:["خط الإغلاق"]}},74622:e=>{e.exports={en:["Crosshair"],ar:["مؤشر التقاطع"]}},81849:e=>{e.exports={en:["Currency"],ar:["عملة"]}},3015:e=>{e.exports={en:["Currency and Unit"],ar:["العملة والوحدة"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ar:["تعديل البيانات لأرباح الأسهم"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ar:["ضبط لتغييرات العقود"]}},36620:e=>{e.exports={en:["Alerts"],ar:["تنبيهات"]}},14119:e=>{e.exports={en:["Arguments"],ar:["مدخلات"]}},68650:e=>{e.exports={en:["Average close"],ar:["متوسط الإغلاق"]}},27567:e=>{e.exports={en:["Bottom"],ar:["الأسفل"]}},3159:e=>{e.exports={en:["Bottom line"],ar:["الخط السفلي"]}},74406:e=>{e.exports={en:["Body"],ar:["الجزء الرئيسي"]}},333:e=>{e.exports={en:["Borders"],ar:["إطارات"]}},79468:e=>{e.exports={en:["Background"],ar:["الخلفية"]}},10842:e=>{e.exports={en:["Bar change values"],ar:["قيمة التغير للعمود"]}},28975:e=>{e.exports={en:["Base level"],ar:["مستوى الأساس"]}},76473:e=>{e.exports={en:["Bid and ask"],ar:["سعر البيع والشراء"]}},32744:e=>{e.exports={en:["Buttons"],ar:["أزرار"]}},68662:e=>{e.exports={en:["Grid lines"],ar:["خطوط الشبكة"]}},17611:e=>{e.exports={en:["Down bars"],ar:["الشموع الهابطة"]}},23743:e=>{e.exports={en:["Down color"],ar:["لون الإنخفاض"]}},48225:e=>{e.exports={en:["Data modification"],ar:["تعديل البيانات"]}},84838:e=>{e.exports={en:["Date format"],ar:["تنسيق التاريخ"]}},42357:e=>{e.exports={en:["Day of week on labels"],ar:["يوم الأسبوع على الملصقات"]}},16564:e=>{e.exports={en:["Default"],ar:["افتراضي"]}},78734:e=>{e.exports={en:["Description"],ar:["الوصف"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],ar:["خلفية ساعات التداول الإلكترونية"]}},69808:e=>{e.exports={en:["Events"],ar:["أحداث"]}},41129:e=>{e.exports={en:["Fill"],ar:["ملئ"]}},61112:e=>{e.exports={en:["Fill top area"],ar:["إملئ المنطقة العلوية"]}},73185:e=>{e.exports={en:["Fill bottom area"],ar:["ملء المنطقة السفلية"]}},886:e=>{e.exports={en:["HLC bars"],ar:["أعمدة (الأعلى - الأدنى - الإغلاق)"]}},95406:e=>{e.exports={en:["Horizontal"],ar:["أفقي"]}},61900:e=>{e.exports={en:["Horz only"],ar:["أفقي فقط"]}},14180:e=>{e.exports={en:["High and low"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],ar:["الأعمدة البيانية"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],ar:["(سعر الفتح + أعلى سعر+ أدنى سعر + سعر الإغلاق)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ar:["(أعلى سعر+ أدنى سعر + سعر الإغلاق)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ar:["(أعلى سعر + أدنى سعر)/2"]}},31882:e=>{e.exports={en:["12-hours"],ar:[" 12 ساعة"]}},5797:e=>{e.exports={en:["24-hours"],ar:["24 ساعة"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ar:["تلوين الأعمدة طبقًا للإغلاق السابق"]}},23739:e=>{e.exports={en:["Canvas"],ar:["لوحة"]}},24197:e=>{e.exports={en:["Center"],ar:["مركز"]}},15153:e=>{e.exports={en:["Chart basic styles"],ar:["أنماط الرسم البياني الأساسية"]}},45639:e=>{e.exports={en:["Chart values"],ar:["قيم الرسم البياني"]}},84831:e=>{e.exports={en:["Close line"],ar:["خط الإغلاق"]}},74622:e=>{e.exports={en:["Crosshair"],ar:["مؤشر التقاطع"]}},81849:e=>{e.exports={en:["Currency"],ar:["عملة"]}},3015:e=>{e.exports={en:["Currency and Unit"],ar:["العملة والوحدة"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ar:["تعديل البيانات لأرباح الأسهم"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ar:["ضبط لتغييرات العقود"]}},36620:e=>{e.exports={en:["Alerts"],ar:["تنبيهات"]}},14119:e=>{e.exports={en:["Arguments"],ar:["مدخلات"]}},68650:e=>{e.exports={en:["Average close"],ar:["متوسط الإغلاق"]}},27567:e=>{e.exports={en:["Bottom"],ar:["الأسفل"]}},3159:e=>{e.exports={en:["Bottom line"],ar:["الخط السفلي"]}},74406:e=>{e.exports={en:["Body"],ar:["الجزء الرئيسي"]}},333:e=>{e.exports={en:["Borders"],ar:["إطارات"]}},79468:e=>{e.exports={en:["Background"],ar:["الخلفية"]}},10842:e=>{e.exports={en:["Bar change values"],ar:["قيمة التغير للعمود"]}},28975:e=>{e.exports={en:["Base level"],ar:["مستوى الأساس"]}},76473:e=>{e.exports={en:["Bid and ask"],ar:["سعر البيع والشراء"]}},32744:e=>{e.exports={en:["Buttons"],ar:["أزرار"]}},68662:e=>{e.exports={en:["Grid lines"],ar:["خطوط الشبكة"]}},17611:e=>{e.exports={en:["Down bars"],ar:["الشموع الهابطة"]}},23743:e=>{e.exports={en:["Down color"],ar:["لون الإنخفاض"]}},48225:e=>{e.exports={en:["Data modification"],ar:["تعديل البيانات"]}},84838:e=>{e.exports={en:["Date format"],ar:["تنسيق التاريخ"]}},42357:e=>{e.exports={en:["Day of week on labels"],ar:["يوم الأسبوع على الملصقات"]}},16564:e=>{e.exports={en:["Default"],ar:["افتراضي"]}},78734:e=>{e.exports={en:["Description"],ar:["الوصف"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],ar:["خلفية ساعات التداول الإلكترونية"]}},69808:e=>{e.exports={en:["Events"],ar:["أحداث"]}},41129:e=>{e.exports={en:["Fill"],ar:["ملئ"]}},61112:e=>{e.exports={en:["Fill top area"],ar:["إملئ المنطقة العلوية"]}},73185:e=>{e.exports={en:["Fill bottom area"],ar:["ملء المنطقة السفلية"]}},95406:e=>{e.exports={en:["Horizontal"],ar:["أفقي"]}},61900:e=>{e.exports={en:["Horz only"],ar:["أفقي فقط"]}},14180:e=>{e.exports={en:["High and low"],
|
||||
ar:["أعلى وأدنى"]}},56359:e=>{e.exports={en:["High line"],ar:["خط أعلى مستوى"]}},47326:e=>{e.exports={en:["Integer"],ar:["عدد صحيح"]}},84549:e=>{e.exports={en:["Indicators"],ar:["مؤشرات"]}},78082:e=>{e.exports={en:["Indicators and financials"],ar:["المؤشرات والبيانات المالية"]}},25765:e=>{e.exports={en:["Open market status"],ar:["حالة الأسواق المفتوحة"]}},34579:e=>{e.exports={en:["Low line"],ar:["خط أدنى مستوى"]}},14876:e=>{e.exports={en:["Logo"],ar:["الشعار"]}},89315:e=>{e.exports={en:["Long Description"],ar:["وصف مطوّل"]}},72423:e=>{e.exports={en:["Last day change values"],ar:["قيم تغيير اليوم الأخير"]}},11626:e=>{e.exports={en:["Left"],ar:["يسار"]}},8249:e=>{e.exports={en:["Money"],ar:["أموال"]}},70937:e=>{e.exports={en:["Margins"],ar:["هوامش"]}},68833:e=>{e.exports={en:["Middle"],ar:["وسط"]}},58589:e=>{e.exports={en:["No overlapping labels"],ar:["بدون ملصقات متداخلة"]}},60798:e=>{e.exports={en:["None"],ar:["لا شيء"]}},51019:e=>{e.exports={en:["Navigation"],ar:["تنقل"]}},99709:e=>{e.exports={en:["Name"],ar:["الاسم"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],ar:["احفظ موضع الحافة اليسرى للمخطط عند تغيير الفاصل الزمني"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],ar:["أوضاع المقياس (A و L)"]}},93968:e=>{e.exports={en:["Scales"],ar:["المقاييس"]}},90275:e=>{e.exports={en:["Scales and lines"],ar:["المقاييس والخطوط"]}},30042:e=>{e.exports={en:["Scales placement"],ar:["وضع المقاييس"]}},28715:e=>{e.exports={en:["Status line"],ar:["خط الحالة"]}},95481:e=>{e.exports={en:["Symbol"],ar:["رمز"]}},53263:e=>{e.exports={en:["Pane"],ar:["جزء"]}},82894:e=>{e.exports={en:["Pane separators"],ar:["فواصل الأجزاء"]}},16207:e=>{e.exports={en:["Percentage"],ar:["نسبة مئوية"]}},94408:e=>{e.exports={en:["Pips"],ar:["نقاط"]}},60904:e=>{e.exports={en:["Pre/post market"],ar:["ما قبل/بعد الجلسة"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ar:["خلفية ما قبل/بعد الجلسة"]}},59766:e=>{e.exports={en:["Precision"],ar:["الدقة"]}},83811:e=>{e.exports={en:["Previous day close"],ar:["إغلاق اليوم السابق"]}},35082:e=>{e.exports={en:["Price Scale"],ar:["مقياس الأسعار"]}},27632:e=>{e.exports={en:["Price and percentage value"],ar:["السعر وقيمة النسبة المئوية"]}},62142:e=>{e.exports={en:["Price labels & lines"],ar:["ملصقات وخطوط الأسعار"]}},84684:e=>{e.exports={en:["Price source"],ar:["مصدر السعر"]}},73466:e=>{e.exports={en:["Projection up bars"],ar:["إسقاط الأعمدة الصاعدة"]}},77430:e=>{e.exports={en:["Projection candles"],ar:["شموع الإسقاط"]}},88367:e=>{e.exports={en:["Projection down bars"],ar:["إسقاط الأعمدة الهابطة"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ar:["عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},50421:e=>{e.exports={en:["Right"],ar:["يمين"]}},62532:e=>{e.exports={en:["Right Margin"],ar:["الهامش الأيمن"]}},41571:e=>{e.exports={en:["Watermark"],ar:["علامة مائية"]}},32163:e=>{e.exports={en:["Wick"],ar:["ظل الشمعة"]}},97118:e=>{e.exports={en:["Top"],ar:["الأعلى"]}},89349:e=>{e.exports={en:["Top line"],
|
||||
ar:["الخط العلوي"]}},70320:e=>{e.exports={en:["Text"],ar:["النص"]}},25485:e=>{e.exports={en:["Text alignment"],ar:["محاذاة النص"]}},67781:e=>{e.exports={en:["Text orientation"],ar:["اتجاه النص"]}},20215:e=>{e.exports={en:["Thin bars"],ar:["أعمدة نحيفة"]}},70198:e=>{e.exports={en:["Title"],ar:["عنوان"]}},29854:e=>{e.exports={en:["Titles"],ar:["العناوين"]}},5791:e=>{e.exports={en:["Ticker"],ar:["الرمز"]}},16816:e=>{e.exports={en:["Ticker and description"],ar:["الرمز والوصف"]}},24821:e=>{e.exports={en:["Ticks"],ar:["تيكات السعر"]}},93965:e=>{e.exports={en:["Time Scale"],ar:["مقياس الوقت"]}},5591:e=>{e.exports={en:["Time hours format"],ar:["تنسيق الساعات"]}},77073:e=>{e.exports={en:["Timezone"],ar:["توقيت"]}},76495:e=>{e.exports={en:["Trading"],ar:["تداول"]}},33564:e=>{e.exports={en:["Unit"],ar:["وحدة"]}},23091:e=>{e.exports={en:["Up color"],ar:["لون الإرتفاع"]}},36957:e=>{e.exports={en:["Up bars"],ar:["الشموع الصاعدة"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ar:["استخدم التسوية في أقرب وقت على الفاصل الزمني اليومي"]}},37644:e=>{e.exports={en:["Volume"],ar:["حجم التداول"]}},51514:e=>{e.exports={en:["Value"],ar:["قيمة"]}},31218:e=>{e.exports={en:["Value according to scale"],ar:["القيمة حسب المقياس"]}},60092:e=>{e.exports={en:["Values"],ar:["القِيم"]}},83594:e=>{e.exports={en:["Vert and horz"],ar:["عمودي وأفقي"]}},8402:e=>{e.exports={en:["Vert only"],ar:["عمودي فقط"]}},69526:e=>{e.exports={en:["Vertical"],ar:["عمودي"]}},21105:e=>{e.exports={en:["candle"],ar:["شمعة"]}},27068:e=>{e.exports={en:["change HLC bars"],ar:["تغيير أعمدة HLC"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],ar:["تغيير وضوح أزرار التنقل"]}},96227:e=>{e.exports={en:["change open market status visibility"],ar:["تغيير وضوح حالة السوق المفتوحة"]}},43231:e=>{e.exports={en:["change average close price line width"],ar:["تغيير عرض خط متوسط سعر الإغلاق"]}},47026:e=>{e.exports={en:["change average close price line color"],ar:["تغيير لون خط متوسط سعر الإغلاق"]}},86866:e=>{e.exports={en:["change area fill color"],ar:["تغيير لون المنطقة"]}},89346:e=>{e.exports={en:["change area line width"],ar:["تغيير عرض خط المنطقة"]}},29605:e=>{e.exports={en:["change area line color"],ar:["تغيير لون خطوط المنطقة"]}},4640:e=>{e.exports={en:["change area price source"],ar:["تغيير مصدر سعر المنطقة"]}},98407:e=>{e.exports={en:["change ask line color"],ar:["تغيير لون خط سعر الشراء"]}},42190:e=>{e.exports={en:["change base level"],ar:["تغيير مستوى الأساس"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ar:["تغيير لون قاع خط الأساس"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ar:["تغيير لون قاع خط الأساس"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ar:["تغيير لون المنطقة السفلية لخط الأساس"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ar:["تغيير لون المنطقة العليا لخط الأساس"]}},68609:e=>{e.exports={en:["change baseline price source"],ar:["تغيير مصدر السعر الأساسي"]}},69044:e=>{e.exports={en:["change baseline top line color"],
|
||||
ar:["تغيير لون خطوط خط الأساس"]}},68197:e=>{e.exports={en:["change baseline top line width"],ar:["تغيير عرض أعلى الخط الأساسي"]}},33464:e=>{e.exports={en:["change bar up color"],ar:["تغيير لون العمود الصاعد"]}},27426:e=>{e.exports={en:["change bar change visibility"],ar:["تغيير وضوح تغييرات الأعمدة"]}},59622:e=>{e.exports={en:["change bar down color"],ar:["تغيير لون العمود الهابط"]}},17919:e=>{e.exports={en:["change bid line color"],ar:["تغيير لون خط سعر البيع"]}},32094:e=>{e.exports={en:["change bottom margin"],ar:["تغيير الهامش السفلي"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],ar:["تغيير وضوح وحدات الملصقات والعملة"]}},64003:e=>{e.exports={en:["change currency label visibility"],ar:["تغيير وضوح ملصقات العملة"]}},42803:e=>{e.exports={en:["change chart background color"],ar:["تغيير لون خلفية الرسم البياني"]}},41382:e=>{e.exports={en:["change chart background type"],ar:["تغيير نوع خلفية الرسم البياني"]}},79637:e=>{e.exports={en:["change chart values visibility"],ar:["تغيير رؤية قيم الرسم"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ar:["تغيير لون الأعمدة بناءً على الإغلاق السابق"]}},88324:e=>{e.exports={en:["change column up color"],ar:["تغيير لون الأعمدة الصاعد"]}},93890:e=>{e.exports={en:["change column down color"],ar:["تغيير لون الأعمدة الهابطة"]}},4727:e=>{e.exports={en:["change column price source"],ar:["تغيير مصدر سعر العمود"]}},50544:e=>{e.exports={en:["change crosshair width"],ar:["تغيير عرض التقاطع"]}},92885:e=>{e.exports={en:["change crosshair color"],ar:["تغيير لون التقاطع"]}},68418:e=>{e.exports={en:["change crosshair style"],ar:["تغيير نمط التقاطع"]}},43109:e=>{e.exports={en:["change date format"],ar:["تغيير تنسيق التاريخ"]}},30418:e=>{e.exports={en:["change day of week on labels"],ar:["يوم التغير من الأسبوع على الملصقات"]}},82063:e=>{e.exports={en:["change decimal places"],ar:["تغيير المنازل العشرية"]}},44223:e=>{e.exports={en:["change extended hours color"],ar:["تغيير لون الساعات الممددة"]}},47393:e=>{e.exports={en:["change electronic trading hours"],ar:["تغيير ساعات التداول الإلكترونية"]}},73844:e=>{e.exports={en:["change grid lines visibility"],ar:["تغيير وضوح خطوط الشبكة"]}},61407:e=>{e.exports={en:["change high and low price line color"],ar:["تغيير لون خط أعلى وأدنى سعر"]}},39581:e=>{e.exports={en:["change high and low price line width"],ar:["تغيير عرض خط أعلى وأدنى سعر"]}},6026:e=>{e.exports={en:["change high-low body color"],ar:["تغيير لون جسم أعلى-أدنى"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ar:["تغيير وضوح جسم أعلى-أدنى"]}},46844:e=>{e.exports={en:["change high-low border color"],ar:["تغيير لون حدود أعلى-أدنى"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ar:["تغيير وضوح حدود أعلى-أدنى"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ar:["تغيير وضوح ملصقات أعلى-أدنى"]}},56961:e=>{e.exports={en:["change high-low labels color"],ar:["تغيير لون ملصقات أعلى-أدنى"]}},21133:e=>{e.exports={en:["change horz grid lines color"],ar:["تغيير لون خطوط الشبكة الأفقية"]}},63050:e=>{
|
||||
e.exports={en:["change indicator titles visibility"],ar:["تغيير وضوح عناوين المؤشر"]}},49583:e=>{e.exports={en:["change indicator values visibility"],ar:["تغيير وضوح قيم المؤشر"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],ar:["تغيير وضوح مدخلات المؤشر"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ar:["وضوح ملصقات تغير المؤشرات وأسماء البيانات المالية"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ar:["وضوح ملصقات تغير المؤشرات والبيانات المالية"]}},66307:e=>{e.exports={en:["change last day change visibility"],ar:["تغيير الرؤية في اليوم الأخير"]}},91873:e=>{e.exports={en:["change legend background transparency"],ar:["تغيير شفافية خلفية المفتاح التوضيحي"]}},14246:e=>{e.exports={en:["change legend background visibility"],ar:["تغيير وضوح خلفية المفتاح التوضيحي"]}},88640:e=>{e.exports={en:["change line color"],ar:["تغيير لون الخط"]}},41837:e=>{e.exports={en:["change line price source"],ar:["تغيير مصدر سعر الخط"]}},48339:e=>{e.exports={en:["change line width"],ar:["تغيير عرض الخط"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],ar:["تغيير وضوح أزرار الجزء"]}},52203:e=>{e.exports={en:["change pane separators color"],ar:["تغيير لون فواصل الجزء"]}},38730:e=>{e.exports={en:["change post market color"],ar:["تغيير لون ما بعد الجلسة"]}},28075:e=>{e.exports={en:["change post market line color"],ar:["تغيير لون خط ما بعد الجلسة"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ar:["تغيير وضوح خط أسعار ما قبل/بعد الجلسة"]}},44371:e=>{e.exports={en:["change pre market color"],ar:["تغيير لون ما قبل الجلسة"]}},96114:e=>{e.exports={en:["change pre market line color"],ar:["تغيير لون خط ما قبل الجلسة"]}},69814:e=>{e.exports={en:["change previous close price line color"],ar:["تغيير لون خط سعر الإغلاق السابق"]}},13660:e=>{e.exports={en:["change previous close price line width"],ar:["تغيير عرض خط سعر الإغلاق السابق"]}},87861:e=>{e.exports={en:["change price line color"],ar:["تغيير لون خطوط السعر"]}},29353:e=>{e.exports={en:["change price line width"],ar:["تغيير عرض خط السعر"]}},16241:e=>{e.exports={en:["change range bars style"],ar:["تغيير نمط أعمدة النطاق"]}},65821:e=>{e.exports={en:["change range thin bars"],ar:["تغيير نطاق الأعمدة الرقيقة"]}},75487:e=>{e.exports={en:["change renko wick down color"],ar:["تغيير لون ذيل رينكو الهابط"]}},92277:e=>{e.exports={en:["change renko wick up color"],ar:["تغيير لون ذيل الرينكو الصاعد"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ar:["تغيير وضوح ذيل الرينكو"]}},82946:e=>{e.exports={en:["change right margin"],ar:["تغيير الهامش الأيمن"]}},79545:e=>{e.exports={en:["change right margin percentage"],ar:["تغيير نسبة الهامش الأيمن"]}},78995:e=>{e.exports={en:["change symbol watermark color"],ar:["تغيير لون علامة الرمز"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],ar:["تغيير وضوح علامة الرمز"]}},88167:e=>{e.exports={en:["change symbol description visibility"],ar:["تغيير وضوح وصف رمز"]}},12050:e=>{e.exports={
|
||||
en:["change symbol field visibility"],ar:["تغيير وضوح حقل الرمز"]}},46066:e=>{e.exports={en:["change symbol last value mode"],ar:["تغيير وضع آخر قيمة للرمز"]}},902:e=>{e.exports={en:["change symbol legend format"],ar:["تغيير تنسيق مفتاح التوضيح الرمز"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],ar:["تغيير موضع الحافة اليسرى لمخطط الحفظ عند تغيير الفاصل الزمني"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],ar:["تغيير وضوح أزرار أوضاع المقياس"]}},76131:e=>{e.exports={en:["change scales text color"],ar:["تغيير لون نص المقاييس"]}},27792:e=>{e.exports={en:["change scales font size"],ar:["تغيير حجم خط المقاييس"]}},94997:e=>{e.exports={en:["change scales lines color"],ar:["تغيير لون خطوط المقاييس"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],ar:["تغيير وضوح فواصل الجلسات"]}},28175:e=>{e.exports={en:["change sessions breaks width"],ar:["تغيير عرض فواصل الجلسات"]}},33895:e=>{e.exports={en:["change sessions breaks color"],ar:["تغيير وضوح لون فواصل الجلسات"]}},21641:e=>{e.exports={en:["change sessions breaks style"],ar:["تغيير نمط فواصل الجلسات"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ar:["تغيير عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},60834:e=>{e.exports={en:["change thin bars"],ar:["تغيير الأعمدة الرقيقة"]}},39754:e=>{e.exports={en:["change time hours format"],ar:["تغيير تنسيق الساعات"]}},74883:e=>{e.exports={en:["change top margin"],ar:["تغيير الهامش العلوي"]}},51250:e=>{e.exports={en:["change unit label visibility"],ar:["تغيير وضوح ملصقات الوحدة"]}},71805:e=>{e.exports={en:["change vert grid lines color"],ar:["تغيير لون خطوط الشبكة العمودية"]}},96201:e=>{e.exports={en:["change volume values visibility"],ar:["تغيير وضوح قيم الحجم"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ar:["تغيير لون حدود {candleType} الصاعد"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ar:["تغيير لون {candleType} الصاعد"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ar:["تغيير لون ذيل {candleType} الهابط"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ar:["تغيير لون ذيل {candleType} الصاعد"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ar:["تغيير وضوح ذيل {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ar:["تغيير وضوح الجسم {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ar:["تغيير وضوح حدود {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ar:["تغيير لون حدود {candleType} الهابط"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ar:["تغيير لون {candleType} الهابط"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ar:["تغيير لون حدود عمود {chartType} الهابط"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ar:["تغيير لون حدود عمود {chartType} الصاعد"]}},5012:e=>{e.exports={en:["change {chartType} down color"],
|
||||
ar:["تغيير لون {chartType} الهابط"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ar:["تغيير لون الإسقاط لحدود عمود {chartType} الصاعد"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ar:["تغيير لون عمود الإسقاط {chartType} الهابط"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ar:["تغيير لون عمود الإسقاط {chartType} الصاعد"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ar:["تغيير لون {chartType} الصاعد"]}},66110:e=>{e.exports={en:["change {inputName} property"],ar:["تغيير خاصية {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ar:["ضبط لبيانات توزيعات الأرباح"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ar:["ضبط لتغييرات العقد"]}},92598:e=>{e.exports={en:["hollow candles"],ar:["شموع مفرغة"]}},57243:e=>{e.exports={en:["range","ranges"],ar:["نطاق","نطاق","نطاق","نطاقات","نطاق","نطاق"]}},70282:e=>{e.exports={en:["renko"],ar:["رينكو"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ar:["استخدام التسوية عند الإغلاق على الفاصل الزمني اليومي"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],ar:["{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية"]}}}]);
|
||||
ar:["الخط العلوي"]}},70320:e=>{e.exports={en:["Text"],ar:["النص"]}},25485:e=>{e.exports={en:["Text alignment"],ar:["محاذاة النص"]}},67781:e=>{e.exports={en:["Text orientation"],ar:["اتجاه النص"]}},20215:e=>{e.exports={en:["Thin bars"],ar:["أعمدة نحيفة"]}},70198:e=>{e.exports={en:["Title"],ar:["عنوان"]}},29854:e=>{e.exports={en:["Titles"],ar:["العناوين"]}},5791:e=>{e.exports={en:["Ticker"],ar:["الرمز"]}},16816:e=>{e.exports={en:["Ticker and description"],ar:["الرمز والوصف"]}},24821:e=>{e.exports={en:["Ticks"],ar:["تيكات السعر"]}},93965:e=>{e.exports={en:["Time Scale"],ar:["مقياس الوقت"]}},5591:e=>{e.exports={en:["Time hours format"],ar:["تنسيق الساعات"]}},77073:e=>{e.exports={en:["Timezone"],ar:["توقيت"]}},76495:e=>{e.exports={en:["Trading"],ar:["تداول"]}},33564:e=>{e.exports={en:["Unit"],ar:["وحدة"]}},23091:e=>{e.exports={en:["Up color"],ar:["لون الإرتفاع"]}},36957:e=>{e.exports={en:["Up bars"],ar:["الشموع الصاعدة"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ar:["استخدم التسوية في أقرب وقت على الفاصل الزمني اليومي"]}},37644:e=>{e.exports={en:["Volume"],ar:["حجم التداول"]}},51514:e=>{e.exports={en:["Value"],ar:["قيمة"]}},31218:e=>{e.exports={en:["Value according to scale"],ar:["القيمة حسب المقياس"]}},60092:e=>{e.exports={en:["Values"],ar:["القِيم"]}},83594:e=>{e.exports={en:["Vert and horz"],ar:["عمودي وأفقي"]}},8402:e=>{e.exports={en:["Vert only"],ar:["عمودي فقط"]}},69526:e=>{e.exports={en:["Vertical"],ar:["عمودي"]}},21105:e=>{e.exports={en:["candle"],ar:["شمعة"]}},27068:e=>{e.exports={en:["change HLC bars"],ar:["تغيير أعمدة HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],ar:["تغيير وضوح أزرار التنقل"]}},96227:e=>{e.exports={en:["change open market status visibility"],ar:["تغيير وضوح حالة السوق المفتوحة"]}},43231:e=>{e.exports={en:["change average close price line width"],ar:["تغيير عرض خط متوسط سعر الإغلاق"]}},47026:e=>{e.exports={en:["change average close price line color"],ar:["تغيير لون خط متوسط سعر الإغلاق"]}},86866:e=>{e.exports={en:["change area fill color"],ar:["تغيير لون المنطقة"]}},89346:e=>{e.exports={en:["change area line width"],ar:["تغيير عرض خط المنطقة"]}},29605:e=>{e.exports={en:["change area line color"],ar:["تغيير لون خطوط المنطقة"]}},4640:e=>{e.exports={en:["change area price source"],ar:["تغيير مصدر سعر المنطقة"]}},98407:e=>{e.exports={en:["change ask line color"],ar:["تغيير لون خط سعر الشراء"]}},42190:e=>{e.exports={en:["change base level"],ar:["تغيير مستوى الأساس"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ar:["تغيير لون قاع خط الأساس"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ar:["تغيير لون قاع خط الأساس"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ar:["تغيير لون المنطقة السفلية لخط الأساس"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ar:["تغيير لون المنطقة العليا لخط الأساس"]}},68609:e=>{e.exports={en:["change baseline price source"],ar:["تغيير مصدر السعر الأساسي"]}},69044:e=>{e.exports={
|
||||
en:["change baseline top line color"],ar:["تغيير لون خطوط خط الأساس"]}},68197:e=>{e.exports={en:["change baseline top line width"],ar:["تغيير عرض أعلى الخط الأساسي"]}},33464:e=>{e.exports={en:["change bar up color"],ar:["تغيير لون العمود الصاعد"]}},27426:e=>{e.exports={en:["change bar change visibility"],ar:["تغيير وضوح تغييرات الأعمدة"]}},59622:e=>{e.exports={en:["change bar down color"],ar:["تغيير لون العمود الهابط"]}},17919:e=>{e.exports={en:["change bid line color"],ar:["تغيير لون خط سعر البيع"]}},32094:e=>{e.exports={en:["change bottom margin"],ar:["تغيير الهامش السفلي"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],ar:["تغيير وضوح وحدات الملصقات والعملة"]}},64003:e=>{e.exports={en:["change currency label visibility"],ar:["تغيير وضوح ملصقات العملة"]}},42803:e=>{e.exports={en:["change chart background color"],ar:["تغيير لون خلفية الرسم البياني"]}},41382:e=>{e.exports={en:["change chart background type"],ar:["تغيير نوع خلفية الرسم البياني"]}},79637:e=>{e.exports={en:["change chart values visibility"],ar:["تغيير رؤية قيم الرسم"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ar:["تغيير لون الأعمدة بناءً على الإغلاق السابق"]}},88324:e=>{e.exports={en:["change column up color"],ar:["تغيير لون الأعمدة الصاعد"]}},93890:e=>{e.exports={en:["change column down color"],ar:["تغيير لون الأعمدة الهابطة"]}},4727:e=>{e.exports={en:["change column price source"],ar:["تغيير مصدر سعر العمود"]}},50544:e=>{e.exports={en:["change crosshair width"],ar:["تغيير عرض التقاطع"]}},92885:e=>{e.exports={en:["change crosshair color"],ar:["تغيير لون التقاطع"]}},68418:e=>{e.exports={en:["change crosshair style"],ar:["تغيير نمط التقاطع"]}},43109:e=>{e.exports={en:["change date format"],ar:["تغيير تنسيق التاريخ"]}},30418:e=>{e.exports={en:["change day of week on labels"],ar:["يوم التغير من الأسبوع على الملصقات"]}},82063:e=>{e.exports={en:["change decimal places"],ar:["تغيير المنازل العشرية"]}},44223:e=>{e.exports={en:["change extended hours color"],ar:["تغيير لون الساعات الممددة"]}},47393:e=>{e.exports={en:["change electronic trading hours"],ar:["تغيير ساعات التداول الإلكترونية"]}},73844:e=>{e.exports={en:["change grid lines visibility"],ar:["تغيير وضوح خطوط الشبكة"]}},61407:e=>{e.exports={en:["change high and low price line color"],ar:["تغيير لون خط أعلى وأدنى سعر"]}},39581:e=>{e.exports={en:["change high and low price line width"],ar:["تغيير عرض خط أعلى وأدنى سعر"]}},6026:e=>{e.exports={en:["change high-low body color"],ar:["تغيير لون جسم أعلى-أدنى"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ar:["تغيير وضوح جسم أعلى-أدنى"]}},46844:e=>{e.exports={en:["change high-low border color"],ar:["تغيير لون حدود أعلى-أدنى"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ar:["تغيير وضوح حدود أعلى-أدنى"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ar:["تغيير وضوح ملصقات أعلى-أدنى"]}},56961:e=>{e.exports={en:["change high-low labels color"],ar:["تغيير لون ملصقات أعلى-أدنى"]}},21133:e=>{e.exports={en:["change horz grid lines color"],
|
||||
ar:["تغيير لون خطوط الشبكة الأفقية"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],ar:["تغيير وضوح عناوين المؤشر"]}},49583:e=>{e.exports={en:["change indicator values visibility"],ar:["تغيير وضوح قيم المؤشر"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],ar:["تغيير وضوح مدخلات المؤشر"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ar:["وضوح ملصقات تغير المؤشرات وأسماء البيانات المالية"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ar:["وضوح ملصقات تغير المؤشرات والبيانات المالية"]}},66307:e=>{e.exports={en:["change last day change visibility"],ar:["تغيير الرؤية في اليوم الأخير"]}},91873:e=>{e.exports={en:["change legend background transparency"],ar:["تغيير شفافية خلفية المفتاح التوضيحي"]}},14246:e=>{e.exports={en:["change legend background visibility"],ar:["تغيير وضوح خلفية المفتاح التوضيحي"]}},88640:e=>{e.exports={en:["change line color"],ar:["تغيير لون الخط"]}},41837:e=>{e.exports={en:["change line price source"],ar:["تغيير مصدر سعر الخط"]}},48339:e=>{e.exports={en:["change line width"],ar:["تغيير عرض الخط"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],ar:["تغيير وضوح أزرار الجزء"]}},52203:e=>{e.exports={en:["change pane separators color"],ar:["تغيير لون فواصل الجزء"]}},38730:e=>{e.exports={en:["change post market color"],ar:["تغيير لون ما بعد الجلسة"]}},28075:e=>{e.exports={en:["change post market line color"],ar:["تغيير لون خط ما بعد الجلسة"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ar:["تغيير وضوح خط أسعار ما قبل/بعد الجلسة"]}},44371:e=>{e.exports={en:["change pre market color"],ar:["تغيير لون ما قبل الجلسة"]}},96114:e=>{e.exports={en:["change pre market line color"],ar:["تغيير لون خط ما قبل الجلسة"]}},69814:e=>{e.exports={en:["change previous close price line color"],ar:["تغيير لون خط سعر الإغلاق السابق"]}},13660:e=>{e.exports={en:["change previous close price line width"],ar:["تغيير عرض خط سعر الإغلاق السابق"]}},87861:e=>{e.exports={en:["change price line color"],ar:["تغيير لون خطوط السعر"]}},29353:e=>{e.exports={en:["change price line width"],ar:["تغيير عرض خط السعر"]}},16241:e=>{e.exports={en:["change range bars style"],ar:["تغيير نمط أعمدة النطاق"]}},65821:e=>{e.exports={en:["change range thin bars"],ar:["تغيير نطاق الأعمدة الرقيقة"]}},75487:e=>{e.exports={en:["change renko wick down color"],ar:["تغيير لون ذيل رينكو الهابط"]}},92277:e=>{e.exports={en:["change renko wick up color"],ar:["تغيير لون ذيل الرينكو الصاعد"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ar:["تغيير وضوح ذيل الرينكو"]}},82946:e=>{e.exports={en:["change right margin"],ar:["تغيير الهامش الأيمن"]}},79545:e=>{e.exports={en:["change right margin percentage"],ar:["تغيير نسبة الهامش الأيمن"]}},78995:e=>{e.exports={en:["change symbol watermark color"],ar:["تغيير لون علامة الرمز"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],ar:["تغيير وضوح علامة الرمز"]}},88167:e=>{e.exports={en:["change symbol description visibility"],
|
||||
ar:["تغيير وضوح وصف رمز"]}},12050:e=>{e.exports={en:["change symbol field visibility"],ar:["تغيير وضوح حقل الرمز"]}},46066:e=>{e.exports={en:["change symbol last value mode"],ar:["تغيير وضع آخر قيمة للرمز"]}},902:e=>{e.exports={en:["change symbol legend format"],ar:["تغيير تنسيق مفتاح التوضيح الرمز"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],ar:["تغيير موضع الحافة اليسرى لمخطط الحفظ عند تغيير الفاصل الزمني"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],ar:["تغيير وضوح أزرار أوضاع المقياس"]}},76131:e=>{e.exports={en:["change scales text color"],ar:["تغيير لون نص المقاييس"]}},27792:e=>{e.exports={en:["change scales font size"],ar:["تغيير حجم خط المقاييس"]}},94997:e=>{e.exports={en:["change scales lines color"],ar:["تغيير لون خطوط المقاييس"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],ar:["تغيير وضوح فواصل الجلسات"]}},28175:e=>{e.exports={en:["change sessions breaks width"],ar:["تغيير عرض فواصل الجلسات"]}},33895:e=>{e.exports={en:["change sessions breaks color"],ar:["تغيير وضوح لون فواصل الجلسات"]}},21641:e=>{e.exports={en:["change sessions breaks style"],ar:["تغيير نمط فواصل الجلسات"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ar:["تغيير عرض الأسعار الحقيقية على مقياس السعر (بدلًا من سعر هيكن آشي)"]}},60834:e=>{e.exports={en:["change thin bars"],ar:["تغيير الأعمدة الرقيقة"]}},39754:e=>{e.exports={en:["change time hours format"],ar:["تغيير تنسيق الساعات"]}},74883:e=>{e.exports={en:["change top margin"],ar:["تغيير الهامش العلوي"]}},51250:e=>{e.exports={en:["change unit label visibility"],ar:["تغيير وضوح ملصقات الوحدة"]}},71805:e=>{e.exports={en:["change vert grid lines color"],ar:["تغيير لون خطوط الشبكة العمودية"]}},96201:e=>{e.exports={en:["change volume values visibility"],ar:["تغيير وضوح قيم الحجم"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ar:["تغيير لون حدود {candleType} الصاعد"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ar:["تغيير لون {candleType} الصاعد"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ar:["تغيير لون ذيل {candleType} الهابط"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ar:["تغيير لون ذيل {candleType} الصاعد"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ar:["تغيير وضوح ذيل {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ar:["تغيير وضوح الجسم {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ar:["تغيير وضوح حدود {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ar:["تغيير لون حدود {candleType} الهابط"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ar:["تغيير لون {candleType} الهابط"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ar:["تغيير لون حدود عمود {chartType} الهابط"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ar:["تغيير لون حدود عمود {chartType} الصاعد"]}},5012:e=>{e.exports={
|
||||
en:["change {chartType} down color"],ar:["تغيير لون {chartType} الهابط"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ar:["تغيير لون الإسقاط لحدود عمود {chartType} الصاعد"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ar:["تغيير لون عمود الإسقاط {chartType} الهابط"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ar:["تغيير لون عمود الإسقاط {chartType} الصاعد"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ar:["تغيير لون {chartType} الصاعد"]}},66110:e=>{e.exports={en:["change {inputName} property"],ar:["تغيير خاصية {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ar:["ضبط لبيانات توزيعات الأرباح"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ar:["ضبط لتغييرات العقد"]}},92598:e=>{e.exports={en:["hollow candles"],ar:["شموع مفرغة"]}},57243:e=>{e.exports={en:["range","ranges"],ar:["نطاق","نطاق","نطاق","نطاقات","نطاق","نطاق"]}},70282:e=>{e.exports={en:["renko"],ar:["رينكو"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ar:["استخدام التسوية عند الإغلاق على الفاصل الزمني اليومي"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],ar:["{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية","{value} عشرية"]}}}]);
|
||||
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],ca_ES:["#{count} (barra)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],ca_ES:["#{count} (preu, barra)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ca_ES:["(Màx.+Mín.+Tancament)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ca_ES:["(Màx+Mín)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ca_ES:["Color de barres en funció del tancament anterior"]}},78930:e=>{e.exports={en:["Coordinates"],ca_ES:["Coordenades"]}},24197:e=>{e.exports={en:["Center"],ca_ES:["Centre"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ca_ES:["Ajusta dades dels dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ca_ES:["Ajusta els canvis dels contractes"]}},27567:e=>{e.exports={en:["Bottom"],ca_ES:["Part inferior"]}},3159:e=>{e.exports={en:["Bottom line"],ca_ES:["Línia inferior"]}},74406:e=>{e.exports={en:["Body"],ca_ES:["Cos"]}},333:e=>{e.exports={en:["Borders"],ca_ES:["Vores"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],ca_ES:["Nivell de la base"]}},71776:e=>{e.exports={en:["Down"],ca_ES:["Avall"]}},17611:e=>{e.exports={en:["Down bars"],ca_ES:["Barres descendents"]}},23743:e=>{e.exports={en:["Down color"],ca_ES:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],ca_ES:["Modificació de dades"]}},72942:e=>{e.exports={en:["Days"],ca_ES:["Dies"]}},16564:e=>{e.exports={en:["Default"],ca_ES:["Predeterminat"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],ca_ES:["Desplaçament (preu, barra)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],ca_ES:["Amplia línies"]}},41129:e=>{e.exports={en:["Fill"],ca_ES:["Omplir"]}},61112:e=>{e.exports={en:["Fill top area"],ca_ES:["Reomple l'àrea superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],ca_ES:["Omple l'àrea inferior"]}},886:e=>{e.exports={en:["HLC bars"],ca_ES:["Barres amb el màxim, mínim i tancament (HLC)"]}},56796:e=>{e.exports={en:["Hours"],ca_ES:["Hores"]}},95406:e=>{e.exports={en:["Horizontal"],ca_ES:["Horitzontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],ca_ES:["Entrades de dades"]}},64075:e=>{e.exports={en:["Override min tick"],ca_ES:["Anul·la el tick mínim"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"],ca_ES:["Esquerra"]}},43154:e=>{e.exports={en:["Months"],ca_ES:["Mesos"]}},68833:e=>{e.exports={en:["Middle"],ca_ES:["Al mig"]}},42562:e=>{e.exports={en:["Minutes"],ca_ES:["Minuts"]}},65188:e=>{e.exports={en:["Seconds"],ca_ES:["Segons"]}},13350:e=>{e.exports={en:["Pearson's R"],ca_ES:["Coeficient de correlació de Pearson"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ca_ES:["Informació horària pre/post mercat"]}},59766:e=>{e.exports={en:["Precision"],ca_ES:["Precisió"]}},84684:e=>{e.exports={
|
||||
en:["Price source"],ca_ES:["Font dels preus"]}},73466:e=>{e.exports={en:["Projection up bars"],ca_ES:["Barres superiors de projecció"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"],ca_ES:["Barres de projecció descendents"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ca_ES:["Preus reals a l'escala (en lloc del preu Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],ca_ES:["Dreta"]}},835:e=>{e.exports={en:["Weeks"],ca_ES:["Setmanes"]}},32163:e=>{e.exports={en:["Wick"],ca_ES:["Metxa"]}},97118:e=>{e.exports={en:["Top"],ca_ES:["Part superior"]}},89349:e=>{e.exports={en:["Top line"],ca_ES:["Línia superior"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],ca_ES:["Alineació del text"]}},67781:e=>{e.exports={en:["Text orientation"],ca_ES:["Orientació del text"]}},20215:e=>{e.exports={en:["Thin bars"],ca_ES:["Barres fines"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],ca_ES:["Zona horària"]}},22691:e=>{e.exports={en:["Up"],ca_ES:["Amunt"]}},23091:e=>{e.exports={en:["Up color"],ca_ES:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],ca_ES:["Barres superiors"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ca_ES:["Fer servir la liquidació com a tancament en intervals diaris"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],ca_ES:["espelma"]}},27068:e=>{e.exports={en:["change HLC bars"],ca_ES:["canvia les barres HLC"]}},86866:e=>{e.exports={en:["change area fill color"],ca_ES:["canvia el color de fons de l'àrea"]}},89346:e=>{e.exports={en:["change area line width"],ca_ES:["canvia l'ample de la línia de l'àrea"]}},29605:e=>{e.exports={en:["change area line color"],ca_ES:["canvia el color de la línia de l'àrea"]}},4640:e=>{e.exports={en:["change area price source"],ca_ES:["canvia la font dels preus de l'àrea"]}},42190:e=>{e.exports={en:["change base level"],ca_ES:["canvia el nivell de referència"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ca_ES:["canvia el color de la línia inferior de la línia de referència"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ca_ES:["canvia l'ample de la línia inferior de la línia de referència"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ca_ES:["canvia el color de fons de l'àrea inferior de la línia de referència"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ca_ES:["canvia el color de fons de l'àrea superior de la línia de referència"]}},68609:e=>{e.exports={en:["change baseline price source"],ca_ES:["canvia la font de preus de referència"]}},69044:e=>{e.exports={en:["change baseline top line color"],ca_ES:["canvia el color de la línia superior de la línia de referència"]}},68197:e=>{e.exports={en:["change baseline top line width"],ca_ES:["canvia l'ample de la línia superior de la línia de referència"]}},33464:e=>{e.exports={en:["change bar up color"],ca_ES:["canvia el color superior de la barra"]}},
|
||||
2066:e=>{e.exports={en:["change bar X coordinate"],ca_ES:["canvia la coordenada X de les barres"]}},59622:e=>{e.exports={en:["change bar down color"],ca_ES:["canvia el color inferior de la barra"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ca_ES:["canvia el color de les barres en funció del valor de tancament anterior"]}},88324:e=>{e.exports={en:["change column up color"],ca_ES:["canvia color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],ca_ES:["canvia color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],ca_ES:["canvia la font del preu de la columna"]}},82063:e=>{e.exports={en:["change decimal places"],ca_ES:["canvia les posicions decimals"]}},44223:e=>{e.exports={en:["change extended hours color"],ca_ES:["canvia el color de l'horari amplicat"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"],ca_ES:["canvia el color del cos de màxims i mínims"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ca_ES:["canvia la visibilitat del cos de màxims i mínims"]}},46844:e=>{e.exports={en:["change high-low border color"],ca_ES:["canviar el color de la vora de màxims i mínims"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ca_ES:["canvia la visibilitat de les vores de màxims i mínims"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de màxims i mínims"]}},56961:e=>{e.exports={en:["change high-low labels color"],ca_ES:["canvia el color de les etiquetes de màxims i mínims"]}},88640:e=>{e.exports={en:["change line color"],ca_ES:["canvia el color de línia"]}},41837:e=>{e.exports={en:["change line price source"],ca_ES:["canvia la font de preus de la línia"]}},48339:e=>{e.exports={en:["change line width"],ca_ES:["canvia l'ample de línia"]}},38730:e=>{e.exports={en:["change post market color"],ca_ES:["canvia el color postmercat"]}},44371:e=>{e.exports={en:["change pre market color"],ca_ES:["canvia el color de la sessió premercat"]}},11737:e=>{e.exports={en:["change price Y coordinate"],ca_ES:["canvia la coordenada Y dels preus"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"],ca_ES:["canvia el rang de les barres fines"]}},75487:e=>{e.exports={en:["change renko wick down color"],ca_ES:["canvia el color inferior de la metxa renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],ca_ES:["canvia el color inferior de la metxa renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ca_ES:["canvia la visibilitat de les metxes renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],ca_ES:["canvia ticks mínims de la superposició de l'estudi"]}},82924:e=>{e.exports={en:["change study overlay style"],ca_ES:["canvia estil de superposició de l'estudi"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],
|
||||
ca_ES:["canvia la visualització dels preus reals en l'escala de preus (en lloc del preu Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],ca_ES:["canvia les barres fines"]}},78509:e=>{e.exports={en:["change {title} base line color"],ca_ES:["canvia el color de la línia de referència de {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],ca_ES:["canvia l'estil de la línia de referència de {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],ca_ES:["canvia la visibilitat de la línia de referència de {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],ca_ES:["canvia l'ample de la línia de referència de {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],ca_ES:["canvia color de la línia inferior de {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],ca_ES:["canvia l'estil de la línia descendent de {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],ca_ES:["canvia la visibilitat de la línia descendent de {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],ca_ES:["canvia l'ample de la línia inferior de {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],ca_ES:["canvia els dies de {title} fins a"]}},91201:e=>{e.exports={en:["change {title} days from"],ca_ES:["canvia els dies de {title} des de"]}},76295:e=>{e.exports={en:["change {title} extend lines"],ca_ES:["canvia ampliar línies a {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],ca_ES:["canvia les hores de {title} des de"]}},67233:e=>{e.exports={en:["change {title} hours to"],ca_ES:["canvia les hores de {title} fins a"]}},99122:e=>{e.exports={en:["change {title} months from"],ca_ES:["canviar els mesos des de {title}"]}},10518:e=>{e.exports={en:["change {title} months to"],ca_ES:["canvia els mesos de {title} fins a"]}},38011:e=>{e.exports={en:["change {title} minutes to"],ca_ES:["canvia els minuts de {title} fins a"]}},59820:e=>{e.exports={en:["change {title} minutes from"],ca_ES:["canvia els minuts de {title} des de"]}},6573:e=>{e.exports={en:["change {title} seconds to"],ca_ES:["canvia els segons de {title} fins a"]}},86780:e=>{e.exports={en:["change {title} seconds from"],ca_ES:["canvia els segons des de {title}"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],ca_ES:["canvia la visibilitat r de Pearson de {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],ca_ES:["canvia les detmanes de {title} des de"]}},18678:e=>{e.exports={en:["change {title} weeks to"],ca_ES:["canvia les setmanes de {title} fins a"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],ca_ES:["canvia la visibilitat de la línia superior de {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],ca_ES:["canvia l'ample de la línia superior de {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],ca_ES:["canvia el color de la línia superior de {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],
|
||||
ca_ES:["canvia l'estil de la línia superior de {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],ca_ES:["canvia la visibilitat a ticks de {title}"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],ca_ES:["canvia la visibilitat en setmanes de {title}"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],ca_ES:["canvia la visibilitat en dies de {title}"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],ca_ES:["canvia la visibilitat en hores de {title}"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],ca_ES:["canvia la visibilitat en minuts de {title}"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],ca_ES:["canvia la visibilitat en mesos de {title}"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],ca_ES:["canvia la visibilitat en segons de {title}"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ca_ES:["canvia el color de la vora superior de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ca_ES:["canvia el color superior de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ca_ES:["canvia el color inferior de la metxa de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ca_ES:["canvia el color superior de la metxa de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ca_ES:["canvia la visibilitat de la metxa {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ca_ES:["canvia la visibilitat del cos de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ca_ES:["canvia la visibilitat de la vora de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ca_ES:["canvia el color de la vora inferior de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ca_ES:["canvia el color inferior de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ca_ES:["canvia el color inferior de la vora de la barra de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ca_ES:["canvia el color inferior de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de projecció de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ca_ES:["canvia el color inferior de la barra de projecció de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ca_ES:["canvia el color superior de la barra de projecció de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ca_ES:["canvia el color superior de {chartType}"]}},66110:e=>{e.exports={
|
||||
en:["change {inputName} property"],ca_ES:["canvia propietat de {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],ca_ES:["cnavia la propietat de {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ca_ES:["ajusta dades dels dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ca_ES:["ajusta per a canvis de contractes"]}},35813:e=>{e.exports={en:["days"],ca_ES:["dies"]}},89919:e=>{e.exports={en:["days to"],ca_ES:["dies fins a"]}},59215:e=>{e.exports={en:["days from"],ca_ES:["dies des de"]}},2359:e=>{e.exports={en:["hours"],ca_ES:["hores"]}},82267:e=>{e.exports={en:["hours from"],ca_ES:["hores des de"]}},15600:e=>{e.exports={en:["hours to"],ca_ES:["hores fins a"]}},92598:e=>{e.exports={en:["hollow candles"],ca_ES:["espelmes buides"]}},76261:e=>{e.exports={en:["move drawings"],ca_ES:["moure dibuixos"]}},95300:e=>{e.exports={en:["months"],ca_ES:["mesos"]}},17250:e=>{e.exports={en:["months from"],ca_ES:["mesos des de"]}},2828:e=>{e.exports={en:["months to"],ca_ES:["mesos fins a"]}},18726:e=>{e.exports={en:["minutes"],ca_ES:["minuts"]}},67649:e=>{e.exports={en:["minutes to"],ca_ES:["minuts fins a"]}},22476:e=>{e.exports={en:["minutes from"],ca_ES:["minuts des de"]}},751:e=>{e.exports={en:["seconds"],ca_ES:["segons"]}},73419:e=>{e.exports={en:["seconds to"],ca_ES:["segons fins a"]}},35801:e=>{e.exports={en:["seconds from"],ca_ES:["segons des de"]}},57243:e=>{e.exports={en:["range","ranges"],ca_ES:["rang","rangs"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"],ca_ES:["setmanes"]}},92859:e=>{e.exports={en:["weeks from"],ca_ES:["setmanes des de"]}},44127:e=>{e.exports={en:["weeks to"],ca_ES:["setmanes fins a"]}},3539:e=>{e.exports={en:["ticks"],ca_ES:["Ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ca_ES:["fes servir la liquidació com a tancament en intervals diaris"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],ca_ES:["#{count} (barra)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],ca_ES:["#{count} (preu, barra)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ca_ES:["(Màx.+Mín.+Tancament)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ca_ES:["(Màx+Mín)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ca_ES:["Color de barres en funció del tancament anterior"]}},78930:e=>{e.exports={en:["Coordinates"],ca_ES:["Coordenades"]}},24197:e=>{e.exports={en:["Center"],ca_ES:["Centre"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ca_ES:["Ajusta dades dels dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ca_ES:["Ajusta els canvis dels contractes"]}},27567:e=>{e.exports={en:["Bottom"],ca_ES:["Part inferior"]}},3159:e=>{e.exports={en:["Bottom line"],ca_ES:["Línia inferior"]}},74406:e=>{e.exports={en:["Body"],ca_ES:["Cos"]}},333:e=>{e.exports={en:["Borders"],ca_ES:["Vores"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],ca_ES:["Nivell de la base"]}},71776:e=>{e.exports={en:["Down"],ca_ES:["Avall"]}},17611:e=>{e.exports={en:["Down bars"],ca_ES:["Barres descendents"]}},23743:e=>{e.exports={en:["Down color"],ca_ES:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],ca_ES:["Modificació de dades"]}},72942:e=>{e.exports={en:["Days"],ca_ES:["Dies"]}},16564:e=>{e.exports={en:["Default"],ca_ES:["Predeterminat"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],ca_ES:["Desplaçament (preu, barra)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],ca_ES:["Amplia línies"]}},41129:e=>{e.exports={en:["Fill"],ca_ES:["Omplir"]}},61112:e=>{e.exports={en:["Fill top area"],ca_ES:["Reomple l'àrea superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],ca_ES:["Omple l'àrea inferior"]}},56796:e=>{e.exports={en:["Hours"],ca_ES:["Hores"]}},95406:e=>{e.exports={en:["Horizontal"],ca_ES:["Horitzontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],ca_ES:["Entrades de dades"]}},64075:e=>{e.exports={en:["Override min tick"],ca_ES:["Anul·la el tick mínim"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"],ca_ES:["Esquerra"]}},43154:e=>{e.exports={en:["Months"],ca_ES:["Mesos"]}},68833:e=>{e.exports={en:["Middle"],ca_ES:["Al mig"]}},42562:e=>{e.exports={en:["Minutes"],ca_ES:["Minuts"]}},65188:e=>{e.exports={en:["Seconds"],ca_ES:["Segons"]}},13350:e=>{e.exports={en:["Pearson's R"],ca_ES:["Coeficient de correlació de Pearson"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ca_ES:["Informació horària pre/post mercat"]}},59766:e=>{e.exports={en:["Precision"],ca_ES:["Precisió"]}},84684:e=>{e.exports={en:["Price source"],
|
||||
ca_ES:["Font dels preus"]}},73466:e=>{e.exports={en:["Projection up bars"],ca_ES:["Barres superiors de projecció"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"],ca_ES:["Barres de projecció descendents"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ca_ES:["Preus reals a l'escala (en lloc del preu Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],ca_ES:["Dreta"]}},835:e=>{e.exports={en:["Weeks"],ca_ES:["Setmanes"]}},32163:e=>{e.exports={en:["Wick"],ca_ES:["Metxa"]}},97118:e=>{e.exports={en:["Top"],ca_ES:["Part superior"]}},89349:e=>{e.exports={en:["Top line"],ca_ES:["Línia superior"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],ca_ES:["Alineació del text"]}},67781:e=>{e.exports={en:["Text orientation"],ca_ES:["Orientació del text"]}},20215:e=>{e.exports={en:["Thin bars"],ca_ES:["Barres fines"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],ca_ES:["Zona horària"]}},22691:e=>{e.exports={en:["Up"],ca_ES:["Amunt"]}},23091:e=>{e.exports={en:["Up color"],ca_ES:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],ca_ES:["Barres superiors"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ca_ES:["Fer servir la liquidació com a tancament en intervals diaris"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],ca_ES:["espelma"]}},27068:e=>{e.exports={en:["change HLC bars"],ca_ES:["canvia les barres HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],ca_ES:["canvia el color de fons de l'àrea"]}},89346:e=>{e.exports={en:["change area line width"],ca_ES:["canvia l'ample de la línia de l'àrea"]}},29605:e=>{e.exports={en:["change area line color"],ca_ES:["canvia el color de la línia de l'àrea"]}},4640:e=>{e.exports={en:["change area price source"],ca_ES:["canvia la font dels preus de l'àrea"]}},42190:e=>{e.exports={en:["change base level"],ca_ES:["canvia el nivell de referència"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ca_ES:["canvia el color de la línia inferior de la línia de referència"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ca_ES:["canvia l'ample de la línia inferior de la línia de referència"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ca_ES:["canvia el color de fons de l'àrea inferior de la línia de referència"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ca_ES:["canvia el color de fons de l'àrea superior de la línia de referència"]}},68609:e=>{e.exports={en:["change baseline price source"],ca_ES:["canvia la font de preus de referència"]}},69044:e=>{e.exports={en:["change baseline top line color"],ca_ES:["canvia el color de la línia superior de la línia de referència"]}},68197:e=>{e.exports={en:["change baseline top line width"],ca_ES:["canvia l'ample de la línia superior de la línia de referència"]}},33464:e=>{e.exports={en:["change bar up color"],
|
||||
ca_ES:["canvia el color superior de la barra"]}},2066:e=>{e.exports={en:["change bar X coordinate"],ca_ES:["canvia la coordenada X de les barres"]}},59622:e=>{e.exports={en:["change bar down color"],ca_ES:["canvia el color inferior de la barra"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ca_ES:["canvia el color de les barres en funció del valor de tancament anterior"]}},88324:e=>{e.exports={en:["change column up color"],ca_ES:["canvia color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],ca_ES:["canvia color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],ca_ES:["canvia la font del preu de la columna"]}},82063:e=>{e.exports={en:["change decimal places"],ca_ES:["canvia les posicions decimals"]}},44223:e=>{e.exports={en:["change extended hours color"],ca_ES:["canvia el color de l'horari amplicat"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"],ca_ES:["canvia el color del cos de màxims i mínims"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ca_ES:["canvia la visibilitat del cos de màxims i mínims"]}},46844:e=>{e.exports={en:["change high-low border color"],ca_ES:["canviar el color de la vora de màxims i mínims"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ca_ES:["canvia la visibilitat de les vores de màxims i mínims"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de màxims i mínims"]}},56961:e=>{e.exports={en:["change high-low labels color"],ca_ES:["canvia el color de les etiquetes de màxims i mínims"]}},88640:e=>{e.exports={en:["change line color"],ca_ES:["canvia el color de línia"]}},41837:e=>{e.exports={en:["change line price source"],ca_ES:["canvia la font de preus de la línia"]}},48339:e=>{e.exports={en:["change line width"],ca_ES:["canvia l'ample de línia"]}},38730:e=>{e.exports={en:["change post market color"],ca_ES:["canvia el color postmercat"]}},44371:e=>{e.exports={en:["change pre market color"],ca_ES:["canvia el color de la sessió premercat"]}},11737:e=>{e.exports={en:["change price Y coordinate"],ca_ES:["canvia la coordenada Y dels preus"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"],ca_ES:["canvia el rang de les barres fines"]}},75487:e=>{e.exports={en:["change renko wick down color"],ca_ES:["canvia el color inferior de la metxa renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],ca_ES:["canvia el color inferior de la metxa renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ca_ES:["canvia la visibilitat de les metxes renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],ca_ES:["canvia ticks mínims de la superposició de l'estudi"]}},82924:e=>{e.exports={en:["change study overlay style"],ca_ES:["canvia estil de superposició de l'estudi"]}},16660:e=>{e.exports={
|
||||
en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ca_ES:["canvia la visualització dels preus reals en l'escala de preus (en lloc del preu Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],ca_ES:["canvia les barres fines"]}},78509:e=>{e.exports={en:["change {title} base line color"],ca_ES:["canvia el color de la línia de referència de {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],ca_ES:["canvia l'estil de la línia de referència de {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],ca_ES:["canvia la visibilitat de la línia de referència de {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],ca_ES:["canvia l'ample de la línia de referència de {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],ca_ES:["canvia color de la línia inferior de {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],ca_ES:["canvia l'estil de la línia descendent de {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],ca_ES:["canvia la visibilitat de la línia descendent de {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],ca_ES:["canvia l'ample de la línia inferior de {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],ca_ES:["canvia els dies de {title} fins a"]}},91201:e=>{e.exports={en:["change {title} days from"],ca_ES:["canvia els dies de {title} des de"]}},76295:e=>{e.exports={en:["change {title} extend lines"],ca_ES:["canvia ampliar línies a {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],ca_ES:["canvia les hores de {title} des de"]}},67233:e=>{e.exports={en:["change {title} hours to"],ca_ES:["canvia les hores de {title} fins a"]}},99122:e=>{e.exports={en:["change {title} months from"],ca_ES:["canviar els mesos des de {title}"]}},10518:e=>{e.exports={en:["change {title} months to"],ca_ES:["canvia els mesos de {title} fins a"]}},38011:e=>{e.exports={en:["change {title} minutes to"],ca_ES:["canvia els minuts de {title} fins a"]}},59820:e=>{e.exports={en:["change {title} minutes from"],ca_ES:["canvia els minuts de {title} des de"]}},6573:e=>{e.exports={en:["change {title} seconds to"],ca_ES:["canvia els segons de {title} fins a"]}},86780:e=>{e.exports={en:["change {title} seconds from"],ca_ES:["canvia els segons des de {title}"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],ca_ES:["canvia la visibilitat r de Pearson de {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],ca_ES:["canvia les detmanes de {title} des de"]}},18678:e=>{e.exports={en:["change {title} weeks to"],ca_ES:["canvia les setmanes de {title} fins a"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],ca_ES:["canvia la visibilitat de la línia superior de {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],ca_ES:["canvia l'ample de la línia superior de {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],ca_ES:["canvia el color de la línia superior de {title}"]}},51188:e=>{e.exports={
|
||||
en:["change {title} up line style"],ca_ES:["canvia l'estil de la línia superior de {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],ca_ES:["canvia la visibilitat a ticks de {title}"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],ca_ES:["canvia la visibilitat en setmanes de {title}"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],ca_ES:["canvia la visibilitat en dies de {title}"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],ca_ES:["canvia la visibilitat en hores de {title}"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],ca_ES:["canvia la visibilitat en minuts de {title}"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],ca_ES:["canvia la visibilitat en mesos de {title}"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],ca_ES:["canvia la visibilitat en segons de {title}"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ca_ES:["canvia el color de la vora superior de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ca_ES:["canvia el color superior de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ca_ES:["canvia el color inferior de la metxa de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ca_ES:["canvia el color superior de la metxa de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ca_ES:["canvia la visibilitat de la metxa {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ca_ES:["canvia la visibilitat del cos de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ca_ES:["canvia la visibilitat de la vora de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ca_ES:["canvia el color de la vora inferior de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ca_ES:["canvia el color inferior de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ca_ES:["canvia el color inferior de la vora de la barra de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ca_ES:["canvia el color inferior de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de projecció de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ca_ES:["canvia el color inferior de la barra de projecció de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ca_ES:["canvia el color superior de la barra de projecció de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ca_ES:["canvia el color superior de {chartType}"]}},
|
||||
66110:e=>{e.exports={en:["change {inputName} property"],ca_ES:["canvia propietat de {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],ca_ES:["cnavia la propietat de {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ca_ES:["ajusta dades dels dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ca_ES:["ajusta per a canvis de contractes"]}},35813:e=>{e.exports={en:["days"],ca_ES:["dies"]}},89919:e=>{e.exports={en:["days to"],ca_ES:["dies fins a"]}},59215:e=>{e.exports={en:["days from"],ca_ES:["dies des de"]}},2359:e=>{e.exports={en:["hours"],ca_ES:["hores"]}},82267:e=>{e.exports={en:["hours from"],ca_ES:["hores des de"]}},15600:e=>{e.exports={en:["hours to"],ca_ES:["hores fins a"]}},92598:e=>{e.exports={en:["hollow candles"],ca_ES:["espelmes buides"]}},76261:e=>{e.exports={en:["move drawings"],ca_ES:["moure dibuixos"]}},95300:e=>{e.exports={en:["months"],ca_ES:["mesos"]}},17250:e=>{e.exports={en:["months from"],ca_ES:["mesos des de"]}},2828:e=>{e.exports={en:["months to"],ca_ES:["mesos fins a"]}},18726:e=>{e.exports={en:["minutes"],ca_ES:["minuts"]}},67649:e=>{e.exports={en:["minutes to"],ca_ES:["minuts fins a"]}},22476:e=>{e.exports={en:["minutes from"],ca_ES:["minuts des de"]}},751:e=>{e.exports={en:["seconds"],ca_ES:["segons"]}},73419:e=>{e.exports={en:["seconds to"],ca_ES:["segons fins a"]}},35801:e=>{e.exports={en:["seconds from"],ca_ES:["segons des de"]}},57243:e=>{e.exports={en:["range","ranges"],ca_ES:["rang","rangs"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"],ca_ES:["setmanes"]}},92859:e=>{e.exports={en:["weeks from"],ca_ES:["setmanes des de"]}},44127:e=>{e.exports={en:["weeks to"],ca_ES:["setmanes fins a"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],ca_ES:["Ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ca_ES:["fes servir la liquidació com a tancament en intervals diaris"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,3 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"],ca_ES:["Enrere"]}},53174:e=>{e.exports={en:["Right"],ca_ES:["Right (dret de subscripció)"]}},57e3:e=>{e.exports={en:["Compare"],ca_ES:["Compara"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],ca_ES:["Copia l'enllaç a la imatge del gràfic"]}},4543:e=>{e.exports={en:["Cancel"],ca_ES:["Cancel·la"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"],ca_ES:["Canvia símbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],ca_ES:["Eines d'anotació"]}},69207:e=>{e.exports={en:["Add to favorites"],ca_ES:["Afegeix a preferits"]}},34040:e=>{e.exports={en:["All sources"],ca_ES:["Totes les fonts"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"],ca_ES:["Bo"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],ca_ES:["Eines Gann i Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],ca_ES:["Formes geomètriques"]}},57157:e=>{e.exports={en:["Dot"],ca_ES:["Punt"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],ca_ES:["Descripció"]}},74385:e=>{e.exports={en:["Drawings"],ca_ES:["Dibuixos"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"],ca_ES:["Goma d'esborrar"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],ca_ES:["Eines de predicció i mesura"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],ca_ES:["Mode pantalla completa"]}},
|
||||
83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"],ca_ES:["Bloqueja totes les eines de dibuix"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"],ca_ES:["Més"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],ca_ES:["El mode imant apropa els dibuixos pròxims a les barres de preus al valor més proper OHLC"]}},81031:e=>{e.exports={en:["Manage layout drawings"],ca_ES:["Gestiona els dibuixos dels dissenys"]}},91563:e=>{e.exports={en:["Measure"],ca_ES:["Mida"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],ca_ES:["No hi ha mercats de valors que coincideixin amb els vostres criteris."]}},76822:e=>{e.exports={en:["No symbols match your criteria"],ca_ES:["Cap símbol coincideix amb els vostres criteris"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],ca_ES:["Els nous dibuixos es reprodueixen en tots els gràfics i es mostren quan se selecciona el mateix tíquer"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],ca_ES:["Els nous dibuixos se sincronitzaran globalment"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],ca_ES:["Les noves plantilles se sincronitzaran a la plantilla"]}},28628:e=>{e.exports={en:["Sources"],ca_ES:["Fonts"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],ca_ES:["Cercar"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"],ca_ES:["Selecciona font"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],ca_ES:["Mostra eines ocultes"]}},85786:e=>{e.exports={en:["Show Object Tree"],ca_ES:["Mostra arbre d'objectes"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],ca_ES:["Continua en mode dibuix"]}},94593:e=>{e.exports={en:["Strong Magnet"],ca_ES:["Imant fort"]}},95481:e=>{e.exports={en:["Symbol"],ca_ES:["Símbol"]}},74007:e=>{e.exports={en:["Symbol & description"],ca_ES:["Símbol i descripció"]}},51165:e=>{e.exports={en:["Symbol Search"],ca_ES:["Cerca de símbols"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"],ca_ES:["Patrons"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"],ca_ES:["Línia amb el preu de tancament del dia anterior"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"],ca_ES:["Elimina dibuixos"]}},
|
||||
4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],ca_ES:["Treure de preferits"]}},99984:e=>{e.exports={en:["Remove indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"],ca_ES:["Restablir gràfic"]}},3519:e=>{e.exports={en:["Weak Magnet"],ca_ES:["Imant dèbil"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],ca_ES:["Eines de línies de tendència"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],ca_ES:["Augmenta"]}},37310:e=>{e.exports={en:["Zoom Out"],ca_ES:["Allunya"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el nom dels indicadors i de la informació financera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el valor dels indicadors i la informació financera"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ca_ES:["canvia la visibilitat de les línies de preus pre/post mercat"]}},46128:e=>{e.exports={en:["crypto"],ca_ES:["cripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],ca_ES:["economia"]}},17770:e=>{e.exports={en:["forex"],ca_ES:["Forex"]}},4723:e=>{e.exports={en:["futures"],ca_ES:["futurs"]}},87464:e=>{e.exports={en:["index"],ca_ES:["índex"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"],ca_ES:["accions"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],ca_ES:["{hotKey_0} + Clic al gràfic"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],ca_ES:["{hotKey_0} — cercle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],ca_ES:["{hotKey_0} — dibuixant una línia recta en angles de 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],ca_ES:["{hotKey_0} — increments fixos"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],ca_ES:["{hotKey_0} — quadrat"]}}}]);
|
||||
@@ -0,0 +1,3 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"],ca_ES:["Enrere"]}},53174:e=>{e.exports={en:["Right"],ca_ES:["Right (dret de subscripció)"]}},57e3:e=>{e.exports={en:["Compare"],ca_ES:["Compara"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],ca_ES:["Copia l'enllaç a la imatge del gràfic"]}},4543:e=>{e.exports={en:["Cancel"],ca_ES:["Cancel·la"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"],ca_ES:["Canvia símbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],ca_ES:["Eines d'anotació"]}},69207:e=>{e.exports={en:["Add to favorites"],ca_ES:["Afegeix a preferits"]}},34040:e=>{e.exports={en:["All sources"],ca_ES:["Totes les fonts"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"],ca_ES:["Bo"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],ca_ES:["Eines Gann i Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],ca_ES:["Formes geomètriques"]}},57157:e=>{e.exports={en:["Dot"],ca_ES:["Punt"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],ca_ES:["Descripció"]}},74385:e=>{e.exports={en:["Drawings"],ca_ES:["Dibuixos"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"],ca_ES:["Goma d'esborrar"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],ca_ES:["Eines de predicció i mesura"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={
|
||||
en:["Fullscreen mode"],ca_ES:["Mode pantalla completa"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"],ca_ES:["Bloqueja totes les eines de dibuix"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"],ca_ES:["Més"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],ca_ES:["El mode imant apropa els dibuixos pròxims a les barres de preus al valor més proper OHLC"]}},81031:e=>{e.exports={en:["Manage layout drawings"],ca_ES:["Gestiona els dibuixos dels dissenys"]}},91563:e=>{e.exports={en:["Measure"],ca_ES:["Mida"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],ca_ES:["No hi ha mercats de valors que coincideixin amb els vostres criteris."]}},76822:e=>{e.exports={en:["No symbols match your criteria"],ca_ES:["Cap símbol coincideix amb els vostres criteris"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],ca_ES:["Els nous dibuixos es reprodueixen en tots els gràfics i es mostren quan se selecciona el mateix tíquer"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],ca_ES:["Els nous dibuixos se sincronitzaran globalment"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],ca_ES:["Les noves plantilles se sincronitzaran a la plantilla"]}},28628:e=>{e.exports={en:["Sources"],ca_ES:["Fonts"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],ca_ES:["Cercar"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"],ca_ES:["Selecciona font"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],ca_ES:["Mostra eines ocultes"]}},85786:e=>{e.exports={en:["Show Object Tree"],ca_ES:["Mostra arbre d'objectes"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],ca_ES:["Continua en mode dibuix"]}},94593:e=>{e.exports={en:["Strong Magnet"],ca_ES:["Imant fort"]}},95481:e=>{e.exports={en:["Symbol"],ca_ES:["Símbol"]}},74007:e=>{e.exports={en:["Symbol & description"],ca_ES:["Símbol i descripció"]}},51165:e=>{e.exports={en:["Symbol Search"],ca_ES:["Cerca de símbols"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"],ca_ES:["Patrons"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"],ca_ES:["Línia amb el preu de tancament del dia anterior"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={
|
||||
en:["Remove Drawings"],ca_ES:["Elimina dibuixos"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],ca_ES:["Treure de preferits"]}},99984:e=>{e.exports={en:["Remove indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"],ca_ES:["Restablir gràfic"]}},3519:e=>{e.exports={en:["Weak Magnet"],ca_ES:["Imant dèbil"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],ca_ES:["Eines de línies de tendència"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],ca_ES:["Augmenta"]}},37310:e=>{e.exports={en:["Zoom Out"],ca_ES:["Allunya"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el nom dels indicadors i de la informació financera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el valor dels indicadors i la informació financera"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ca_ES:["canvia la visibilitat de les línies de preus pre/post mercat"]}},46128:e=>{e.exports={en:["crypto"],ca_ES:["cripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],ca_ES:["economia"]}},17770:e=>{e.exports={en:["forex"],ca_ES:["Forex"]}},4723:e=>{e.exports={en:["futures"],ca_ES:["futurs"]}},87464:e=>{e.exports={en:["index"],ca_ES:["índex"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"],ca_ES:["accions"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],ca_ES:["{hotKey_0} + Clic al gràfic"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],ca_ES:["{hotKey_0} — cercle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],ca_ES:["{hotKey_0} — dibuixant una línia recta en angles de 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],ca_ES:["{hotKey_0} — increments fixos"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],ca_ES:["{hotKey_0} — quadrat"]}}}]);
|
||||
@@ -1,7 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],ca_ES:["barres"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ca_ES:["(Màx.+Mín.+Tancament)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ca_ES:["(Màx+Mín)/2"]}},31882:e=>{e.exports={en:["12-hours"],ca_ES:["12 hores"]}},5797:e=>{e.exports={en:["24-hours"],ca_ES:["24 hores"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ca_ES:["Color de barres en funció del tancament anterior"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"],ca_ES:["Centre"]}},15153:e=>{e.exports={en:["Chart basic styles"],ca_ES:["Estils bàsics del gràfic"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],ca_ES:["Retícula"]}},81849:e=>{e.exports={en:["Currency"],ca_ES:["Divisa"]}},3015:e=>{e.exports={en:["Currency and Unit"],ca_ES:["Divisa i unitat"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ca_ES:["Ajusta dades dels dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ca_ES:["Ajusta els canvis dels contractes"]}},36620:e=>{e.exports={en:["Alerts"],ca_ES:["Alertes"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"],ca_ES:["Tancament mitjà"]}},27567:e=>{e.exports={en:["Bottom"],ca_ES:["Part inferior"]}},3159:e=>{e.exports={en:["Bottom line"],ca_ES:["Línia inferior"]}},74406:e=>{e.exports={en:["Body"],ca_ES:["Cos"]}},333:e=>{e.exports={en:["Borders"],ca_ES:["Vores"]}},79468:e=>{e.exports={en:["Background"],ca_ES:["Fons"]}},10842:e=>{e.exports={en:["Bar change values"],ca_ES:["Valors dels canvis a la barra"]}},28975:e=>{e.exports={en:["Base level"],ca_ES:["Nivell de la base"]}},76473:e=>{e.exports={en:["Bid and ask"],ca_ES:["Compra i venda (bid/ask)"]}},32744:e=>{e.exports={en:["Buttons"],ca_ES:["Botons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"],ca_ES:["Barres descendents"]}},23743:e=>{e.exports={en:["Down color"],ca_ES:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],ca_ES:["Modificació de dades"]}},84838:e=>{e.exports={en:["Date format"],ca_ES:["Format de data"]}},42357:e=>{e.exports={en:["Day of week on labels"],ca_ES:["Dia de la setmana a les etiquetes"]}},16564:e=>{e.exports={en:["Default"],ca_ES:["Predeterminat"]}},78734:e=>{e.exports={en:["Description"],ca_ES:["Descripció"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],ca_ES:["Esdeveniments"]}},41129:e=>{e.exports={en:["Fill"],ca_ES:["Omplir"]}},61112:e=>{e.exports={en:["Fill top area"],ca_ES:["Reomple l'àrea superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],ca_ES:["Omple l'àrea inferior"]}},886:e=>{e.exports={en:["HLC bars"],ca_ES:["Barres amb el màxim, mínim i tancament (HLC)"]}},95406:e=>{e.exports={en:["Horizontal"],ca_ES:["Horitzontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"],
|
||||
ca_ES:["Màxim i mínim"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],ca_ES:["Indicadors"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"],ca_ES:["Estat del mercat obert"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"],ca_ES:["Esquerra"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"],ca_ES:["Marges"]}},68833:e=>{e.exports={en:["Middle"],ca_ES:["Al mig"]}},58589:e=>{e.exports={en:["No overlapping labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"],ca_ES:["Navegació"]}},99709:e=>{e.exports={en:["Name"],ca_ES:["Nom"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],ca_ES:["Escales"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"],ca_ES:["Col·locació d'escales"]}},28715:e=>{e.exports={en:["Status line"],ca_ES:["Línia d'estat"]}},95481:e=>{e.exports={en:["Symbol"],ca_ES:["Símbol"]}},53263:e=>{e.exports={en:["Pane"],ca_ES:["Quadre"]}},82894:e=>{e.exports={en:["Pane separators"],ca_ES:["Separadors del quadre"]}},16207:e=>{e.exports={en:["Percentage"],ca_ES:["Percentatge"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],ca_ES:["Pre/post mercat"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ca_ES:["Informació horària pre/post mercat"]}},59766:e=>{e.exports={en:["Precision"],ca_ES:["Precisió"]}},83811:e=>{e.exports={en:["Previous day close"],ca_ES:["Tancament del dia anterior"]}},35082:e=>{e.exports={en:["Price Scale"],ca_ES:["Escala de preus"]}},27632:e=>{e.exports={en:["Price and percentage value"],ca_ES:["Preu i valor percentual"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"],ca_ES:["Font dels preus"]}},73466:e=>{e.exports={en:["Projection up bars"],ca_ES:["Barres superiors de projecció"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"],ca_ES:["Barres de projecció descendents"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ca_ES:["Preus reals a l'escala (en lloc del preu Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],ca_ES:["Dreta"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],ca_ES:["Marca d'aigua"]}},32163:e=>{e.exports={en:["Wick"],ca_ES:["Metxa"]}},97118:e=>{e.exports={en:["Top"],ca_ES:["Part superior"]}},89349:e=>{e.exports={en:["Top line"],ca_ES:["Línia superior"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],ca_ES:["Alineació del text"]}},67781:e=>{e.exports={en:["Text orientation"],ca_ES:["Orientació del text"]}},20215:e=>{e.exports={
|
||||
en:["Thin bars"],ca_ES:["Barres fines"]}},70198:e=>{e.exports={en:["Title"],ca_ES:["Títol"]}},29854:e=>{e.exports={en:["Titles"],ca_ES:["Títols"]}},5791:e=>{e.exports={en:["Ticker"],ca_ES:["Tíquer"]}},16816:e=>{e.exports={en:["Ticker and description"],ca_ES:["Tíquer i descripció"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"],ca_ES:["Escala de temps"]}},5591:e=>{e.exports={en:["Time hours format"],ca_ES:["Format de les hores"]}},77073:e=>{e.exports={en:["Timezone"],ca_ES:["Zona horària"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],ca_ES:["Unitat"]}},23091:e=>{e.exports={en:["Up color"],ca_ES:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],ca_ES:["Barres superiors"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ca_ES:["Fer servir la liquidació com a tancament en intervals diaris"]}},37644:e=>{e.exports={en:["Volume"],ca_ES:["Volum"]}},51514:e=>{e.exports={en:["Value"],ca_ES:["Valor"]}},31218:e=>{e.exports={en:["Value according to scale"],ca_ES:["Valor conforme a l'escala"]}},60092:e=>{e.exports={en:["Values"],ca_ES:["Valors"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],ca_ES:["espelma"]}},27068:e=>{e.exports={en:["change HLC bars"],ca_ES:["canvia les barres HLC"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],ca_ES:["canvia la visibilitat dels botons de navegació"]}},96227:e=>{e.exports={en:["change open market status visibility"],ca_ES:["canvia la visibilitat de l'estat de mercat obert"]}},43231:e=>{e.exports={en:["change average close price line width"],ca_ES:["canvia ample de la línia del preu mitjà de tancament"]}},47026:e=>{e.exports={en:["change average close price line color"],ca_ES:["canvia color de la línia del preu mitjà de tancament"]}},86866:e=>{e.exports={en:["change area fill color"],ca_ES:["canvia el color de fons de l'àrea"]}},89346:e=>{e.exports={en:["change area line width"],ca_ES:["canvia l'ample de la línia de l'àrea"]}},29605:e=>{e.exports={en:["change area line color"],ca_ES:["canvia el color de la línia de l'àrea"]}},4640:e=>{e.exports={en:["change area price source"],ca_ES:["canvia la font dels preus de l'àrea"]}},98407:e=>{e.exports={en:["change ask line color"],ca_ES:["canvia el color de la línia de venda (ask)"]}},42190:e=>{e.exports={en:["change base level"],ca_ES:["canvia el nivell de referència"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ca_ES:["canvia el color de la línia inferior de la línia de referència"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ca_ES:["canvia l'ample de la línia inferior de la línia de referència"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ca_ES:["canvia el color de fons de l'àrea inferior de la línia de referència"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ca_ES:["canvia el color de fons de l'àrea superior de la línia de referència"]}},68609:e=>{
|
||||
e.exports={en:["change baseline price source"],ca_ES:["canvia la font de preus de referència"]}},69044:e=>{e.exports={en:["change baseline top line color"],ca_ES:["canvia el color de la línia superior de la línia de referència"]}},68197:e=>{e.exports={en:["change baseline top line width"],ca_ES:["canvia l'ample de la línia superior de la línia de referència"]}},33464:e=>{e.exports={en:["change bar up color"],ca_ES:["canvia el color superior de la barra"]}},27426:e=>{e.exports={en:["change bar change visibility"],ca_ES:["canvia la visibilitat del canvi de barra"]}},59622:e=>{e.exports={en:["change bar down color"],ca_ES:["canvia el color inferior de la barra"]}},17919:e=>{e.exports={en:["change bid line color"],ca_ES:["canvia el color de la línia de compra (bid)"]}},32094:e=>{e.exports={en:["change bottom margin"],ca_ES:["canvia el marge inferior"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de divises i unitats"]}},64003:e=>{e.exports={en:["change currency label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta de divises"]}},42803:e=>{e.exports={en:["change chart background color"],ca_ES:["canvia el color de fons del gràfic"]}},41382:e=>{e.exports={en:["change chart background type"],ca_ES:["canvia el tipus de fons del gràfic"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ca_ES:["canvia el color de les barres en funció del valor de tancament anterior"]}},88324:e=>{e.exports={en:["change column up color"],ca_ES:["canvia color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],ca_ES:["canvia color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],ca_ES:["canvia la font del preu de la columna"]}},50544:e=>{e.exports={en:["change crosshair width"],ca_ES:["canvia l'ample de la retícula"]}},92885:e=>{e.exports={en:["change crosshair color"],ca_ES:["canvia el color de la retícula"]}},68418:e=>{e.exports={en:["change crosshair style"],ca_ES:["canvia l'estil de la retícula"]}},43109:e=>{e.exports={en:["change date format"],ca_ES:["canviar el format de data"]}},30418:e=>{e.exports={en:["change day of week on labels"],ca_ES:["canvia dia de la setmana a les etiquetes"]}},82063:e=>{e.exports={en:["change decimal places"],ca_ES:["canvia les posicions decimals"]}},44223:e=>{e.exports={en:["change extended hours color"],ca_ES:["canvia el color de l'horari amplicat"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"],ca_ES:["canvia color de la línia de preu màxim i mínim"]}},39581:e=>{e.exports={en:["change high and low price line width"],ca_ES:["canvia ample de la línia de preus màxims i mínims"]}},6026:e=>{e.exports={en:["change high-low body color"],ca_ES:["canvia el color del cos de màxims i mínims"]}},73021:e=>{e.exports={en:["change high-low body visibility"],
|
||||
ca_ES:["canvia la visibilitat del cos de màxims i mínims"]}},46844:e=>{e.exports={en:["change high-low border color"],ca_ES:["canviar el color de la vora de màxims i mínims"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ca_ES:["canvia la visibilitat de les vores de màxims i mínims"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de màxims i mínims"]}},56961:e=>{e.exports={en:["change high-low labels color"],ca_ES:["canvia el color de les etiquetes de màxims i mínims"]}},21133:e=>{e.exports={en:["change horz grid lines color"],ca_ES:["canvia el color de les línies de la quadrícula horitzontal"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],ca_ES:["canvia la visibilitat dels títols dels indicadors"]}},49583:e=>{e.exports={en:["change indicator values visibility"],ca_ES:["canvia la visibilitat dels valors dels indicadors"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],ca_ES:["canvia la visibilitat dels arguments dels indicadors"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el nom dels indicadors i de la informació financera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el valor dels indicadors i la informació financera"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"],ca_ES:["canvia la transparència del fons de la llegenda"]}},14246:e=>{e.exports={en:["change legend background visibility"],ca_ES:["canvia la visibilitat del fons de la llegenda"]}},88640:e=>{e.exports={en:["change line color"],ca_ES:["canvia el color de línia"]}},41837:e=>{e.exports={en:["change line price source"],ca_ES:["canvia la font de preus de la línia"]}},48339:e=>{e.exports={en:["change line width"],ca_ES:["canvia l'ample de línia"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],ca_ES:["canvia la visibilitat dels botons del quadre"]}},52203:e=>{e.exports={en:["change pane separators color"],ca_ES:["Canvia el color dels separadors de quadres"]}},38730:e=>{e.exports={en:["change post market color"],ca_ES:["canvia el color postmercat"]}},28075:e=>{e.exports={en:["change post market line color"],ca_ES:["canvia el color de la línia postmercat"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ca_ES:["canvia la visibilitat de les línies de preus pre/post mercat"]}},44371:e=>{e.exports={en:["change pre market color"],ca_ES:["canvia el color de la sessió premercat"]}},96114:e=>{e.exports={en:["change pre market line color"],ca_ES:["canvia el color de la línia de la sessió premercat"]}},69814:e=>{e.exports={en:["change previous close price line color"],ca_ES:["canvia el color de la línia amb el preu de tancament anterior"]}},13660:e=>{e.exports={en:["change previous close price line width"],
|
||||
ca_ES:["canvia l'ample de la línia amb el preu de tancament anterior"]}},87861:e=>{e.exports={en:["change price line color"],ca_ES:["canvia el color de la línia de preus"]}},29353:e=>{e.exports={en:["change price line width"],ca_ES:["canvia l'ample de la línia de preus"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"],ca_ES:["canvia el rang de les barres fines"]}},75487:e=>{e.exports={en:["change renko wick down color"],ca_ES:["canvia el color inferior de la metxa renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],ca_ES:["canvia el color inferior de la metxa renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ca_ES:["canvia la visibilitat de les metxes renko"]}},82946:e=>{e.exports={en:["change right margin"],ca_ES:["canvia el marge dret"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"],ca_ES:["canvia el color de la marca d'aigua del símbol"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],ca_ES:["canvia la visibilitat de la marca d'aigua del símbol"]}},88167:e=>{e.exports={en:["change symbol description visibility"],ca_ES:["canvia la visibilitat de la descripció del símbol"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"],ca_ES:["canvia el mode de l'últim valor del símbol"]}},902:e=>{e.exports={en:["change symbol legend format"],ca_ES:["canvia el format de la llegenda del símbol"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"],ca_ES:["canvia el color del text de l'escala"]}},27792:e=>{e.exports={en:["change scales font size"],ca_ES:["canvia la mida de la font de l'escala"]}},94997:e=>{e.exports={en:["change scales lines color"],ca_ES:["canvia el color de la línia de l'escala"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],ca_ES:["canvia la visibilitat dels trencaments de les sessions"]}},28175:e=>{e.exports={en:["change sessions breaks width"],ca_ES:["canvia l'ample dels trencaments de les sessions"]}},33895:e=>{e.exports={en:["change sessions breaks color"],ca_ES:["canvia el color del trencament de les sessions"]}},21641:e=>{e.exports={en:["change sessions breaks style"],ca_ES:["canvia l'estil dels trencaments de les sessions"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ca_ES:["canvia la visualització dels preus reals en l'escala de preus (en lloc del preu Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],ca_ES:["canvia les barres fines"]}},39754:e=>{e.exports={en:["change time hours format"],ca_ES:["canvia el format de les hores"]}},74883:e=>{e.exports={en:["change top margin"],ca_ES:["canvia el marge superior"]}},51250:e=>{e.exports={en:["change unit label visibility"],
|
||||
ca_ES:["canvia la visibilitat de l'etiqueta d'unitats"]}},71805:e=>{e.exports={en:["change vert grid lines color"],ca_ES:["canvia el color de les línies de la quadrícula vertical"]}},96201:e=>{e.exports={en:["change volume values visibility"],ca_ES:["canvia la visibilitat dels valors de volum"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ca_ES:["canvia el color de la vora superior de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ca_ES:["canvia el color superior de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ca_ES:["canvia el color inferior de la metxa de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ca_ES:["canvia el color superior de la metxa de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ca_ES:["canvia la visibilitat de la metxa {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ca_ES:["canvia la visibilitat del cos de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ca_ES:["canvia la visibilitat de la vora de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ca_ES:["canvia el color de la vora inferior de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ca_ES:["canvia el color inferior de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ca_ES:["canvia el color inferior de la vora de la barra de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ca_ES:["canvia el color inferior de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de projecció de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ca_ES:["canvia el color inferior de la barra de projecció de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ca_ES:["canvia el color superior de la barra de projecció de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ca_ES:["canvia el color superior de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],ca_ES:["canvia propietat de {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ca_ES:["ajusta dades dels dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ca_ES:["ajusta per a canvis de contractes"]}},92598:e=>{e.exports={en:["hollow candles"],ca_ES:["espelmes buides"]}},57243:e=>{e.exports={en:["range","ranges"],ca_ES:["rang","rangs"]}},70282:e=>{e.exports={en:["renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ca_ES:["fes servir la liquidació com a tancament en intervals diaris"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],ca_ES:["Fosc"]}},96870:e=>{e.exports={en:["Light"],ca_ES:["Clar"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],ca_ES:["Còpia {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],ca_ES:["S"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],ca_ES:["Color de nivell -0,236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],ca_ES:["Color de nivell -0,382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],ca_ES:["Color de nivell -0,618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],ca_ES:["Color de nivell -0,65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],ca_ES:["Color de nivell 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],ca_ES:["Color de nivell 0,236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],ca_ES:["Color de nivell 0,382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],ca_ES:["Color de nivell 0,5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],ca_ES:["Color de nivell 0,618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],ca_ES:["Color de nivell 0,65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],ca_ES:["Color de nivell 0,786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],ca_ES:["Color de nivell 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],ca_ES:["Color de nivell 1,272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],ca_ES:["Color de nivell 1,414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],ca_ES:["Color de nivell 1,618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],ca_ES:["Color de nivell 1,65"]},e.exports["1st Period_input"]={en:["1st Period"],ca_ES:["Primer període"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],ca_ES:["Color de nivell 2,618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],ca_ES:["Color de nivell 2,65"]},e.exports["2nd Period_input"]={en:["2nd Period"],ca_ES:["Segon període"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],ca_ES:["Color de nivell 3,618"]},
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],ca_ES:["Fosc"]}},96870:e=>{e.exports={en:["Light"],ca_ES:["Clar"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],ca_ES:["Còpia {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],ca_ES:["S"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],ca_ES:["Color de nivell -0,236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],ca_ES:["Color de nivell -0,382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],ca_ES:["Color de nivell -0,618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],ca_ES:["Color de nivell -0,65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],ca_ES:["Color de nivell 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],ca_ES:["Color de nivell 0,236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],ca_ES:["Color de nivell 0,382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],ca_ES:["Color de nivell 0,5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],ca_ES:["Color de nivell 0,618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],ca_ES:["Color de nivell 0,65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],ca_ES:["Color de nivell 0,786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],ca_ES:["Color de nivell 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],ca_ES:["Color de nivell 1,272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],ca_ES:["Color de nivell 1,414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],ca_ES:["Color de nivell 1,618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],ca_ES:["Color de nivell 1,65"]},e.exports["1st Period_input"]={en:["1st Period"],ca_ES:["Primer període"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],ca_ES:["Color de nivell 2,618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],ca_ES:["Color de nivell 2,65"]},e.exports["2nd Period_input"]={en:["2nd Period"],ca_ES:["Segon període"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],ca_ES:["Color de nivell 3,618"]},
|
||||
e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],ca_ES:["Color de nivell 3,65"]},e.exports["3rd Period_input"]={en:["3rd Period"],ca_ES:["Tercer període"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],ca_ES:["Color de nivell 4,236"]},e.exports["4th Period_input"]={en:["4th Period"],ca_ES:["Quart període"]},e.exports["5th Period_input"]={en:["5th Period"],ca_ES:["Cinquè període"]},e.exports["6th Period_input"]={en:["6th Period"],ca_ES:["Sisè període"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],ca_ES:["ADX suavitzat"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],ca_ES:["ADX suavitzat"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"],ca_ES:["Rang veritable mitjà (ATR) mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],ca_ES:["Acumulació/distribució"]},e.exports["All items_combobox_input"]={en:["All items"],ca_ES:["Tots els elements"]},e.exports.All_input={en:["All"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],ca_ES:["Període de referència"]},e.exports["Another symbol_input"]={en:["Another symbol"],ca_ES:["Un altre símbol"]},e.exports["Aroon Down_input"]={en:["Aroon Down"],ca_ES:["Aroon abaix (Aroon Down)"]},e.exports["Aroon Up_input"]={en:["Aroon Up"],ca_ES:["Aroon amunt (Aroon Up)"]},e.exports.Average_input={en:["Average"],ca_ES:["Mitjana"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],ca_ES:["Períodes de la mitjana"]},e.exports.Back_input={en:["Back"],ca_ES:["Enrere"]},e.exports["Bands style_input"]={en:["Bands style"],ca_ES:["Estil de bandes"]},e.exports.Bar_input={en:["Bar"],ca_ES:["Barra"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],ca_ES:["Períodes de la línia de referència"]},e.exports["Base Line_input"]={en:["Base Line"],ca_ES:["Línia de referència"]},e.exports.Basis_input={en:["Basis"],ca_ES:["Base"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],ca_ES:["Bandes de Bollinger %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],ca_ES:["Ample de les bandes de Bollinger"]},e.exports.Borders_input={en:["Borders"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"]},e.exports["Box size_input"]={en:["Box size"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"],ca_ES:["Cancel·la"]},e.exports.Candles_input={en:["Candles"]},e.exports.Centered_input={en:["Centered"],ca_ES:["Centrat"]},e.exports.Century_input={en:["Century"],ca_ES:["Segle"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],ca_ES:["Oscil·lador de Chaikin"]},e.exports["Chande MO_input"]={en:["Chande MO"],ca_ES:["Oscil·lador de moment de Chande"]},e.exports.Close_input={en:["Close"],ca_ES:["Tancament"]},e.exports["Color 0_input"]={en:["Color 0"]},
|
||||
e.exports["Color 1_input"]={en:["Color 1"]},e.exports["Color 2_input"]={en:["Color 2"]},e.exports["Color 3_input"]={en:["Color 3"]},e.exports["Color 4_input"]={en:["Color 4"]},e.exports["Color 5_input"]={en:["Color 5"]},e.exports["Color 6_input"]={en:["Color 6"]},e.exports["Color 7_input"]={en:["Color 7"]},e.exports["Color 8_input"]={en:["Color 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],ca_ES:["Color basat en el tancament anterior"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],ca_ES:["Períodes de la línia de conversió"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],ca_ES:["Línia de conversió"]},e.exports.Correlation_input={en:["Correlation"],ca_ES:["Correlació"]},e.exports.Count_input={en:["Count"],ca_ES:["Recompte"]},e.exports.Crosses_input={en:["Crosses"],ca_ES:["Creus"]},e.exports.Custom_input={en:["Custom"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],ca_ES:["Longitud DI"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],ca_ES:["Dia"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],ca_ES:["Dies per any"]},e.exports.Decade_input={en:["Decade"],ca_ES:["Dècada"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"],ca_ES:["Profunditat"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"],ca_ES:["Oscil·lador del preu sense tendència"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],ca_ES:["Desenvolupa Poc"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],ca_ES:["Desviació (%)"]},e.exports.Deviation_input={en:["Deviation"],ca_ES:["Desviació"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"],ca_ES:["Volum descendent"]},e.exports["Down bars_input"]={en:["Down bars"]},e.exports["Down color_input"]={en:["Down color"]},e.exports["Down fractals_input"]={en:["Down fractals"],ca_ES:["Fractals baixistes"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],ca_ES:["Totes (premercat, mercat, postmercat)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],ca_ES:["Índex de força d'Elder"]},e.exports["Equality Line_input"]={en:["Equality Line"],ca_ES:["Línia d'igualtat"]},e.exports.Exponential_input={en:["Exponential"],ca_ES:["Exponencial"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"],ca_ES:["Amplia POC a la dreta"]},e.exports["Extend Right_input"]={en:["Extend Right"],ca_ES:["Amplia a la dreta"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],ca_ES:["Amplia límit superior de la zona de valor (VAH) a la dreta"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],ca_ES:["Amplia límit inferior de la zona de valor (VAL) a la dreta"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"],
|
||||
ca_ES:["Amplia fins a l'última barra"]},e.exports.Falling_input={en:["Falling"],ca_ES:["Descendent"]},e.exports["Fast Length_input"]={en:["Fast Length"],ca_ES:["Longitud ràpida"]},e.exports["Fast length_input"]={en:["Fast length"],ca_ES:["Longitud ràpida"]},e.exports.Fill_input={en:["Fill"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],ca_ES:["Creixent"]},e.exports["HLC bars_input"]={en:["HLC bars"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],ca_ES:["Requadre de l'histograma"]},e.exports.Histogram_input={en:["Histogram"],ca_ES:["Histograma"]},e.exports["Hull MA_input"]={en:["Hull MA"],ca_ES:["MV de Hull"]},e.exports.Increment_input={en:["Increment"]},e.exports.Indicator_input={en:["Indicator"],ca_ES:["Indicador"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],ca_ES:["Període EMA 1 per a inversors"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],ca_ES:["Període EMA 2 per a inversors"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],ca_ES:["Període EMA 3 per a inversors"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],ca_ES:["Període EMA 4 per a inversors"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],ca_ES:["Període EMA 5 per a inversors"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],ca_ES:["Període EMA 6 per a inversors"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],ca_ES:["Longitud de la mandíbula"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"],ca_ES:["Jaw Offset (mandíbula)"]},e.exports.Jaw_input={en:["Jaw"],ca_ES:["Mandíbula"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],ca_ES:["Posició de les etiquetes"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],ca_ES:["Etiquetes en l'escala de preus"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"]},e.exports["Lagging Span_input"]={en:["Lagging Span"],ca_ES:["Tram de desfasament"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],ca_ES:["Període principal A (Leading Span A)"]},e.exports["Leading Span B_input"]={en:["Leading Span B"],ca_ES:["Període principal B (Leading Span B)"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],ca_ES:["Període principal B (Leading Span B)"]},e.exports["Length EMA_input"]={en:["Length EMA"],ca_ES:["Longitud EMA"]},e.exports["Length MA_input"]={en:["Length MA"],ca_ES:["Longitud MA"]},e.exports.Length1_input={en:["Length1"],ca_ES:["Longitud1"]},e.exports.Length2_input={en:["Length2"],ca_ES:["Longitud2"]},e.exports.Length3_input={en:["Length3"],ca_ES:["Longitud3"]},e.exports.Length_input={en:["Length"],ca_ES:["Longitud"]},e.exports.Level_input={en:["Level"],ca_ES:["Nivell"]},
|
||||
@@ -29,27 +29,27 @@ en:["Volty Expan Close Strategy"],ca_ES:["Estratègia de tancament d'expansió d
|
||||
2569:e=>{e.exports={en:["Change interval"],ca_ES:["Canvia interval"]}},9687:e=>{e.exports={en:["Change interval. Press number or comma"]}},36332:e=>{e.exports={en:["Change symbol. Start typing symbol name"]}},48566:e=>{e.exports={en:["Change scale currency"]}},85110:e=>{e.exports={en:["Change scale unit"]}},56275:e=>{e.exports={en:["Chart #{index}"]}},39950:e=>{e.exports={en:["Chart Properties"]}},98856:e=>{e.exports={en:["Chart by TradingView"]}},1136:e=>{e.exports={en:["Chart for {symbol}, {interval}"]}},69804:e=>{e.exports={en:["Chart image copied to clipboard {emoji}"],ca_ES:["Imatge del gràfic copiada al porta-retalls {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"],ca_ES:["Illes Chatham"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"],ca_ES:["Cercle"]}},14985:e=>{e.exports={en:["Click to set a point"],ca_ES:["Cliqueu per establir un punt"]}},12537:e=>{e.exports={en:["Clone"],ca_ES:["Clona"]}},62578:e=>{e.exports={en:["Close"],ca_ES:["Tancament"]}},264:e=>{e.exports={en:["Create limit order"],ca_ES:["Crea una ordre amb preu límit"]}},6969:e=>{e.exports={en:["Cross"],ca_ES:["Encreuament"]}},74334:e=>{e.exports={en:["Cross Line"],ca_ES:["Línia d'encreuament"]}},59396:e=>{e.exports={en:["Currencies"],ca_ES:["Divises"]}},20177:e=>{e.exports={en:["Current interval and above"],ca_ES:["Interval actual i superior"]}},494:e=>{e.exports={en:["Current interval and below"],ca_ES:["Interval actual i inferior"]}},60668:e=>{e.exports={en:["Current interval only"],ca_ES:["Només intervals actuals"]}},78609:e=>{e.exports={en:["Curve"],ca_ES:["Corba"]}},87380:e=>{e.exports={en:["Cycle"],ca_ES:["Cicle"]}},84031:e=>{e.exports={en:["Cyclic Lines"],ca_ES:["Línies cícliques"]}},93191:e=>{e.exports={en:["Cypher Pattern"],ca_ES:["Patró Cypher"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],ca_ES:["Ja existeix un disseny amb aquest nom"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],ca_ES:["Ja existeix un disseny amb aquest nom. El voleu substituir?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],ca_ES:["Patró ABCD"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"]}},42630:e=>{e.exports={en:["Anchorage"]}},42669:e=>{e.exports={en:["Anchored Text"],ca_ES:["Text ancorat"]}},84541:e=>{e.exports={en:["Anchored VWAP"],ca_ES:["Preu mitjà ponderat per volum (VWAP) ancorat"]}},77401:e=>{e.exports={en:["Access error"]}},46501:e=>{e.exports={en:["Add Symbol"],ca_ES:["Afegeix símbol"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],ca_ES:["Afegeix mètriques financeres a {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],ca_ES:["Afegir indicador/estratègia a {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],ca_ES:["Aplica aquests paràmetres financers a tot el disseny"]}},10996:e=>{e.exports={
|
||||
en:["Add this financial metric to favorites"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],ca_ES:["Afegeix aquest indicador a tot el disseny"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],ca_ES:["Afegeix aquesta estratègia a tot el disseny"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],ca_ES:["Afegeix aquest símbol a tot el disseny"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],ca_ES:["Sempre invisible"]}},36299:e=>{e.exports={en:["Always visible"],ca_ES:["Sempre visible"]}},58026:e=>{e.exports={en:["All intervals"],ca_ES:["Tots els intervals"]}},78358:e=>{e.exports={en:["Apply default"],ca_ES:["Aplica configuració per defecte"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"]}},27072:e=>{e.exports={en:["Apr"],ca_ES:["Abr"]}},59324:e=>{e.exports={en:["Arc"]}},34456:e=>{e.exports={en:["Area"],ca_ES:["Àrea"]}},11858:e=>{e.exports={en:["Arrow"],ca_ES:["Fletxa"]}},34247:e=>{e.exports={en:["Arrow Down"],ca_ES:["Fletxa descendent"]}},36352:e=>{e.exports={en:["Arrow Marker"],ca_ES:["Marcador de fletxa"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],ca_ES:["Marca de la flexa descendent"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],ca_ES:["Marca de la fletxa cap a l'esquerra"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],ca_ES:["Marca de la fletxa cap a la dreta"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],ca_ES:["Marca de la fletxa cap amunt"]}},77231:e=>{e.exports={en:["Arrow Up"],ca_ES:["Fletxa cap amunt"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],ca_ES:["Asgabad"]}},72445:e=>{e.exports={en:["At close"],ca_ES:["Al tancament"]}},73702:e=>{e.exports={en:["Athens"],ca_ES:["Atenes"]}},21469:e=>{e.exports={en:["Auto"],ca_ES:["Automàtic"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],ca_ES:["Automàtic (adapta les dades a la pantalla)"]}},46450:e=>{e.exports={en:["Aug"],ca_ES:["Ag"]}},21841:e=>{e.exports={en:["Average close price label"]}},16138:e=>{e.exports={en:["Average close price line"]}},73025:e=>{e.exports={en:["Avg"],ca_ES:["Mitjana"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"],ca_ES:["Bogotà"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"],ca_ES:["Globus"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"],ca_ES:["Barres"]}},81994:e=>{e.exports={en:["Bars Pattern"],ca_ES:["Patró de barres"]}},59213:e=>{e.exports={en:["Baseline"],ca_ES:["Línia de referència"]}},71797:e=>{e.exports={en:["Belgrade"],ca_ES:["Belgrad"]}},64313:e=>{e.exports={en:["Berlin"],ca_ES:["Berlín"]}},43539:e=>{e.exports={en:["Brush"],
|
||||
ca_ES:["Pinzell"]}},91499:e=>{e.exports={en:["Brussels"],ca_ES:["Brussel·les"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],ca_ES:["Mou més endavant"]}},17293:e=>{e.exports={en:["Bring to front"],ca_ES:["Mou cap endavant"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"],ca_ES:["Bucarest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],ca_ES:["Per TradingView"]}},54280:e=>{e.exports={en:["Go to date"],ca_ES:["Anar a la data"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],ca_ES:["Aneu a {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],ca_ES:["Entesos"]}},47460:e=>{e.exports={en:["Gann Box"],ca_ES:["Quadrícula de Gann"]}},48683:e=>{e.exports={en:["Gann Fan"],ca_ES:["Ventall de Gann"]}},44763:e=>{e.exports={en:["Gann Square"],ca_ES:["Quadrat de Gann"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],ca_ES:["Quadrat de Gann fixat"]}},46808:e=>{e.exports={en:["Ghost Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"],ca_ES:["Gran supercicle"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],ca_ES:["De debò que voleu eliminar l'estudi i tots els fills?"]}},77125:e=>{e.exports={en:["Double Curve"],ca_ES:["Doble corba"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],ca_ES:["Feu doble clic a qualsevol de les vores per restablir la quadrícula de la plantilla"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],ca_ES:["Feu doble clic per acabar la ruta (path)"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],ca_ES:["Feu doble clic per acabar la polilínia"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"]}},57131:e=>{e.exports={en:["Data Provided by"],ca_ES:["Dades proporcionades per"]}},22677:e=>{e.exports={en:["Date"],ca_ES:["Data"]}},85444:e=>{e.exports={en:["Date Range"],ca_ES:["Rang de dates"]}},47017:e=>{e.exports={en:["Date and Price Range"],ca_ES:["Rang de data i preu"]}},32084:e=>{e.exports={en:["Dec"],ca_ES:["Des"]}},23403:e=>{e.exports={en:["Degree"],ca_ES:["Grau"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],ca_ES:["Diamant"]}},91544:e=>{e.exports={en:["Disjoint Channel"],ca_ES:["Canal disjunt"]}},70132:e=>{e.exports={en:["Displacement"],ca_ES:["Desplaçament"]}},93864:e=>{e.exports={en:["Drawings toolbar"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"],ca_ES:["Dublín"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],ca_ES:["Introduïu un nou nom per al disseny del gràfic"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],ca_ES:["Ona correctiva d'Elliott (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],
|
||||
ca_ES:["Ona d'Elliott de doble combinació (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],ca_ES:["Ona d'impuls d'Elliott (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],ca_ES:["Ona triangular d'Elliott (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],ca_ES:["Ona d'Elliott de triple combinació (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],ca_ES:["El·lipse"]}},52788:e=>{e.exports={en:["Extended Line"],ca_ES:["Línia ampliada"]}},86905:e=>{e.exports={en:["Exchange"],ca_ES:["Mercat borsari"]}},19271:e=>{e.exports={en:["Existing pane above"],ca_ES:["Quadre existent amunt"]}},46545:e=>{e.exports={en:["Existing pane below"],ca_ES:["Quadre existent per sota"]}},20138:e=>{e.exports={en:["Forecast"],ca_ES:["Previsió"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],ca_ES:["Canal de Fibonacci"]}},82330:e=>{e.exports={en:["Fib Circles"],ca_ES:["Cicles de Fibonacci"]}},55986:e=>{e.exports={en:["Fib Retracement"],ca_ES:["Retrocés de Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],ca_ES:["Arcs de Fibonacci de resistència de velocitat"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],ca_ES:["Ventall de Fibonacci de resistència de velocitat"]}},39014:e=>{e.exports={en:["Fib Spiral"],ca_ES:["Espiral de Fibonacci"]}},30622:e=>{e.exports={en:["Fib Time Zone"],ca_ES:["Zona horària de Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],ca_ES:["Falca de Fibonacci"]}},33885:e=>{e.exports={en:["Flag"],ca_ES:["Bandera"]}},14600:e=>{e.exports={en:["Flag Mark"],ca_ES:["Marca amb bandera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],ca_ES:["Pla superior/inferior"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],ca_ES:["La part de la fracció no és correcta."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],ca_ES:["Ja no estan disponibles els estudis fonamentals als gràfics."]}},31561:e=>{e.exports={en:["Kolkata"],ca_ES:["Calcuta"]}},54533:e=>{e.exports={en:["Kathmandu"],ca_ES:["Katmandú"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],ca_ES:["Espelmes buides"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],ca_ES:["Línia horitzontal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],ca_ES:["Semirecta horitzontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],ca_ES:["Cap i espatlles"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"],ca_ES:["Hèlsinki"]}},27298:e=>{e.exports={en:["Hide"],ca_ES:["Oculta"]}},47074:e=>{e.exports={en:["Hide all"],ca_ES:["Amaga-ho tot"]}},52563:e=>{e.exports={en:["Hide all drawings"],ca_ES:["Oculta tots els dibuixos"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],
|
||||
ca_ES:["Oculta tots els dibuixos i indicadors"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],ca_ES:["Amaga tots els dibuixos, indicadors, posicions i ordres"]}},78525:e=>{e.exports={en:["Hide all indicators"],ca_ES:["Oculta tots els indicadors"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],ca_ES:["Amaga totes les posicions i ordres"]}},3217:e=>{e.exports={en:["Hide drawings"],ca_ES:["Oculta dibuixos"]}},97878:e=>{e.exports={en:["Hide events on chart"],ca_ES:["Amaga esdeveniments al gràfic"]}},72351:e=>{e.exports={en:["Hide indicators"],ca_ES:["Oculta indicadors"]}},28345:e=>{e.exports={en:["Hide marks on bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"],ca_ES:["Amaga posicions i ordres"]}},78254:e=>{e.exports={en:["High"],ca_ES:["Màxim"]}},98236:e=>{e.exports={en:["High-low"],ca_ES:["Màxim-mínim"]}},99479:e=>{e.exports={en:["High and low price labels"],ca_ES:["Etiquetes de preus màxims i mínims"]}},33766:e=>{e.exports={en:["High and low price lines"],ca_ES:["Línies de preus màxims i mínims"]}},69476:e=>{e.exports={en:["Highlighter"],ca_ES:["Ressaltador"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"],ca_ES:["Imatge"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],ca_ES:["Intermediari"]}},14285:e=>{e.exports={en:["Invalid Symbol"],ca_ES:["Símbol incorrecte"]}},52969:e=>{e.exports={en:["Invalid symbol"],ca_ES:["Símbol incorrecte"]}},37189:e=>{e.exports={en:["Invert scale"],ca_ES:["Escala invertida"]}},89999:e=>{e.exports={en:["Indexed to 100"],ca_ES:["Indexat a 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"],ca_ES:["Línia d'informació"]}},87829:e=>{e.exports={en:["Insert indicator"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],ca_ES:["Trident intern (Inside Pitchfork)"]}},37913:e=>{e.exports={en:["Icon"],ca_ES:["Icona"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"],ca_ES:["Gen"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],ca_ES:["Vaja!"]}},51221:e=>{e.exports={
|
||||
en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"],ca_ES:["Obertura"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],ca_ES:["Mínim"]}},51077:e=>{e.exports={en:["Lock"],ca_ES:["Bloqueja"]}},79777:e=>{e.exports={en:["Lock/unlock"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],ca_ES:["Bloqueja la línia vertical del cursor per temps"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],ca_ES:["Bloqueja la relació preu/barra"]}},16170:e=>{e.exports={en:["Logarithmic"],ca_ES:["Logarítmic"]}},19439:e=>{e.exports={en:["London"],ca_ES:["Londres"]}},74832:e=>{e.exports={en:["Long Position"],ca_ES:["Posició llarga"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],ca_ES:["Etiqueta descendent"]}},52402:e=>{e.exports={en:["Label Up"],ca_ES:["Etiqueta ascendent"]}},5119:e=>{e.exports={en:["Labels"],ca_ES:["Etiquetes"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],ca_ES:["Línia"]}},9394:e=>{e.exports={en:["Line with markers"],ca_ES:["Amb marcadors"]}},43588:e=>{e.exports={en:["Line break"],ca_ES:["Trencament de línia"]}},56982:e=>{e.exports={en:["Lines"],ca_ES:["Línies"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],ca_ES:["Enllaç a la imatge del gràfic copiat al porta-retalls {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],ca_ES:["Lisboa"]}},81038:e=>{e.exports={en:["Luxembourg"],ca_ES:["Luxemburg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],ca_ES:["Moveu el punt per posicionar l'ancoratge i després toqueu per col·locar-lo"]}},35049:e=>{e.exports={en:["Move to"],ca_ES:["Moure a"]}},26493:e=>{e.exports={en:["Move scale to left"],ca_ES:["Moure escala cap a l'esquerra"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],ca_ES:["Modificar Trident de Schiff"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"],ca_ES:["Moscou"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],ca_ES:["Març"]}},73332:e=>{e.exports={en:["Mexico City"],ca_ES:["Ciutat de Mèxic"]}},88314:e=>{e.exports={en:["Merge all scales into one"],ca_ES:["Combina totes les escales en una"]}},54215:e=>{e.exports={en:["Mixed"],ca_ES:["Mixt"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"],ca_ES:["Mil·lenni"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"],ca_ES:["Minúscul"]}},9865:e=>{e.exports={en:["Muscat"],ca_ES:["Masqat"]}},96935:e=>{e.exports={en:["N/A"],ca_ES:["No disponible"]}},36252:e=>{e.exports={en:["No data here"],ca_ES:["Aquí no hi ha dades"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],ca_ES:["Sense escala (pantalla completa)"]}},9140:e=>{e.exports={en:["No sync"],
|
||||
ca_ES:["No sincronitzis"]}},50910:e=>{e.exports={en:["No volume data"],ca_ES:["Sense dades sobre el volum"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],ca_ES:["Nota"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],ca_ES:["Illa de Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"],ca_ES:["Nova York"]}},66103:e=>{e.exports={en:["New Zealand"],ca_ES:["Nova Zelanda"]}},15512:e=>{e.exports={en:["New pane above"],ca_ES:["Nou quadre superior"]}},52160:e=>{e.exports={en:["New pane below"],ca_ES:["Nou quadre inferior"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],ca_ES:["Alguna cosa ha anat malament"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],ca_ES:["Alguna cosa ha anat malament. Si us plau, torneu-ho a intentar més tard."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],ca_ES:["Desa nou disseny de gràfic"]}},76266:e=>{e.exports={en:["Save as"],ca_ES:["Desa com a"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],ca_ES:["Només gràfic de preus a escala"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],ca_ES:["Trident de Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],ca_ES:["Opcions de configuració"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],ca_ES:["La segona part de la fracció no és correcta"]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],ca_ES:["Envia al fons"]}},71179:e=>{e.exports={en:["Send backward"],ca_ES:["Envia cap enrere"]}},26820:e=>{e.exports={en:["Seoul"],ca_ES:["Seül"]}},6816:e=>{e.exports={en:["Sep"],ca_ES:["Set"]}},94031:e=>{e.exports={en:["Session"],ca_ES:["Sessió"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],ca_ES:["Trencament de les sessions"]}},1852:e=>{e.exports={en:["Shanghai"],ca_ES:["Xangai"]}},8075:e=>{e.exports={en:["Short Position"],ca_ES:["Posició curta"]}},98334:e=>{e.exports={en:["Show"],ca_ES:["Mostra"]}},85891:e=>{e.exports={en:["Show all drawings"],ca_ES:["Mostra tots els dibuixos"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],ca_ES:["Mostra tots els dibuixos i indicadors"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],ca_ES:["Mostra tots els dibuixos, indicadors, posicions i ordres"]}},98753:e=>{e.exports={en:["Show all indicators"],ca_ES:["Mostra tots els indicadors"]}},55418:e=>{e.exports={en:["Show all ideas"],ca_ES:["Mostra totes les idees"]}},20506:e=>{e.exports={en:["Show all positions & orders"],ca_ES:["Mostra totes les posicions i ordres"]}},33158:e=>{e.exports={
|
||||
en:["Show continuous contract switch"],ca_ES:["Mostra el canvi continu de contracte"]}},81465:e=>{e.exports={en:["Show contract expiration"],ca_ES:["Mostra el venciment del contracte"]}},29449:e=>{e.exports={en:["Show dividends"],ca_ES:["Mostra dividends"]}},37113:e=>{e.exports={en:["Show earnings"],ca_ES:["Mostra beneficis"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],ca_ES:["Mostra idees d'usuaris seguits"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],ca_ES:["Mostra només les meves idees"]}},50849:e=>{e.exports={en:["Show splits"],ca_ES:["Mostra splits"]}},67751:e=>{e.exports={en:["Signpost"],ca_ES:["Senyal"]}},77377:e=>{e.exports={en:["Singapore"],ca_ES:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"],ca_ES:["Línia del sinus"]}},66205:e=>{e.exports={en:["Square"],ca_ES:["Quadrat"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],ca_ES:["S'ha excedit el límit d'estudis: {number} per diseny.\nElimineu alguns estudis."]}},92516:e=>{e.exports={en:["Style"],ca_ES:["Estil"]}},61507:e=>{e.exports={en:["Stack on the left"],ca_ES:["Apila a l'esquerra"]}},97800:e=>{e.exports={en:["Stack on the right"],ca_ES:["Apila a la dreta"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"]}},69217:e=>{e.exports={en:["Step line"],ca_ES:["Línia de pasos (step)"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"],ca_ES:["Estocolm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"],ca_ES:["Submil·lenni"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"],ca_ES:["Supercicle"]}},3348:e=>{e.exports={en:["Supermillennium"],ca_ES:["Supermil·lenni"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],ca_ES:["Error de símbol"]}},32390:e=>{e.exports={en:["Symbol name label"],ca_ES:["Etiqueta amb el nom del símbol"]}},10127:e=>{e.exports={en:["Symbol last price label"],ca_ES:["Etiqueta del símbol amb l'últim preu"]}},39079:e=>{e.exports={en:["Sync globally"],ca_ES:["Sincronitza globalment"]}},46607:e=>{e.exports={en:["Sync in layout"],ca_ES:["Sincronitza disseny gràfic"]}},76519:e=>{e.exports={en:["Point & figure"],ca_ES:["Punt i figura"]}},39949:e=>{e.exports={en:["Polyline"],ca_ES:["Polilínia"]}},371:e=>{e.exports={en:["Path"],ca_ES:["Ruta (Path)"]}},59256:e=>{e.exports={en:["Parallel Channel"],ca_ES:["Canal paral·lel"]}},61879:e=>{e.exports={en:["Paris"],ca_ES:["París"]}},35140:e=>{e.exports={en:["Paste"],ca_ES:["Enganxa"]}},6919:e=>{e.exports={en:["Percent"],ca_ES:["Percentatge"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"],ca_ES:["Trident ventall o Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],ca_ES:["Trident (Pitchfork)"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={
|
||||
en:["Pin to new left scale"],ca_ES:["Fixa a la nova escala esquerra"]}},28280:e=>{e.exports={en:["Pin to new right scale"],ca_ES:["Fixa a la nova escala dreta"]}},14115:e=>{e.exports={en:["Pin to left scale"],ca_ES:["Fixa a l'escala esquerra"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],ca_ES:["Fixa a l'escala esquerra (ocult)"]}},81054:e=>{e.exports={en:["Pin to right scale"],ca_ES:["Fixa a escala dreta"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],ca_ES:["Fixa a l'escala dreta (ocult)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],ca_ES:["Fixa a escala (ara a l'esquerra)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],ca_ES:["Fixa a escala (ara sense escala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],ca_ES:["Fixa a escala (ara a la dreta)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],ca_ES:["Fixa a l'escala (ara {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],ca_ES:["Fixa a escala {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],ca_ES:["Fixa a l'escala {label} (ocult)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],ca_ES:["Fixat a l'escala esquerra"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],ca_ES:["Fixat a l'escala esquerra (ocult)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],ca_ES:["Fixat a l'escala dreta"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],ca_ES:["Fixat a escala dreta (ocult)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],ca_ES:["Fixat a l'escala {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],ca_ES:["Fixat a l'escala {label} (ocult)"]}},71566:e=>{e.exports={en:["Plus button"],ca_ES:['Botó "més"']}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],ca_ES:["Si us plau, doneu-nos permís d'escriptura des del porta-retalls al seu navegador o pitjeu {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],ca_ES:["Mantingueu pressionada la tecla {key} mentre feu zoom per mantenir la posició del gràfic"]}},91282:e=>{e.exports={en:["Price Label"],ca_ES:["Etiqueta de preu"]}},97512:e=>{e.exports={en:["Price Note"],ca_ES:["Nota sobre preus"]}},68941:e=>{e.exports={en:["Price Range"],ca_ES:["Rang de preus"]}},66123:e=>{e.exports={en:["Price format is invalid."],ca_ES:["El format del preu no és correcte."]}},72926:e=>{e.exports={en:["Price line"],ca_ES:["Línia de preus"]}},59189:e=>{e.exports={en:["Primary"],ca_ES:["Primari"]}},75747:e=>{e.exports={en:["Projection"],ca_ES:["Projeccions"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],ca_ES:["Publicat a {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],
|
||||
ca_ES:["Rectangle girat"]}},52961:e=>{e.exports={en:["Rome"],ca_ES:["Roma"]}},50318:e=>{e.exports={en:["Ray"],ca_ES:["Semirecta"]}},55169:e=>{e.exports={en:["Range"],ca_ES:["Rang"]}},13386:e=>{e.exports={en:["Reykjavik"],ca_ES:["Reykjavík"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"],ca_ES:["Repetir"]}},2460:e=>{e.exports={en:["Regression Trend"],ca_ES:["Tendència de regressió"]}},67410:e=>{e.exports={en:["Remove"],ca_ES:["Treure"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"],ca_ES:["Elimina {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],ca_ES:["Elimina {drawings} i {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],ca_ES:["Elimina {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],ca_ES:["Canvia el nom del disseny del gràfic"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],ca_ES:["Reinicia escala de preus"]}},54170:e=>{e.exports={en:["Reset time scale"]}},37974:e=>{e.exports={en:["Riyadh"],ca_ES:["Riad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"],ca_ES:["Advertència"]}},5959:e=>{e.exports={en:["Warsaw"],ca_ES:["Varsòvia"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],ca_ES:["Tòquio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],ca_ES:["Teheran"]}},93553:e=>{e.exports={en:["Template"],ca_ES:["Plantilla"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],ca_ES:["El proveïdor de dades no proporciona dades sobre el volum per a aquest símbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],ca_ES:["No hi ha dades per al període i interval de temps del gràfic que ha seleccionat."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],ca_ES:["Símbol només disponible a {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={
|
||||
en:["Three Drives Pattern"],ca_ES:["Patró de tres impulsos"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"],ca_ES:["Hora"]}},20909:e=>{e.exports={en:["Time zone"]}},46852:e=>{e.exports={en:["Time Cycles"],ca_ES:["Cicles de temps"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"],ca_ES:["Negocieu"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"],ca_ES:["Angle de tendència"]}},97339:e=>{e.exports={en:["Trend Line"],ca_ES:["Línia de tendència"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],ca_ES:["Extensió de Fibonacci basada en tendències"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],ca_ES:["Zona temporal de Fibonacci basada en tendències"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"],ca_ES:["Triangle descendent"]}},90148:e=>{e.exports={en:["Triangle Pattern"],ca_ES:["Patró de triangle"]}},21236:e=>{e.exports={en:["Triangle Up"],ca_ES:["Triangle ascendent"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],ca_ES:["Desfer"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"],ca_ES:["Unitats"]}},11768:e=>{e.exports={en:["Unknown error"],ca_ES:["Error desconegut"]}},99894:e=>{e.exports={en:["Unlock"],ca_ES:["Desbloqueja"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],ca_ES:["Perfil de volum amb rang fix (Volume Profile Fixed Range)"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],ca_ES:["Línia vertical"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"],ca_ES:["Vílnius"]}},40091:e=>{e.exports={en:["Visibility"],ca_ES:["Visibilitat"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],ca_ES:["Visible en passar el ratolí"]}},4077:e=>{e.exports={en:["Visual order"],ca_ES:["Ordre visual"]}},11316:e=>{e.exports={en:["X Cross"],ca_ES:["Creu en X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],ca_ES:["Patró XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{
|
||||
e.exports={en:["Zurich"],ca_ES:["Zuric"]}},47977:e=>{e.exports={en:["change Elliott degree"],ca_ES:["canvia el grau d'Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],ca_ES:["canvia les etiquetes no superposades"]}},76852:e=>{e.exports={en:["change average close price label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta del preu mitjà de tancament"]}},1022:e=>{e.exports={en:["change average close price line visibility"],ca_ES:["canvia la visibilitat de la línia del preu mitjà de tancament"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de compra i venda (bid and ask)"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],ca_ES:["canvia la visibilitat de les línies de compra i venda (bid and ask)"]}},32302:e=>{e.exports={en:["change currency"],ca_ES:["canvia divisa"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],ca_ES:["canvia la plantilla del gràfic de {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],ca_ES:["canvia la visibilitat del canvi continu de contracte"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],ca_ES:["canvia la visibilitat del compte enrere del tancament de barra"]}},16979:e=>{e.exports={en:["change date range"],ca_ES:["canvia el rang de dates"]}},53929:e=>{e.exports={en:["change dividends visibility"],ca_ES:["canvia la visibilitat dels dividends"]}},6119:e=>{e.exports={en:["change events visibility on chart"],ca_ES:["canvia la visibilitat dels esdeveniments al gràfic"]}},6819:e=>{e.exports={en:["change earnings visibility"],ca_ES:["canvia la visibilitat dels beneficis"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],ca_ES:["canvia visibilitat del venciment dels contractes de futurs"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de preus màxims i mínims"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],ca_ES:["canvia la visibilitat de les línies de preus màxims i mínims"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb els noms dels indicadors"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el valor dels indicadors"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"],ca_ES:["canvia la visibilitat del botó +"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta de preus pre/post mercat"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],ca_ES:["canvia la visibilitat de la línia de preus pre/post mercat"]}},58419:e=>{e.exports={
|
||||
en:["change previous close price line visibility"],ca_ES:["canvia la visibilitat de la línia de preus del tancament anterior"]}},8662:e=>{e.exports={en:["change price line visibility"],ca_ES:["canvia la visibilitat de la línia amb els preus"]}},2509:e=>{e.exports={en:["change price to bar ratio"],ca_ES:["canvia la ràtio preu/barra"]}},32829:e=>{e.exports={en:["change resolution"],ca_ES:["canvia resolució"]}},35400:e=>{e.exports={en:["change symbol"],ca_ES:["canvia símbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de símbols"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],ca_ES:["canvia la visibilitat de l'últim valor dels símbols"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],ca_ES:["canvia la visibilitat amb el valor del tancament anterior dels símbols"]}},87041:e=>{e.exports={en:["change session"],ca_ES:["canvia la sessió"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"],ca_ES:["canvia la visibilitat dels splits"]}},20137:e=>{e.exports={en:["change timezone"],ca_ES:["canvia la zona horària"]}},85975:e=>{e.exports={en:["change unit"],ca_ES:["canvia unitat"]}},1924:e=>{e.exports={en:["change visibility"],ca_ES:["canvia la visibilitat"]}},84331:e=>{e.exports={en:["change visibility at current interval"],ca_ES:["canvia visibilitat de l'interval actual"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],ca_ES:["canvia la visibilitat a l'interval actual i superior"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],ca_ES:["canvia visibilitat de l'interval actual i inferior"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],ca_ES:["canvia visibilitat de tots els intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],ca_ES:["clona les eines de línies"]}},46219:e=>{e.exports={en:["create line tools group"],ca_ES:["crea grup d'eines de línies"]}},95394:e=>{e.exports={en:["create line tools group from selection"],ca_ES:["crea el grup d'eines de línies a partir de la selecció"]}},12898:e=>{e.exports={en:["create {tool}"],ca_ES:["crea {tool}"]}},94227:e=>{e.exports={en:["cut sources"],ca_ES:["retalla fonts"]}},11500:e=>{e.exports={en:["cut {title}"],ca_ES:["retalla {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],ca_ES:["afegeix l'eina de línies {lineTool} al grup {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],ca_ES:["afegeix eine(s) de línia al grup {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],ca_ES:["afegeix aquests paràmetres financers a tot el disseny"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],ca_ES:["afegeix aquest indicador a tot el disseny"]}},58156:e=>{e.exports={
|
||||
en:["add this strategy to entire layout"],ca_ES:["afegeix aquesta estratègia a tot el disseny"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],ca_ES:["afegeix aquest símbol a tot el disseny"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"],ca_ES:["aplica esquema al gràfic"]}},99551:e=>{e.exports={en:["apply all chart properties"],ca_ES:["aplica totes les propietats del gràfic"]}},89720:e=>{e.exports={en:["apply drawing template"],ca_ES:["aplica plantilla de dibuix"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],ca_ES:["aplica els valors per defecte de fàbrica a les fonts seleccionades"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],ca_ES:["aplica els indicadors a tot el disseny"]}},69604:e=>{e.exports={en:["apply study template {template}"],ca_ES:["aplica la plantilla d'estudi {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],ca_ES:["aplica l'esquema de la barra d'eines"]}},1979:e=>{e.exports={en:["bring group {title} forward"],ca_ES:["porta grup de {title} endavant"]}},53159:e=>{e.exports={en:["bring {title} to front"],ca_ES:["portar {title} endavant"]}},41966:e=>{e.exports={en:["bring {title} forward"],ca_ES:["porta {title} cap endavant"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"],ca_ES:["bloqueig rang de dates"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],ca_ES:["exclou les eines de línies del grup {group}"]}},13017:e=>{e.exports={en:["hide {title}"],ca_ES:["oculta {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"]}},56558:e=>{e.exports={en:["interval lock"],ca_ES:["bloqueja interval"]}},6830:e=>{e.exports={en:["invert scale"],ca_ES:["Escala invertida"]}},48818:e=>{e.exports={en:["insert {title}"],ca_ES:["introdueix {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],ca_ES:["introdueix {title} després de {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],ca_ES:["afegeix {title} després de {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],ca_ES:["afegeix {title} abans de {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],ca_ES:["afegeix {title} abans de {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],ca_ES:["carrega la plantilla de dibuix per defecte"]}},62011:e=>{e.exports={en:["loading..."],ca_ES:["carregant..."]}},76104:e=>{e.exports={en:["lock {title}"],ca_ES:["bloqueja {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],ca_ES:["bloqueja grup {group}"]}},18942:e=>{e.exports={en:["lock objects"],ca_ES:["bloqueja objectes"]}},98277:e=>{e.exports={en:["move"],ca_ES:["moviment"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],ca_ES:["mou {title} a la nova escala esquerra"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],ca_ES:["mou {title} a la nova escala de la dreta"]}},64077:e=>{e.exports={en:["move all scales to left"],
|
||||
ca_ES:["mou totes les escales a l'esquerra"]}},19013:e=>{e.exports={en:["move all scales to right"],ca_ES:["moure totes les escales a la dreta"]}},52510:e=>{e.exports={en:["move drawing(s)"],ca_ES:["mou dibuix(os)"]}},79209:e=>{e.exports={en:["move left"],ca_ES:["mou cap a l'esquerra"]}},60114:e=>{e.exports={en:["move right"],ca_ES:["mou cap a la dreta"]}},44854:e=>{e.exports={en:["move scale"],ca_ES:["mou escala"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],ca_ES:["crea {title} sense escala (pantalla completa)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],ca_ES:["fes que no es vegi el grup {group}"]}},45987:e=>{e.exports={en:["make group {group} visible"],ca_ES:["fes visible el grup {group}"]}},78055:e=>{e.exports={en:["merge down"],ca_ES:["uneix per sota"]}},41866:e=>{e.exports={en:["merge to pane"],ca_ES:["uneix al quadre"]}},52458:e=>{e.exports={en:["merge up"],ca_ES:["uneix per dalt"]}},90091:e=>{e.exports={en:["n/a"],ca_ES:["No disponible"]}},94981:e=>{e.exports={en:["scale price"],ca_ES:["escala de preus"]}},63796:e=>{e.exports={en:["scale price chart only"],ca_ES:["Només gràfic de preus a escala"]}},70771:e=>{e.exports={en:["scale time"],ca_ES:["escala de temps"]}},42070:e=>{e.exports={en:["scroll"],ca_ES:["desplaçar-se"]}},87840:e=>{e.exports={en:["scroll time"],ca_ES:["desplaça per l'horari"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],ca_ES:["envia {title} cap enrere"]}},5005:e=>{e.exports={en:["send {title} to back"],ca_ES:["envia {title} enrere"]}},69546:e=>{e.exports={en:["send group {title} backward"],ca_ES:["envia grup de {title} enrere"]}},63934:e=>{e.exports={en:["share line tools globally"],ca_ES:["comparteix les eines de línia globalment"]}},90221:e=>{e.exports={en:["share line tools in layout"],ca_ES:["comparteix les eines de línia de la plantilla"]}},13336:e=>{e.exports={en:["show all ideas"],ca_ES:["mostra totes les idees"]}},91395:e=>{e.exports={en:["show ideas of followed users"],ca_ES:["mostra les idees dels usuaris seguits"]}},57460:e=>{e.exports={en:["show my ideas only"],ca_ES:["mostra només les meves idees"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"],ca_ES:["deixa de sincronitzar els dibuixos"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],ca_ES:["deixa de sincronitzar les eines de línia"]}},53278:e=>{e.exports={en:["symbol lock"],ca_ES:["bloqueja símbol"]}},91677:e=>{e.exports={en:["sync time"],ca_ES:["temps de sincronització"]}},3140:e=>{e.exports={en:["powered by"],ca_ES:["amb tecnologia de"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],ca_ES:["enganxa dibuix"]}},1064:e=>{e.exports={en:["paste indicator"],ca_ES:["enganxa indicador"]}},57010:e=>{e.exports={en:["paste {title}"],ca_ES:["enganxa {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],ca_ES:["fixa a l'escala esquerra"]}},7495:e=>{e.exports={en:["pin to right scale"],
|
||||
ca_ES:["Fixa a escala dreta"]}},81566:e=>{e.exports={en:["pin to scale {label}"],ca_ES:["fixa a escala {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],ca_ES:["reordena quadres"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],ca_ES:["elimina les línies en blanc no seleccionades"]}},30538:e=>{e.exports={en:["remove drawings"],ca_ES:["elimina dibuixos"]}},1193:e=>{e.exports={en:["remove drawings group"],ca_ES:["elimina grup de dibuixos"]}},38199:e=>{e.exports={en:["remove line data sources"],ca_ES:["elimina les fonts de dades de les línies"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"],ca_ES:["elimina {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],ca_ES:["elimina el grup d'eines de línies {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],ca_ES:["canvia el nom del grup {group} a {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],ca_ES:["restableix la mida de la plantilla"]}},3323:e=>{e.exports={en:["reset scales"],ca_ES:["restableix escala"]}},17336:e=>{e.exports={en:["reset time scale"],ca_ES:["reinicia escala de temps"]}},47418:e=>{e.exports={en:["resize layout"],ca_ES:["canvia la mida de la plantilla"]}},85815:e=>{e.exports={en:["restore defaults"],ca_ES:["restableix valors per defecte"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"],ca_ES:["alterna l'escala automàtica"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"],ca_ES:["alterna bloquejar escala"]}},49403:e=>{e.exports={en:["toggle log scale"],ca_ES:["alterna l'escala logarítmica"]}},98994:e=>{e.exports={en:["toggle percentage scale"],ca_ES:["alterna l'escala de percentatges"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"],ca_ES:["controla el temps"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],ca_ES:["desactiva la possibilitat de compartir eines de línia"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"],ca_ES:["desbloqueja objectes"]}},74590:e=>{e.exports={en:["unlock group {group}"],ca_ES:["desbloqueja el grup {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],ca_ES:["desbloqueja {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],ca_ES:["desagrupa al nou quadre inferior"]}},79443:e=>{e.exports={en:["unmerge up"],ca_ES:["desagrupa per dalt"]}},46453:e=>{e.exports={en:["unmerge down"],ca_ES:["desagrupa per sota"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"],ca_ES:["{count} barres"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],
|
||||
ca_ES:["Informació financera de {symbol} per TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],ca_ES:["{userName} ha publicat a {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],ca_ES:["augmenta"]}},73638:e=>{e.exports={en:["zoom out"],ca_ES:["allunya"]}},41807:e=>{e.exports={en:["day","days"],ca_ES:["dia","dies"]}},42328:e=>{e.exports={en:["hour","hours"],ca_ES:["hora","hores"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"],ca_ES:["minut","minuts"]}},33232:e=>{e.exports={en:["second","seconds"],ca_ES:["segon","segons"]}},89937:e=>{e.exports={en:["range","ranges"],ca_ES:["rang","rangs"]}},48898:e=>{e.exports={en:["week","weeks"],ca_ES:["setmana","setmanes"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],ca_ES:["{amount} dibuix","{amount} dibuixos"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],ca_ES:["{amount} indicador","{amount} indicadors"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],ca_ES:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],ca_ES:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],ca_ES:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={
|
||||
en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],ca_ES:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]
|
||||
},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],ca_ES:["Capitalització total del mercat cripto, USD"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],ca_ES:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},
|
||||
e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={
|
||||
en:["British Pound / Russian Ruble"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],ca_ES:["Nikkei 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={
|
||||
en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],ca_ES:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},
|
||||
e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],ca_ES:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],ca_ES:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],ca_ES:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],ca_ES:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={
|
||||
en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"]},
|
||||
e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],ca_ES:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},
|
||||
e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},
|
||||
e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
ca_ES:["Ona d'Elliott de doble combinació (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],ca_ES:["Ona d'impuls d'Elliott (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],ca_ES:["Ona triangular d'Elliott (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],ca_ES:["Ona d'Elliott de triple combinació (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],ca_ES:["El·lipse"]}},52788:e=>{e.exports={en:["Extended Line"],ca_ES:["Línia ampliada"]}},86905:e=>{e.exports={en:["Exchange"],ca_ES:["Mercat borsari"]}},19271:e=>{e.exports={en:["Existing pane above"],ca_ES:["Quadre existent amunt"]}},46545:e=>{e.exports={en:["Existing pane below"],ca_ES:["Quadre existent per sota"]}},20138:e=>{e.exports={en:["Forecast"],ca_ES:["Previsió"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],ca_ES:["Canal de Fibonacci"]}},82330:e=>{e.exports={en:["Fib Circles"],ca_ES:["Cicles de Fibonacci"]}},55986:e=>{e.exports={en:["Fib Retracement"],ca_ES:["Retrocés de Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],ca_ES:["Arcs de Fibonacci de resistència de velocitat"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],ca_ES:["Ventall de Fibonacci de resistència de velocitat"]}},39014:e=>{e.exports={en:["Fib Spiral"],ca_ES:["Espiral de Fibonacci"]}},30622:e=>{e.exports={en:["Fib Time Zone"],ca_ES:["Zona horària de Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],ca_ES:["Falca de Fibonacci"]}},33885:e=>{e.exports={en:["Flag"],ca_ES:["Bandera"]}},14600:e=>{e.exports={en:["Flag Mark"],ca_ES:["Marca amb bandera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],ca_ES:["Pla superior/inferior"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],ca_ES:["La part de la fracció no és correcta."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],ca_ES:["Ja no estan disponibles els estudis fonamentals als gràfics."]}},31561:e=>{e.exports={en:["Kolkata"],ca_ES:["Calcuta"]}},54533:e=>{e.exports={en:["Kathmandu"],ca_ES:["Katmandú"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},886:e=>{e.exports={en:["HLC bars"],ca_ES:["Barres amb el màxim, mínim i tancament (HLC)"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],ca_ES:["Espelmes buides"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],ca_ES:["Línia horitzontal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],ca_ES:["Semirecta horitzontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],ca_ES:["Cap i espatlles"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"],ca_ES:["Hèlsinki"]}},27298:e=>{e.exports={en:["Hide"],ca_ES:["Oculta"]}},47074:e=>{e.exports={en:["Hide all"],ca_ES:["Amaga-ho tot"]}},52563:e=>{e.exports={en:["Hide all drawings"],ca_ES:["Oculta tots els dibuixos"]}},90763:e=>{
|
||||
e.exports={en:["Hide all drawings and indicators"],ca_ES:["Oculta tots els dibuixos i indicadors"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],ca_ES:["Amaga tots els dibuixos, indicadors, posicions i ordres"]}},78525:e=>{e.exports={en:["Hide all indicators"],ca_ES:["Oculta tots els indicadors"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],ca_ES:["Amaga totes les posicions i ordres"]}},3217:e=>{e.exports={en:["Hide drawings"],ca_ES:["Oculta dibuixos"]}},97878:e=>{e.exports={en:["Hide events on chart"],ca_ES:["Amaga esdeveniments al gràfic"]}},72351:e=>{e.exports={en:["Hide indicators"],ca_ES:["Oculta indicadors"]}},28345:e=>{e.exports={en:["Hide marks on bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"],ca_ES:["Amaga posicions i ordres"]}},78254:e=>{e.exports={en:["High"],ca_ES:["Màxim"]}},98236:e=>{e.exports={en:["High-low"],ca_ES:["Màxim-mínim"]}},99479:e=>{e.exports={en:["High and low price labels"],ca_ES:["Etiquetes de preus màxims i mínims"]}},33766:e=>{e.exports={en:["High and low price lines"],ca_ES:["Línies de preus màxims i mínims"]}},69476:e=>{e.exports={en:["Highlighter"],ca_ES:["Ressaltador"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"],ca_ES:["Imatge"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],ca_ES:["Intermediari"]}},14285:e=>{e.exports={en:["Invalid Symbol"],ca_ES:["Símbol incorrecte"]}},52969:e=>{e.exports={en:["Invalid symbol"],ca_ES:["Símbol incorrecte"]}},37189:e=>{e.exports={en:["Invert scale"],ca_ES:["Escala invertida"]}},89999:e=>{e.exports={en:["Indexed to 100"],ca_ES:["Indexat a 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"],ca_ES:["Línia d'informació"]}},87829:e=>{e.exports={en:["Insert indicator"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],ca_ES:["Trident intern (Inside Pitchfork)"]}},37913:e=>{e.exports={en:["Icon"],ca_ES:["Icona"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"],ca_ES:["Gen"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={
|
||||
en:["Oops!"],ca_ES:["Vaja!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"],ca_ES:["Obertura"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],ca_ES:["Mínim"]}},51077:e=>{e.exports={en:["Lock"],ca_ES:["Bloqueja"]}},79777:e=>{e.exports={en:["Lock/unlock"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],ca_ES:["Bloqueja la línia vertical del cursor per temps"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],ca_ES:["Bloqueja la relació preu/barra"]}},16170:e=>{e.exports={en:["Logarithmic"],ca_ES:["Logarítmic"]}},19439:e=>{e.exports={en:["London"],ca_ES:["Londres"]}},74832:e=>{e.exports={en:["Long Position"],ca_ES:["Posició llarga"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],ca_ES:["Etiqueta descendent"]}},52402:e=>{e.exports={en:["Label Up"],ca_ES:["Etiqueta ascendent"]}},5119:e=>{e.exports={en:["Labels"],ca_ES:["Etiquetes"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],ca_ES:["Línia"]}},9394:e=>{e.exports={en:["Line with markers"],ca_ES:["Amb marcadors"]}},43588:e=>{e.exports={en:["Line break"],ca_ES:["Trencament de línia"]}},56982:e=>{e.exports={en:["Lines"],ca_ES:["Línies"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],ca_ES:["Enllaç a la imatge del gràfic copiat al porta-retalls {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],ca_ES:["Lisboa"]}},81038:e=>{e.exports={en:["Luxembourg"],ca_ES:["Luxemburg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],ca_ES:["Moveu el punt per posicionar l'ancoratge i després toqueu per col·locar-lo"]}},35049:e=>{e.exports={en:["Move to"],ca_ES:["Moure a"]}},26493:e=>{e.exports={en:["Move scale to left"],ca_ES:["Moure escala cap a l'esquerra"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],ca_ES:["Modificar Trident de Schiff"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"],ca_ES:["Moscou"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],ca_ES:["Març"]}},73332:e=>{e.exports={en:["Mexico City"],ca_ES:["Ciutat de Mèxic"]}},88314:e=>{e.exports={en:["Merge all scales into one"],ca_ES:["Combina totes les escales en una"]}},54215:e=>{e.exports={en:["Mixed"],ca_ES:["Mixt"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"],ca_ES:["Mil·lenni"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"],ca_ES:["Minúscul"]}},9865:e=>{e.exports={en:["Muscat"],ca_ES:["Masqat"]}},96935:e=>{e.exports={en:["N/A"],ca_ES:["No disponible"]}},36252:e=>{e.exports={en:["No data here"],ca_ES:["Aquí no hi ha dades"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],
|
||||
ca_ES:["Sense escala (pantalla completa)"]}},9140:e=>{e.exports={en:["No sync"],ca_ES:["No sincronitzis"]}},50910:e=>{e.exports={en:["No volume data"],ca_ES:["Sense dades sobre el volum"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],ca_ES:["Nota"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],ca_ES:["Illa de Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"],ca_ES:["Nova York"]}},66103:e=>{e.exports={en:["New Zealand"],ca_ES:["Nova Zelanda"]}},15512:e=>{e.exports={en:["New pane above"],ca_ES:["Nou quadre superior"]}},52160:e=>{e.exports={en:["New pane below"],ca_ES:["Nou quadre inferior"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],ca_ES:["Alguna cosa ha anat malament"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],ca_ES:["Alguna cosa ha anat malament. Si us plau, torneu-ho a intentar més tard."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],ca_ES:["Desa nou disseny de gràfic"]}},76266:e=>{e.exports={en:["Save as"],ca_ES:["Desa com a"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],ca_ES:["Només gràfic de preus a escala"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],ca_ES:["Trident de Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],ca_ES:["Opcions de configuració"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],ca_ES:["La segona part de la fracció no és correcta"]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],ca_ES:["Envia al fons"]}},71179:e=>{e.exports={en:["Send backward"],ca_ES:["Envia cap enrere"]}},26820:e=>{e.exports={en:["Seoul"],ca_ES:["Seül"]}},6816:e=>{e.exports={en:["Sep"],ca_ES:["Set"]}},94031:e=>{e.exports={en:["Session"],ca_ES:["Sessió"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],ca_ES:["Trencament de les sessions"]}},1852:e=>{e.exports={en:["Shanghai"],ca_ES:["Xangai"]}},8075:e=>{e.exports={en:["Short Position"],ca_ES:["Posició curta"]}},98334:e=>{e.exports={en:["Show"],ca_ES:["Mostra"]}},85891:e=>{e.exports={en:["Show all drawings"],ca_ES:["Mostra tots els dibuixos"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],ca_ES:["Mostra tots els dibuixos i indicadors"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],ca_ES:["Mostra tots els dibuixos, indicadors, posicions i ordres"]}},98753:e=>{e.exports={en:["Show all indicators"],ca_ES:["Mostra tots els indicadors"]}},55418:e=>{e.exports={en:["Show all ideas"],ca_ES:["Mostra totes les idees"]}},20506:e=>{e.exports={en:["Show all positions & orders"],
|
||||
ca_ES:["Mostra totes les posicions i ordres"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],ca_ES:["Mostra el canvi continu de contracte"]}},81465:e=>{e.exports={en:["Show contract expiration"],ca_ES:["Mostra el venciment del contracte"]}},29449:e=>{e.exports={en:["Show dividends"],ca_ES:["Mostra dividends"]}},37113:e=>{e.exports={en:["Show earnings"],ca_ES:["Mostra beneficis"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],ca_ES:["Mostra idees d'usuaris seguits"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],ca_ES:["Mostra només les meves idees"]}},50849:e=>{e.exports={en:["Show splits"],ca_ES:["Mostra splits"]}},67751:e=>{e.exports={en:["Signpost"],ca_ES:["Senyal"]}},77377:e=>{e.exports={en:["Singapore"],ca_ES:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"],ca_ES:["Línia del sinus"]}},66205:e=>{e.exports={en:["Square"],ca_ES:["Quadrat"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],ca_ES:["S'ha excedit el límit d'estudis: {number} per diseny.\nElimineu alguns estudis."]}},92516:e=>{e.exports={en:["Style"],ca_ES:["Estil"]}},61507:e=>{e.exports={en:["Stack on the left"],ca_ES:["Apila a l'esquerra"]}},97800:e=>{e.exports={en:["Stack on the right"],ca_ES:["Apila a la dreta"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"]}},69217:e=>{e.exports={en:["Step line"],ca_ES:["Línia de pasos (step)"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"],ca_ES:["Estocolm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"],ca_ES:["Submil·lenni"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"],ca_ES:["Supercicle"]}},3348:e=>{e.exports={en:["Supermillennium"],ca_ES:["Supermil·lenni"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],ca_ES:["Error de símbol"]}},32390:e=>{e.exports={en:["Symbol name label"],ca_ES:["Etiqueta amb el nom del símbol"]}},10127:e=>{e.exports={en:["Symbol last price label"],ca_ES:["Etiqueta del símbol amb l'últim preu"]}},39079:e=>{e.exports={en:["Sync globally"],ca_ES:["Sincronitza globalment"]}},46607:e=>{e.exports={en:["Sync in layout"],ca_ES:["Sincronitza disseny gràfic"]}},76519:e=>{e.exports={en:["Point & figure"],ca_ES:["Punt i figura"]}},39949:e=>{e.exports={en:["Polyline"],ca_ES:["Polilínia"]}},371:e=>{e.exports={en:["Path"],ca_ES:["Ruta (Path)"]}},59256:e=>{e.exports={en:["Parallel Channel"],ca_ES:["Canal paral·lel"]}},61879:e=>{e.exports={en:["Paris"],ca_ES:["París"]}},35140:e=>{e.exports={en:["Paste"],ca_ES:["Enganxa"]}},6919:e=>{e.exports={en:["Percent"],ca_ES:["Percentatge"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"],ca_ES:["Trident ventall o Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],
|
||||
ca_ES:["Trident (Pitchfork)"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"],ca_ES:["Fixa a la nova escala esquerra"]}},28280:e=>{e.exports={en:["Pin to new right scale"],ca_ES:["Fixa a la nova escala dreta"]}},14115:e=>{e.exports={en:["Pin to left scale"],ca_ES:["Fixa a l'escala esquerra"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],ca_ES:["Fixa a l'escala esquerra (ocult)"]}},81054:e=>{e.exports={en:["Pin to right scale"],ca_ES:["Fixa a escala dreta"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],ca_ES:["Fixa a l'escala dreta (ocult)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],ca_ES:["Fixa a escala (ara a l'esquerra)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],ca_ES:["Fixa a escala (ara sense escala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],ca_ES:["Fixa a escala (ara a la dreta)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],ca_ES:["Fixa a l'escala (ara {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],ca_ES:["Fixa a escala {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],ca_ES:["Fixa a l'escala {label} (ocult)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],ca_ES:["Fixat a l'escala esquerra"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],ca_ES:["Fixat a l'escala esquerra (ocult)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],ca_ES:["Fixat a l'escala dreta"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],ca_ES:["Fixat a escala dreta (ocult)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],ca_ES:["Fixat a l'escala {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],ca_ES:["Fixat a l'escala {label} (ocult)"]}},71566:e=>{e.exports={en:["Plus button"],ca_ES:['Botó "més"']}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],ca_ES:["Si us plau, doneu-nos permís d'escriptura des del porta-retalls al seu navegador o pitjeu {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],ca_ES:["Mantingueu pressionada la tecla {key} mentre feu zoom per mantenir la posició del gràfic"]}},91282:e=>{e.exports={en:["Price Label"],ca_ES:["Etiqueta de preu"]}},97512:e=>{e.exports={en:["Price Note"],ca_ES:["Nota sobre preus"]}},68941:e=>{e.exports={en:["Price Range"],ca_ES:["Rang de preus"]}},66123:e=>{e.exports={en:["Price format is invalid."],ca_ES:["El format del preu no és correcte."]}},72926:e=>{e.exports={en:["Price line"],ca_ES:["Línia de preus"]}},59189:e=>{e.exports={en:["Primary"],ca_ES:["Primari"]}},75747:e=>{e.exports={en:["Projection"],ca_ES:["Projeccions"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],ca_ES:["Publicat a {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={
|
||||
en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],ca_ES:["Rectangle girat"]}},52961:e=>{e.exports={en:["Rome"],ca_ES:["Roma"]}},50318:e=>{e.exports={en:["Ray"],ca_ES:["Semirecta"]}},55169:e=>{e.exports={en:["Range"],ca_ES:["Rang"]}},13386:e=>{e.exports={en:["Reykjavik"],ca_ES:["Reykjavík"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"],ca_ES:["Repetir"]}},2460:e=>{e.exports={en:["Regression Trend"],ca_ES:["Tendència de regressió"]}},67410:e=>{e.exports={en:["Remove"],ca_ES:["Treure"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"],ca_ES:["Elimina {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],ca_ES:["Elimina {drawings} i {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],ca_ES:["Elimina {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],ca_ES:["Canvia el nom del disseny del gràfic"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],ca_ES:["Reinicia escala de preus"]}},54170:e=>{e.exports={en:["Reset time scale"]}},37974:e=>{e.exports={en:["Riyadh"],ca_ES:["Riad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"],ca_ES:["Advertència"]}},5959:e=>{e.exports={en:["Warsaw"],ca_ES:["Varsòvia"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],ca_ES:["Tòquio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],ca_ES:["Teheran"]}},93553:e=>{e.exports={en:["Template"],ca_ES:["Plantilla"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],ca_ES:["El proveïdor de dades no proporciona dades sobre el volum per a aquest símbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],ca_ES:["No hi ha dades per al període i interval de temps del gràfic que ha seleccionat."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={
|
||||
en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],ca_ES:["Símbol només disponible a {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],ca_ES:["Patró de tres impulsos"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"],ca_ES:["Hora"]}},20909:e=>{e.exports={en:["Time zone"]}},46852:e=>{e.exports={en:["Time Cycles"],ca_ES:["Cicles de temps"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"],ca_ES:["Negocieu"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"],ca_ES:["Angle de tendència"]}},97339:e=>{e.exports={en:["Trend Line"],ca_ES:["Línia de tendència"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],ca_ES:["Extensió de Fibonacci basada en tendències"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],ca_ES:["Zona temporal de Fibonacci basada en tendències"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"],ca_ES:["Triangle descendent"]}},90148:e=>{e.exports={en:["Triangle Pattern"],ca_ES:["Patró de triangle"]}},21236:e=>{e.exports={en:["Triangle Up"],ca_ES:["Triangle ascendent"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],ca_ES:["Desfer"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"],ca_ES:["Unitats"]}},11768:e=>{e.exports={en:["Unknown error"],ca_ES:["Error desconegut"]}},99894:e=>{e.exports={en:["Unlock"],ca_ES:["Desbloqueja"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],ca_ES:["Perfil de volum amb rang fix (Volume Profile Fixed Range)"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],ca_ES:["Línia vertical"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"],ca_ES:["Vílnius"]}},40091:e=>{e.exports={en:["Visibility"],ca_ES:["Visibilitat"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],ca_ES:["Visible en passar el ratolí"]}},4077:e=>{e.exports={en:["Visual order"],ca_ES:["Ordre visual"]}},11316:e=>{e.exports={en:["X Cross"],ca_ES:["Creu en X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],
|
||||
ca_ES:["Patró XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"],ca_ES:["Zuric"]}},47977:e=>{e.exports={en:["change Elliott degree"],ca_ES:["canvia el grau d'Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],ca_ES:["canvia les etiquetes no superposades"]}},76852:e=>{e.exports={en:["change average close price label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta del preu mitjà de tancament"]}},1022:e=>{e.exports={en:["change average close price line visibility"],ca_ES:["canvia la visibilitat de la línia del preu mitjà de tancament"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de compra i venda (bid and ask)"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],ca_ES:["canvia la visibilitat de les línies de compra i venda (bid and ask)"]}},32302:e=>{e.exports={en:["change currency"],ca_ES:["canvia divisa"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],ca_ES:["canvia la plantilla del gràfic de {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],ca_ES:["canvia la visibilitat del canvi continu de contracte"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],ca_ES:["canvia la visibilitat del compte enrere del tancament de barra"]}},16979:e=>{e.exports={en:["change date range"],ca_ES:["canvia el rang de dates"]}},53929:e=>{e.exports={en:["change dividends visibility"],ca_ES:["canvia la visibilitat dels dividends"]}},6119:e=>{e.exports={en:["change events visibility on chart"],ca_ES:["canvia la visibilitat dels esdeveniments al gràfic"]}},6819:e=>{e.exports={en:["change earnings visibility"],ca_ES:["canvia la visibilitat dels beneficis"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],ca_ES:["canvia visibilitat del venciment dels contractes de futurs"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de preus màxims i mínims"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],ca_ES:["canvia la visibilitat de les línies de preus màxims i mínims"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb els noms dels indicadors"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el valor dels indicadors"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"],ca_ES:["canvia la visibilitat del botó +"]}},76660:e=>{e.exports={en:["change point"]}},
|
||||
30870:e=>{e.exports={en:["change pre/post market price label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta de preus pre/post mercat"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],ca_ES:["canvia la visibilitat de la línia de preus pre/post mercat"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],ca_ES:["canvia la visibilitat de la línia de preus del tancament anterior"]}},8662:e=>{e.exports={en:["change price line visibility"],ca_ES:["canvia la visibilitat de la línia amb els preus"]}},2509:e=>{e.exports={en:["change price to bar ratio"],ca_ES:["canvia la ràtio preu/barra"]}},32829:e=>{e.exports={en:["change resolution"],ca_ES:["canvia resolució"]}},35400:e=>{e.exports={en:["change symbol"],ca_ES:["canvia símbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de símbols"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],ca_ES:["canvia la visibilitat de l'últim valor dels símbols"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],ca_ES:["canvia la visibilitat amb el valor del tancament anterior dels símbols"]}},87041:e=>{e.exports={en:["change session"],ca_ES:["canvia la sessió"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"],ca_ES:["canvia la visibilitat dels splits"]}},20137:e=>{e.exports={en:["change timezone"],ca_ES:["canvia la zona horària"]}},85975:e=>{e.exports={en:["change unit"],ca_ES:["canvia unitat"]}},1924:e=>{e.exports={en:["change visibility"],ca_ES:["canvia la visibilitat"]}},84331:e=>{e.exports={en:["change visibility at current interval"],ca_ES:["canvia visibilitat de l'interval actual"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],ca_ES:["canvia la visibilitat a l'interval actual i superior"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],ca_ES:["canvia visibilitat de l'interval actual i inferior"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],ca_ES:["canvia visibilitat de tots els intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],ca_ES:["clona les eines de línies"]}},46219:e=>{e.exports={en:["create line tools group"],ca_ES:["crea grup d'eines de línies"]}},95394:e=>{e.exports={en:["create line tools group from selection"],ca_ES:["crea el grup d'eines de línies a partir de la selecció"]}},12898:e=>{e.exports={en:["create {tool}"],ca_ES:["crea {tool}"]}},94227:e=>{e.exports={en:["cut sources"],ca_ES:["retalla fonts"]}},11500:e=>{e.exports={en:["cut {title}"],ca_ES:["retalla {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],ca_ES:["afegeix l'eina de línies {lineTool} al grup {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],ca_ES:["afegeix eine(s) de línia al grup {group}"]}
|
||||
},67608:e=>{e.exports={en:["add this financial metric to entire layout"],ca_ES:["afegeix aquests paràmetres financers a tot el disseny"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],ca_ES:["afegeix aquest indicador a tot el disseny"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],ca_ES:["afegeix aquesta estratègia a tot el disseny"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],ca_ES:["afegeix aquest símbol a tot el disseny"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"],ca_ES:["aplica esquema al gràfic"]}},99551:e=>{e.exports={en:["apply all chart properties"],ca_ES:["aplica totes les propietats del gràfic"]}},89720:e=>{e.exports={en:["apply drawing template"],ca_ES:["aplica plantilla de dibuix"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],ca_ES:["aplica els valors per defecte de fàbrica a les fonts seleccionades"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],ca_ES:["aplica els indicadors a tot el disseny"]}},69604:e=>{e.exports={en:["apply study template {template}"],ca_ES:["aplica la plantilla d'estudi {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],ca_ES:["aplica l'esquema de la barra d'eines"]}},1979:e=>{e.exports={en:["bring group {title} forward"],ca_ES:["porta grup de {title} endavant"]}},53159:e=>{e.exports={en:["bring {title} to front"],ca_ES:["portar {title} endavant"]}},41966:e=>{e.exports={en:["bring {title} forward"],ca_ES:["porta {title} cap endavant"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"],ca_ES:["bloqueig rang de dates"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],ca_ES:["exclou les eines de línies del grup {group}"]}},13017:e=>{e.exports={en:["hide {title}"],ca_ES:["oculta {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"]}},56558:e=>{e.exports={en:["interval lock"],ca_ES:["bloqueja interval"]}},6830:e=>{e.exports={en:["invert scale"],ca_ES:["Escala invertida"]}},48818:e=>{e.exports={en:["insert {title}"],ca_ES:["introdueix {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],ca_ES:["introdueix {title} després de {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],ca_ES:["afegeix {title} després de {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],ca_ES:["afegeix {title} abans de {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],ca_ES:["afegeix {title} abans de {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],ca_ES:["carrega la plantilla de dibuix per defecte"]}},62011:e=>{e.exports={en:["loading..."],ca_ES:["carregant..."]}},76104:e=>{e.exports={en:["lock {title}"],ca_ES:["bloqueja {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],ca_ES:["bloqueja grup {group}"]}},18942:e=>{e.exports={en:["lock objects"],ca_ES:["bloqueja objectes"]}},98277:e=>{e.exports={en:["move"],ca_ES:["moviment"]}},58228:e=>{e.exports={
|
||||
en:["move {title} to new left scale"],ca_ES:["mou {title} a la nova escala esquerra"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],ca_ES:["mou {title} a la nova escala de la dreta"]}},64077:e=>{e.exports={en:["move all scales to left"],ca_ES:["mou totes les escales a l'esquerra"]}},19013:e=>{e.exports={en:["move all scales to right"],ca_ES:["moure totes les escales a la dreta"]}},52510:e=>{e.exports={en:["move drawing(s)"],ca_ES:["mou dibuix(os)"]}},79209:e=>{e.exports={en:["move left"],ca_ES:["mou cap a l'esquerra"]}},60114:e=>{e.exports={en:["move right"],ca_ES:["mou cap a la dreta"]}},44854:e=>{e.exports={en:["move scale"],ca_ES:["mou escala"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],ca_ES:["crea {title} sense escala (pantalla completa)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],ca_ES:["fes que no es vegi el grup {group}"]}},45987:e=>{e.exports={en:["make group {group} visible"],ca_ES:["fes visible el grup {group}"]}},78055:e=>{e.exports={en:["merge down"],ca_ES:["uneix per sota"]}},41866:e=>{e.exports={en:["merge to pane"],ca_ES:["uneix al quadre"]}},52458:e=>{e.exports={en:["merge up"],ca_ES:["uneix per dalt"]}},90091:e=>{e.exports={en:["n/a"],ca_ES:["No disponible"]}},94981:e=>{e.exports={en:["scale price"],ca_ES:["escala de preus"]}},63796:e=>{e.exports={en:["scale price chart only"],ca_ES:["Només gràfic de preus a escala"]}},70771:e=>{e.exports={en:["scale time"],ca_ES:["escala de temps"]}},42070:e=>{e.exports={en:["scroll"],ca_ES:["desplaçar-se"]}},87840:e=>{e.exports={en:["scroll time"],ca_ES:["desplaça per l'horari"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],ca_ES:["envia {title} cap enrere"]}},5005:e=>{e.exports={en:["send {title} to back"],ca_ES:["envia {title} enrere"]}},69546:e=>{e.exports={en:["send group {title} backward"],ca_ES:["envia grup de {title} enrere"]}},63934:e=>{e.exports={en:["share line tools globally"],ca_ES:["comparteix les eines de línia globalment"]}},90221:e=>{e.exports={en:["share line tools in layout"],ca_ES:["comparteix les eines de línia de la plantilla"]}},13336:e=>{e.exports={en:["show all ideas"],ca_ES:["mostra totes les idees"]}},91395:e=>{e.exports={en:["show ideas of followed users"],ca_ES:["mostra les idees dels usuaris seguits"]}},57460:e=>{e.exports={en:["show my ideas only"],ca_ES:["mostra només les meves idees"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"],ca_ES:["deixa de sincronitzar els dibuixos"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],ca_ES:["deixa de sincronitzar les eines de línia"]}},53278:e=>{e.exports={en:["symbol lock"],ca_ES:["bloqueja símbol"]}},91677:e=>{e.exports={en:["sync time"],ca_ES:["temps de sincronització"]}},3140:e=>{e.exports={en:["powered by"],ca_ES:["amb tecnologia de"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],
|
||||
ca_ES:["enganxa dibuix"]}},1064:e=>{e.exports={en:["paste indicator"],ca_ES:["enganxa indicador"]}},57010:e=>{e.exports={en:["paste {title}"],ca_ES:["enganxa {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],ca_ES:["fixa a l'escala esquerra"]}},7495:e=>{e.exports={en:["pin to right scale"],ca_ES:["Fixa a escala dreta"]}},81566:e=>{e.exports={en:["pin to scale {label}"],ca_ES:["fixa a escala {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],ca_ES:["reordena quadres"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],ca_ES:["elimina les línies en blanc no seleccionades"]}},30538:e=>{e.exports={en:["remove drawings"],ca_ES:["elimina dibuixos"]}},1193:e=>{e.exports={en:["remove drawings group"],ca_ES:["elimina grup de dibuixos"]}},38199:e=>{e.exports={en:["remove line data sources"],ca_ES:["elimina les fonts de dades de les línies"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"],ca_ES:["elimina {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],ca_ES:["elimina el grup d'eines de línies {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],ca_ES:["canvia el nom del grup {group} a {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],ca_ES:["restableix la mida de la plantilla"]}},3323:e=>{e.exports={en:["reset scales"],ca_ES:["restableix escala"]}},17336:e=>{e.exports={en:["reset time scale"],ca_ES:["reinicia escala de temps"]}},47418:e=>{e.exports={en:["resize layout"],ca_ES:["canvia la mida de la plantilla"]}},85815:e=>{e.exports={en:["restore defaults"],ca_ES:["restableix valors per defecte"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"],ca_ES:["alterna l'escala automàtica"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"],ca_ES:["alterna bloquejar escala"]}},49403:e=>{e.exports={en:["toggle log scale"],ca_ES:["alterna l'escala logarítmica"]}},98994:e=>{e.exports={en:["toggle percentage scale"],ca_ES:["alterna l'escala de percentatges"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"],ca_ES:["controla el temps"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],ca_ES:["desactiva la possibilitat de compartir eines de línia"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"],ca_ES:["desbloqueja objectes"]}},74590:e=>{e.exports={en:["unlock group {group}"],ca_ES:["desbloqueja el grup {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],ca_ES:["desbloqueja {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],ca_ES:["desagrupa al nou quadre inferior"]}},79443:e=>{e.exports={en:["unmerge up"],ca_ES:["desagrupa per dalt"]}},46453:e=>{e.exports={
|
||||
en:["unmerge down"],ca_ES:["desagrupa per sota"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"],ca_ES:["{count} barres"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],ca_ES:["Informació financera de {symbol} per TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],ca_ES:["{userName} ha publicat a {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],ca_ES:["augmenta"]}},73638:e=>{e.exports={en:["zoom out"],ca_ES:["allunya"]}},41807:e=>{e.exports={en:["day","days"],ca_ES:["dia","dies"]}},42328:e=>{e.exports={en:["hour","hours"],ca_ES:["hora","hores"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"],ca_ES:["minut","minuts"]}},33232:e=>{e.exports={en:["second","seconds"],ca_ES:["segon","segons"]}},89937:e=>{e.exports={en:["range","ranges"],ca_ES:["rang","rangs"]}},48898:e=>{e.exports={en:["week","weeks"],ca_ES:["setmana","setmanes"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],ca_ES:["{amount} dibuix","{amount} dibuixos"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],ca_ES:["{amount} indicador","{amount} indicadors"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],ca_ES:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},
|
||||
e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],ca_ES:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],ca_ES:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],ca_ES:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},
|
||||
e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],ca_ES:["Capitalització total del mercat cripto, USD"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},
|
||||
e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],ca_ES:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"]},
|
||||
e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],ca_ES:["Nikkei 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},
|
||||
e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],ca_ES:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},
|
||||
e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],ca_ES:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],ca_ES:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],ca_ES:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],
|
||||
ca_ES:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"]},
|
||||
e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],ca_ES:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},
|
||||
e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"]},e.exports["#USDZAR-symbol-description"]={
|
||||
en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
@@ -0,0 +1,8 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],ca_ES:["barres"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ca_ES:["(Màx.+Mín.+Tancament)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ca_ES:["(Màx+Mín)/2"]}},31882:e=>{e.exports={en:["12-hours"],ca_ES:["12 hores"]}},5797:e=>{e.exports={en:["24-hours"],ca_ES:["24 hores"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ca_ES:["Color de barres en funció del tancament anterior"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"],ca_ES:["Centre"]}},15153:e=>{e.exports={en:["Chart basic styles"],ca_ES:["Estils bàsics del gràfic"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],ca_ES:["Retícula"]}},81849:e=>{e.exports={en:["Currency"],ca_ES:["Divisa"]}},3015:e=>{e.exports={en:["Currency and Unit"],ca_ES:["Divisa i unitat"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ca_ES:["Ajusta dades dels dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ca_ES:["Ajusta els canvis dels contractes"]}},36620:e=>{e.exports={en:["Alerts"],ca_ES:["Alertes"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"],ca_ES:["Tancament mitjà"]}},27567:e=>{e.exports={en:["Bottom"],ca_ES:["Part inferior"]}},3159:e=>{e.exports={en:["Bottom line"],ca_ES:["Línia inferior"]}},74406:e=>{e.exports={en:["Body"],ca_ES:["Cos"]}},333:e=>{e.exports={en:["Borders"],ca_ES:["Vores"]}},79468:e=>{e.exports={en:["Background"],ca_ES:["Fons"]}},10842:e=>{e.exports={en:["Bar change values"],ca_ES:["Valors dels canvis a la barra"]}},28975:e=>{e.exports={en:["Base level"],ca_ES:["Nivell de la base"]}},76473:e=>{e.exports={en:["Bid and ask"],ca_ES:["Compra i venda (bid/ask)"]}},32744:e=>{e.exports={en:["Buttons"],ca_ES:["Botons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"],ca_ES:["Barres descendents"]}},23743:e=>{e.exports={en:["Down color"],ca_ES:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],ca_ES:["Modificació de dades"]}},84838:e=>{e.exports={en:["Date format"],ca_ES:["Format de data"]}},42357:e=>{e.exports={en:["Day of week on labels"],ca_ES:["Dia de la setmana a les etiquetes"]}},16564:e=>{e.exports={en:["Default"],ca_ES:["Predeterminat"]}},78734:e=>{e.exports={en:["Description"],ca_ES:["Descripció"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],ca_ES:["Esdeveniments"]}},41129:e=>{e.exports={en:["Fill"],ca_ES:["Omplir"]}},61112:e=>{e.exports={en:["Fill top area"],ca_ES:["Reomple l'àrea superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],ca_ES:["Omple l'àrea inferior"]}},95406:e=>{e.exports={en:["Horizontal"],ca_ES:["Horitzontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"],ca_ES:["Màxim i mínim"]}},56359:e=>{
|
||||
e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],ca_ES:["Indicadors"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"],ca_ES:["Estat del mercat obert"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"],ca_ES:["Esquerra"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"],ca_ES:["Marges"]}},68833:e=>{e.exports={en:["Middle"],ca_ES:["Al mig"]}},58589:e=>{e.exports={en:["No overlapping labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"],ca_ES:["Navegació"]}},99709:e=>{e.exports={en:["Name"],ca_ES:["Nom"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],ca_ES:["Escales"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"],ca_ES:["Col·locació d'escales"]}},28715:e=>{e.exports={en:["Status line"],ca_ES:["Línia d'estat"]}},95481:e=>{e.exports={en:["Symbol"],ca_ES:["Símbol"]}},53263:e=>{e.exports={en:["Pane"],ca_ES:["Quadre"]}},82894:e=>{e.exports={en:["Pane separators"],ca_ES:["Separadors del quadre"]}},16207:e=>{e.exports={en:["Percentage"],ca_ES:["Percentatge"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],ca_ES:["Pre/post mercat"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ca_ES:["Informació horària pre/post mercat"]}},59766:e=>{e.exports={en:["Precision"],ca_ES:["Precisió"]}},83811:e=>{e.exports={en:["Previous day close"],ca_ES:["Tancament del dia anterior"]}},35082:e=>{e.exports={en:["Price Scale"],ca_ES:["Escala de preus"]}},27632:e=>{e.exports={en:["Price and percentage value"],ca_ES:["Preu i valor percentual"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"],ca_ES:["Font dels preus"]}},73466:e=>{e.exports={en:["Projection up bars"],ca_ES:["Barres superiors de projecció"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"],ca_ES:["Barres de projecció descendents"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ca_ES:["Preus reals a l'escala (en lloc del preu Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],ca_ES:["Dreta"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],ca_ES:["Marca d'aigua"]}},32163:e=>{e.exports={en:["Wick"],ca_ES:["Metxa"]}},97118:e=>{e.exports={en:["Top"],ca_ES:["Part superior"]}},89349:e=>{e.exports={en:["Top line"],ca_ES:["Línia superior"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],ca_ES:["Alineació del text"]}},67781:e=>{e.exports={en:["Text orientation"],ca_ES:["Orientació del text"]}},20215:e=>{e.exports={en:["Thin bars"],ca_ES:["Barres fines"]}},
|
||||
70198:e=>{e.exports={en:["Title"],ca_ES:["Títol"]}},29854:e=>{e.exports={en:["Titles"],ca_ES:["Títols"]}},5791:e=>{e.exports={en:["Ticker"],ca_ES:["Tíquer"]}},16816:e=>{e.exports={en:["Ticker and description"],ca_ES:["Tíquer i descripció"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"],ca_ES:["Escala de temps"]}},5591:e=>{e.exports={en:["Time hours format"],ca_ES:["Format de les hores"]}},77073:e=>{e.exports={en:["Timezone"],ca_ES:["Zona horària"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],ca_ES:["Unitat"]}},23091:e=>{e.exports={en:["Up color"],ca_ES:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],ca_ES:["Barres superiors"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ca_ES:["Fer servir la liquidació com a tancament en intervals diaris"]}},37644:e=>{e.exports={en:["Volume"],ca_ES:["Volum"]}},51514:e=>{e.exports={en:["Value"],ca_ES:["Valor"]}},31218:e=>{e.exports={en:["Value according to scale"],ca_ES:["Valor conforme a l'escala"]}},60092:e=>{e.exports={en:["Values"],ca_ES:["Valors"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],ca_ES:["espelma"]}},27068:e=>{e.exports={en:["change HLC bars"],ca_ES:["canvia les barres HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],ca_ES:["canvia la visibilitat dels botons de navegació"]}},96227:e=>{e.exports={en:["change open market status visibility"],ca_ES:["canvia la visibilitat de l'estat de mercat obert"]}},43231:e=>{e.exports={en:["change average close price line width"],ca_ES:["canvia ample de la línia del preu mitjà de tancament"]}},47026:e=>{e.exports={en:["change average close price line color"],ca_ES:["canvia color de la línia del preu mitjà de tancament"]}},86866:e=>{e.exports={en:["change area fill color"],ca_ES:["canvia el color de fons de l'àrea"]}},89346:e=>{e.exports={en:["change area line width"],ca_ES:["canvia l'ample de la línia de l'àrea"]}},29605:e=>{e.exports={en:["change area line color"],ca_ES:["canvia el color de la línia de l'àrea"]}},4640:e=>{e.exports={en:["change area price source"],ca_ES:["canvia la font dels preus de l'àrea"]}},98407:e=>{e.exports={en:["change ask line color"],ca_ES:["canvia el color de la línia de venda (ask)"]}},42190:e=>{e.exports={en:["change base level"],ca_ES:["canvia el nivell de referència"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ca_ES:["canvia el color de la línia inferior de la línia de referència"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ca_ES:["canvia l'ample de la línia inferior de la línia de referència"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ca_ES:["canvia el color de fons de l'àrea inferior de la línia de referència"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ca_ES:["canvia el color de fons de l'àrea superior de la línia de referència"]}},
|
||||
68609:e=>{e.exports={en:["change baseline price source"],ca_ES:["canvia la font de preus de referència"]}},69044:e=>{e.exports={en:["change baseline top line color"],ca_ES:["canvia el color de la línia superior de la línia de referència"]}},68197:e=>{e.exports={en:["change baseline top line width"],ca_ES:["canvia l'ample de la línia superior de la línia de referència"]}},33464:e=>{e.exports={en:["change bar up color"],ca_ES:["canvia el color superior de la barra"]}},27426:e=>{e.exports={en:["change bar change visibility"],ca_ES:["canvia la visibilitat del canvi de barra"]}},59622:e=>{e.exports={en:["change bar down color"],ca_ES:["canvia el color inferior de la barra"]}},17919:e=>{e.exports={en:["change bid line color"],ca_ES:["canvia el color de la línia de compra (bid)"]}},32094:e=>{e.exports={en:["change bottom margin"],ca_ES:["canvia el marge inferior"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de divises i unitats"]}},64003:e=>{e.exports={en:["change currency label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta de divises"]}},42803:e=>{e.exports={en:["change chart background color"],ca_ES:["canvia el color de fons del gràfic"]}},41382:e=>{e.exports={en:["change chart background type"],ca_ES:["canvia el tipus de fons del gràfic"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ca_ES:["canvia el color de les barres en funció del valor de tancament anterior"]}},88324:e=>{e.exports={en:["change column up color"],ca_ES:["canvia color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],ca_ES:["canvia color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],ca_ES:["canvia la font del preu de la columna"]}},50544:e=>{e.exports={en:["change crosshair width"],ca_ES:["canvia l'ample de la retícula"]}},92885:e=>{e.exports={en:["change crosshair color"],ca_ES:["canvia el color de la retícula"]}},68418:e=>{e.exports={en:["change crosshair style"],ca_ES:["canvia l'estil de la retícula"]}},43109:e=>{e.exports={en:["change date format"],ca_ES:["canviar el format de data"]}},30418:e=>{e.exports={en:["change day of week on labels"],ca_ES:["canvia dia de la setmana a les etiquetes"]}},82063:e=>{e.exports={en:["change decimal places"],ca_ES:["canvia les posicions decimals"]}},44223:e=>{e.exports={en:["change extended hours color"],ca_ES:["canvia el color de l'horari amplicat"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"],ca_ES:["canvia color de la línia de preu màxim i mínim"]}},39581:e=>{e.exports={en:["change high and low price line width"],ca_ES:["canvia ample de la línia de preus màxims i mínims"]}},6026:e=>{e.exports={en:["change high-low body color"],ca_ES:["canvia el color del cos de màxims i mínims"]}},73021:e=>{e.exports={
|
||||
en:["change high-low body visibility"],ca_ES:["canvia la visibilitat del cos de màxims i mínims"]}},46844:e=>{e.exports={en:["change high-low border color"],ca_ES:["canviar el color de la vora de màxims i mínims"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ca_ES:["canvia la visibilitat de les vores de màxims i mínims"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes de màxims i mínims"]}},56961:e=>{e.exports={en:["change high-low labels color"],ca_ES:["canvia el color de les etiquetes de màxims i mínims"]}},21133:e=>{e.exports={en:["change horz grid lines color"],ca_ES:["canvia el color de les línies de la quadrícula horitzontal"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],ca_ES:["canvia la visibilitat dels títols dels indicadors"]}},49583:e=>{e.exports={en:["change indicator values visibility"],ca_ES:["canvia la visibilitat dels valors dels indicadors"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],ca_ES:["canvia la visibilitat dels arguments dels indicadors"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el nom dels indicadors i de la informació financera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],ca_ES:["canvia la visibilitat de les etiquetes amb el valor dels indicadors i la informació financera"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"],ca_ES:["canvia la transparència del fons de la llegenda"]}},14246:e=>{e.exports={en:["change legend background visibility"],ca_ES:["canvia la visibilitat del fons de la llegenda"]}},88640:e=>{e.exports={en:["change line color"],ca_ES:["canvia el color de línia"]}},41837:e=>{e.exports={en:["change line price source"],ca_ES:["canvia la font de preus de la línia"]}},48339:e=>{e.exports={en:["change line width"],ca_ES:["canvia l'ample de línia"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],ca_ES:["canvia la visibilitat dels botons del quadre"]}},52203:e=>{e.exports={en:["change pane separators color"],ca_ES:["Canvia el color dels separadors de quadres"]}},38730:e=>{e.exports={en:["change post market color"],ca_ES:["canvia el color postmercat"]}},28075:e=>{e.exports={en:["change post market line color"],ca_ES:["canvia el color de la línia postmercat"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],ca_ES:["canvia la visibilitat de les línies de preus pre/post mercat"]}},44371:e=>{e.exports={en:["change pre market color"],ca_ES:["canvia el color de la sessió premercat"]}},96114:e=>{e.exports={en:["change pre market line color"],ca_ES:["canvia el color de la línia de la sessió premercat"]}},69814:e=>{e.exports={en:["change previous close price line color"],ca_ES:["canvia el color de la línia amb el preu de tancament anterior"]}},13660:e=>{e.exports={
|
||||
en:["change previous close price line width"],ca_ES:["canvia l'ample de la línia amb el preu de tancament anterior"]}},87861:e=>{e.exports={en:["change price line color"],ca_ES:["canvia el color de la línia de preus"]}},29353:e=>{e.exports={en:["change price line width"],ca_ES:["canvia l'ample de la línia de preus"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"],ca_ES:["canvia el rang de les barres fines"]}},75487:e=>{e.exports={en:["change renko wick down color"],ca_ES:["canvia el color inferior de la metxa renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],ca_ES:["canvia el color inferior de la metxa renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ca_ES:["canvia la visibilitat de les metxes renko"]}},82946:e=>{e.exports={en:["change right margin"],ca_ES:["canvia el marge dret"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"],ca_ES:["canvia el color de la marca d'aigua del símbol"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],ca_ES:["canvia la visibilitat de la marca d'aigua del símbol"]}},88167:e=>{e.exports={en:["change symbol description visibility"],ca_ES:["canvia la visibilitat de la descripció del símbol"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"],ca_ES:["canvia el mode de l'últim valor del símbol"]}},902:e=>{e.exports={en:["change symbol legend format"],ca_ES:["canvia el format de la llegenda del símbol"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"],ca_ES:["canvia el color del text de l'escala"]}},27792:e=>{e.exports={en:["change scales font size"],ca_ES:["canvia la mida de la font de l'escala"]}},94997:e=>{e.exports={en:["change scales lines color"],ca_ES:["canvia el color de la línia de l'escala"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],ca_ES:["canvia la visibilitat dels trencaments de les sessions"]}},28175:e=>{e.exports={en:["change sessions breaks width"],ca_ES:["canvia l'ample dels trencaments de les sessions"]}},33895:e=>{e.exports={en:["change sessions breaks color"],ca_ES:["canvia el color del trencament de les sessions"]}},21641:e=>{e.exports={en:["change sessions breaks style"],ca_ES:["canvia l'estil dels trencaments de les sessions"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ca_ES:["canvia la visualització dels preus reals en l'escala de preus (en lloc del preu Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],ca_ES:["canvia les barres fines"]}},39754:e=>{e.exports={en:["change time hours format"],ca_ES:["canvia el format de les hores"]}},74883:e=>{e.exports={en:["change top margin"],ca_ES:["canvia el marge superior"]}},51250:e=>{e.exports={
|
||||
en:["change unit label visibility"],ca_ES:["canvia la visibilitat de l'etiqueta d'unitats"]}},71805:e=>{e.exports={en:["change vert grid lines color"],ca_ES:["canvia el color de les línies de la quadrícula vertical"]}},96201:e=>{e.exports={en:["change volume values visibility"],ca_ES:["canvia la visibilitat dels valors de volum"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ca_ES:["canvia el color de la vora superior de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ca_ES:["canvia el color superior de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ca_ES:["canvia el color inferior de la metxa de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ca_ES:["canvia el color superior de la metxa de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ca_ES:["canvia la visibilitat de la metxa {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ca_ES:["canvia la visibilitat del cos de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ca_ES:["canvia la visibilitat de la vora de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ca_ES:["canvia el color de la vora inferior de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ca_ES:["canvia el color inferior de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ca_ES:["canvia el color inferior de la vora de la barra de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ca_ES:["canvia el color inferior de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ca_ES:["canvia el color superior de la vora de la barra de projecció de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ca_ES:["canvia el color inferior de la barra de projecció de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ca_ES:["canvia el color superior de la barra de projecció de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ca_ES:["canvia el color superior de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],ca_ES:["canvia propietat de {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ca_ES:["ajusta dades dels dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ca_ES:["ajusta per a canvis de contractes"]}},92598:e=>{e.exports={en:["hollow candles"],ca_ES:["espelmes buides"]}},57243:e=>{e.exports={en:["range","ranges"],ca_ES:["rang","rangs"]}},70282:e=>{e.exports={en:["renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],
|
||||
ca_ES:["fes servir la liquidació com a tancament en intervals diaris"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -14,13 +14,13 @@ this._actionElements.push(l),e.appendChild(l)}))}_initWrappersIfNotInitialized()
|
||||
this._hideValues.subscribe(this._updateHideValuesMode.bind(this),{callWithLast:!0}),this._updateStatusWidgetVisibility(this._disabled.value()),this._resizeObserver=new ResizeObserver(this._handlerRestrictTitleWidth.bind(this)),null!==this._actionsParentEl&&this._resizeObserver.observe(this._actionsParentEl),this._resizeObserver.observe(this._statusesWrapper)}_updateTitleMaxWidth(){if(null===this._firstBlockWrapper)return;const e=this._allButtonsWidth||0,t=(this._lastActionsWrapperWidth||0)+(this._lastStatusesWrapperWidth||0);this._isWidthButtonsMode()?this._firstBlockWrapper.style.maxWidth=`calc(100% - ${Math.max(e,t)}px)`:this._firstBlockWrapper.style.maxWidth=t>0?`calc(100% - ${t}px)`:""}_updateAllButtonsWidth(){this._allButtonsWidth=this._getButtonsCount()*y+1,this._updateTitleMaxWidth()}_updateHideInvisibleHoverMode(e){null!==this._el&&this._el.classList.toggle(k.hideInvisibleHover,e)}_updateHideValuesMode(e){null!==this._el&&this._el.classList.toggle(k.hideValues,e)}_showActions(){if(null===this._el||!this._withActions)return;this._el.classList.add(k.withAction),this._toggleHiddenActions?.(!0);const e=this._valuesParentEl?.offsetTop===this._titlesWrapperEl?.offsetTop;this._el.classList.toggle(k.withTail,e),this._updateTitleMaxWidth()}_hideActions(){null!==this._el&&this._withActions&&(this._el.classList.remove(k.withAction),this._toggleHiddenActions?.(!1),null!==this._valuesParentEl&&this._valuesParentEl.classList.remove(k.withTail),this._updateTitleMaxWidth())}_handlerRestrictTitleWidth(e){if(null===this._actionsParentEl||null===this._firstBlockWrapper)return;let t=null,s=null;for(const i of e)i.target===this._statusesWrapper&&(t=i.contentRect.width),i.target===this._actionsParentEl&&(s=i.contentRect.width);t===this._lastStatusesWrapperWidth&&s===this._lastActionsWrapperWidth||(null!==t&&(this._lastStatusesWrapperWidth=t),null!==s&&(this._lastActionsWrapperWidth=s),this._updateTitleMaxWidth())}_clearDisableState(){null!==this._el&&(this._el.classList.remove(k.eyeLoading),this._el.classList.remove(k.disabled),this._updateStatusWidgetVisibility(this._disabled.value()),this._updateTitleMaxWidth())}_updateDisabledOnIntervalState(){this._el?.classList.toggle(k.disabledOnInterval,this._disabledOnInterval.value())}_updateSelectedState(){null!==this._el&&this._withActions&&this._el.classList.toggle(k.selected,this._selected.value())}_updateShowTitles(){null!==this._titlesWrapperEl&&(this._titlesWrapperEl.classList.toggle(L.blockHidden,this._isTitleHidden.value()),null!==this._actionsParentEl&&this._actionsParentEl.classList.toggle(L.blockHidden,this._isTitleHidden.value()))}_updateValues(){this._removeValuesSpawnsSubscriptions(),this._createValuesSpawns(),null!==this._valuesParentEl&&null!==this._valuesAdditionalWrapperEl&&(this._valuesElements=[],this._valuesAdditionalWrapperEl.innerHTML=""),this._renderValues(),this._addValuesSpawnsSubscriptions(),this._updateShowValues()}_updateActionVisibilities(e){
|
||||
null!==this._actionsParentEl&&this._actionsParentEl.querySelectorAll(`.${k.button}`)[e].classList.toggle(L.blockHidden,!this._actionsSpawnArray[e].visible.value())}_updateActionTitle(e){const t=this._actionsSpawnArray[e].title;if(null===this._actionsParentEl||null===t)return;const s=this._actionsParentEl.querySelectorAll(`.${k.button}`)[e];s.setAttribute("title",t.value()),s.hasAttribute("aria-label")&&s.setAttribute("aria-label",t.value()),s.dispatchEvent(new CustomEvent("common-tooltip-update"))}_updateCustomTextColor(){const e=this._customTextColor.value()||"";for(const t of this._titleContainers)null!==t&&(t.style.color=e);const t=(0,o.ensureNotNull)(this._valuesParentEl).querySelectorAll(`.${k.valueTitle}`);for(let s=0;s<t.length;s++)t[s].style.color=e;(0,o.ensureNotNull)(this._el).classList.toggle(k.withCustomTextColor,Boolean(e))}_updateStatusWidgetVisibility(e){null!==this._statusesWrapper&&this._statusesWrapper.classList.toggle(L.blockHidden,e)}}var P=s(50279),z=s(97754),N=s.n(z),R=s(39330),O=s(58492),F=s(82708),U=s(19938),G=s(59695);class Z{constructor(e,t){this._lastDrawnLogos=[],this._logoWrapper=null,this._pairContainer=null,this._primaryLogo=null,this._secondaryLogo=null,this._logoContainer=null,this._symbolLetterContainer=null,this._updateLogoVisibility=e=>{this._logoWrapper&&this._logoWrapper.classList.toggle(k.hidden,!e)},this._updateSymbolLogo=async e=>{if(null===this._logoWrapper&&this._renderSymbolLogo(),0!==this._lastDrawnLogos.length&&0!==e.length&&(0,P.default)(this._lastDrawnLogos,e))return;const t=await(s=e,Promise.all(s.map((e=>(0,U.getImage)(`symbol_logo_${e}`,e,$).then((e=>e.cloneNode())))))).catch((()=>[]));var s;switch(t.length){case 0:this._pairContainer?.classList.add(k.hidden),this._logoContainer?.classList.add(G.hiddenCircleLogoClass),this._updateSymbolLetter(),this._symbolLetterContainer?.classList.remove(G.hiddenCircleLogoClass),this._lastDrawnLogos=e;break;case 1:j(this._logoContainer,t[0]),this._pairContainer?.classList.add(k.hidden),this._logoContainer?.classList.remove(G.hiddenCircleLogoClass),this._symbolLetterContainer?.classList.add(G.hiddenCircleLogoClass),this._lastDrawnLogos=e;break;case 2:j(this._primaryLogo,t[0]),j(this._secondaryLogo,t[1]),this._pairContainer?.classList.remove(k.hidden),this._logoContainer?.classList.add(G.hiddenCircleLogoClass),this._symbolLetterContainer?.classList.add(G.hiddenCircleLogoClass),this._lastDrawnLogos=e}},this._model=e,this._parentElement=t,this._renderSymbolLogo(),this._logoUrls=e.symbolLogoUrls().spawn(),this._logoUrls.subscribe(this._updateSymbolLogo,{callWithLast:!0}),this._isLogoVisible=e.isSymbolLogoVisible().spawn(),this._isLogoVisible.subscribe(this._updateLogoVisibility,{callWithLast:!0})}destroy(){this._logoWrapper?.remove(),this._logoWrapper=null,this._pairContainer=null,this._primaryLogo=null,this._secondaryLogo=null,this._logoContainer=null,this._symbolLetterContainer=null,this._logoUrls.destroy(),this._isLogoVisible.destroy()}_renderSymbolLogo(){if(!this._logoWrapper){const e=this._logoWrapper=document.createElement("div")
|
||||
;e.classList.add(k.logoWrapper);const t=this._pairContainer=e.appendChild(document.createElement("span"));t.classList.add(k.pairContainer,k.hidden);const s=t.appendChild(document.createElement("span"));s.className=(0,R.getBlockStyleClasses)("xxxsmall");(this._secondaryLogo=s.appendChild(document.createElement("span"))).className=N()((0,R.getLogoStyleClasses)("xxxsmall"),k.logo);(this._primaryLogo=s.appendChild(document.createElement("span"))).className=N()((0,R.getLogoStyleClasses)("xxxsmall"),k.logo);(this._logoContainer=e.appendChild(document.createElement("span"))).className=N()((0,O.getStyleClasses)("xxxsmall"),k.logo,G.hiddenCircleLogoClass);(this._symbolLetterContainer=e.appendChild(document.createElement("span"))).className=N()((0,O.getStyleClasses)("xxxsmall"),k.logo),this._updateSymbolLetter()}this._parentElement.insertBefore(this._logoWrapper,this._parentElement.firstChild)}_updateSymbolLetter(){if(this._symbolLetterContainer){const e=(0,F.safeShortName)(this._model.symbol()??"")[0];p(this._symbolLetterContainer,e)}}}function j(e,t){e&&e.replaceChildren(t)}function $(e){e.crossOrigin="",e.decoding="async"}const Q=_.isSafari?"click":"auxclick";class K extends D{constructor(e,t,s){super(e,t,s),this._wheelClickHandler=null,this._symbolLogoRenderer=null,this._updateSymbolLogoRenderer=e=>{c.enabled("show_symbol_logo_for_compare_studies")&&(this._symbolLogoRenderer?.destroy(),this._symbolLogoRenderer=e?new Z(e,(0,o.ensureNotNull)(this._titleContainers[0])):null)},this._canUpdateRowVisibility=!0,this._globalRowVisibility=this._model.globalVisibility().spawn(),this._globalRowVisibility.subscribe(this._updateShowLine.bind(this),{callWithLast:!0}),this._has5Buttons=this._model.isAbleShowSourceCode().spawn(),this._has5Buttons.subscribe(this._update5ButtonsStyles.bind(this),{callWithLast:!0}),this._updateStates(!this._disabled.value()),s.statusWidgetEl&&this._addStatusesWidget(s.statusWidgetEl,s.hideInvisibleHover,s.hideValues),this._selected.subscribe(this._updateTitleMaxWidth.bind(this)),s.withActions&&(this._wheelClickHandler=this._onWheelClicked.bind(this),null!==this._titlesWrapperEl&&this._titlesWrapperEl.addEventListener(Q,this._wheelClickHandler));const i=e.symbolLogoViewModel().value();this._updateSymbolLogoRenderer(i),e.symbolLogoViewModel().subscribe(this._updateSymbolLogoRenderer)}destroy(){this._model.symbolLogoViewModel().unsubscribe(this._updateSymbolLogoRenderer),this._symbolLogoRenderer?.destroy(),this._has5Buttons.destroy(),this._globalRowVisibility&&this._globalRowVisibility.destroy(),null!==this._wheelClickHandler&&null!==this._titlesWrapperEl&&this._titlesWrapperEl.removeEventListener(Q,this._wheelClickHandler),super.destroy()}accessibleButtons(){return this._globalRowVisibility.value()?super.accessibleButtons():[]}_updateActionsVisibilitiesByMode(){if(!this._withActions)return;const e=this._model.actions(),t=[];let s=[];if(2===this._rowMode||1===this._rowMode)e[0].visible.value()&&t.push(this._actionElements[0]),
|
||||
e[this._actionElements.length-1].visible.value()&&t.push(this._actionElements[this._actionElements.length-1]),s=this._actionElements.slice(1,this._actionElements.length-1);else for(let s=0;s<this._actionElements.length-1;s++)e[s].visible.value()&&t.push(this._actionElements[s]);s.forEach((e=>e.classList.toggle(L.blockHidden,!0))),t.forEach((e=>e.classList.toggle(L.blockHidden,!1)))}_updateShowLine(){if(null===this._el||!this._canUpdateRowVisibility)return;const e=!this._globalRowVisibility.value();e?this._el.classList.toggle(L.blockHidden,e):super._updateShowLine()}_getButtonsCount(){switch(this._rowMode){case 4:return this._has5Buttons.value()?5:4;case 3:return 3;default:return 2}}_render(){super._render();const e=(0,o.ensureNotNull)(this._el);e.classList.add(k.item,k.study),e.dataset.name="legend-source-item",e.dataset.entityId=this._model.getSource().id(),e.setAttribute("role","toolbar")}_createTitlesSpawns(){const e=this._model.titles(),t=this._model.titleActions();this._titlesSpawns=[{...t.title,title:e.title.spawn(),class:k.mainTitle,titleId:"legend-source-title"},{...t.args,title:e.args.spawn(),class:k.descTitle,titleId:"legend-source-description"}]}_renderValues(){const e=this._initWrappersIfNotInitialized(),t=this._values.value();for(const s of t){const t=document.createElement("div");t.classList.add(k.valueItem),t.classList.toggle(L.blockHidden,!s.visible.value());const i=document.createElement("div");i.classList.add(k.valueValue),i.style.color=s.color.value()||"",i.appendChild(document.createTextNode(s.value.value()));const l=s.title.value();void 0!==l&&(i.classList.add("apply-common-tooltip"),i.title=l),t.appendChild(i),this._valuesElements.push({value:i}),e.appendChild(t)}}_updateValuesTitleHTMLElHandler(e,t=""){const s=(0,o.ensure)(this._valuesElements[e].value);s.classList.toggle("apply-common-tooltip",0!==t.length),s.title=t}_update5ButtonsStyles(e){null!==this._el&&(this._el.classList.toggle(k.has5Buttons,e),this._updateAllButtonsWidth())}_onWheelClicked(e){1===e.button&&this._model.onRemoveSource()}}class q extends D{constructor(e,t,s){super(e,t,s),this._symbolLogoRenderer=null,this._clientHeight=null,this._updateLinkedState=void 0,this._flagged=this._model.flagged().spawn(),this._flagged.subscribe(this._updateFlaggedState.bind(this)),this._updateStates(),s.statusWidgetEl&&this._addStatusesWidget(s.statusWidgetEl,s.hideInvisibleHover,s.hideValues),this._selected.subscribe(this._updateTitleMaxWidth.bind(this));const i=e.symbolLogoViewModel().value();i&&(this._symbolLogoRenderer=new Z(i,(0,o.ensureNotNull)(this._titleContainers[0])))}destroy(){super.destroy(),this._flagged?.destroy(),this._symbolLogoRenderer?.destroy()}getHeight(){return null===this._el?null:(null===this._clientHeight&&(this._clientHeight=this._el.clientHeight,0===this._clientHeight&&(this._clientHeight=null)),this._clientHeight)}_updateActionsVisibilitiesByMode(){if(!this._withActions)return;const e=[];let t=[];const s=this._model.actions()
|
||||
;if(1===this._rowMode)s[this._actionElements.length-1].visible.value()&&e.push(this._actionElements[this._actionElements.length-1]),t=this._actionElements.slice(0,this._actionElements.length-1);else for(let t=0;t<this._actionElements.length;t++)s[t].visible.value()&&e.push(this._actionElements[t]);t.forEach((e=>e.classList.toggle(L.blockHidden,!0))),e.forEach((e=>e.classList.toggle(L.blockHidden,!1)))}_updateTitlesVisibilitiesByMode(){}_isTitleHiddenByMode(e){const t=e.titleId;return"legend-source-interval"!==t&&"legend-source-provider"!==t&&"legend-source-exchange"!==t?super._isTitleHiddenByMode(e):"legend-source-interval"===t&&this._isMultipleLayout.value()?1===this._titlesMode:3!==this._titlesMode}_hideTitleAndItsContainerIfRequired(e){const t=this._getTitleIndexByDataName(e);if(-1===t)return;const s=this._titlesSpawns[t],i=this._titleContainers[t],l=this._titleElements[t],o=0===s.title.value().length||this._isTitleHiddenByMode(s);i?.classList.toggle(L.blockHidden,o),l?.classList.toggle(L.blockHidden,o)}_getButtonsCount(){return 1===this._rowMode?1:3}_render(){super._render();const e=(0,o.ensureNotNull)(this._el);e.classList.add(k.item,k.series),e.classList.toggle(k.onlyOneButtonCanBeStick,this._model.isOneButtonCanBeStick()),e.dataset.name="legend-series-item",e.setAttribute("role","toolbar")}_updateStates(){super._updateStates(),this._updateFlaggedState()}_renderValues(){const e=this._initWrappersIfNotInitialized(),t=this._values.value();for(const s of t){const t=document.createElement("div");t.classList.add(k.valueItem),t.classList.toggle(L.blockHidden,!s.visible.value()),t.classList.toggle(k.unimportant,s.unimportant.value());const i=document.createElement("div"),l=s.title.value()||"";i.classList.add(k.valueTitle),i.classList.toggle(L.blockHidden,0===l.length),i.appendChild(document.createTextNode(l)),t.appendChild(i);const o=document.createElement("div");o.classList.add(k.valueValue),o.style.color=s.color.value()||"",o.appendChild(document.createTextNode(s.value.value())),t.appendChild(o),this._valuesElements.push({title:i,value:o}),e.appendChild(t)}}_createTitlesSpawns(){const e=this._model.titles(),t=this._model.titleActions();this._titlesSpawns=[{...t.title,title:e.title.spawn(),class:k.mainTitle,titleId:"legend-source-title"},{...t.description,title:e.description.spawn(),class:k.descTitle,titleId:"legend-source-description"},{...t.interval,title:e.interval.spawn(),class:k.intervalTitle,titleId:"legend-source-interval"},{...t.provider,title:e.provider.spawn(),class:k.providerTitle,titleId:"legend-source-provider"},{...t.exchange,title:e.exchange.spawn(),class:k.exchangeTitle,titleId:"legend-source-exchange"},{...t.chartStyle,title:e.chartStyle.spawn(),class:k.styleTitle,titleId:"legend-source-style"},{...t.priceSource,title:e.priceSource.spawn(),class:k.priceSourceTitle,titleId:"legend-source-price-source"}]}_updateValuesTitleHTMLElHandler(e,t=""){const s=(0,o.ensure)(this._valuesElements[e].title);p(s,t),s.classList.toggle(L.blockHidden,0===t.length),this._updateShowValues()}_isWidthButtonsMode(){
|
||||
return null!==this._el&&(void 0!==this._flagged&&Boolean(this._flagged.value())||this._linked?.value()||super._isWidthButtonsMode())}_updateFlaggedState(){if(void 0===this._flagged)return;(0,o.ensureNotNull)(this._el).classList.toggle(k.flagged,Boolean(this._flagged.value())),this._updateTitleMaxWidth()}_getTitleIndexByDataName(e){return this._titlesSpawns.findIndex((t=>t.titleId===e))}}var J=s(11542),X=s(51768);function Y(e){(0,X.trackEvent)("GUI","Legend action",e)}var ee,te,se=s(47036),ie=s(62920),le=s(65300),oe=s(36885);!function(e){e[e.Default=0]="Default",e[e.Micro=1]="Micro"}(ee||(ee={}));class ae{constructor(e,t,s){this._wrapperTogger=null,this._el=null,this._counterEl=null,this._arrowIconEL=null,this._objectTreeEl=null,this._mode=0,this._accessibleButtons=[],this._parentEl=e,this._themedColor=t.spawn(),this._themedColor.subscribe(this._updateThemedColor.bind(this)),this._showCollapserWithOneIndicator=s.showCollapserWithOneIndicator.spawn(),this._showCollapserWithOneIndicator.subscribe(this._updateVisibility.bind(this)),this._sourceCount=s.visibleDataSourceCount.spawn(),this._sourceCount.subscribe((()=>{this._updateSourceCount(),this._updateVisibility()})),this._isStateOpen=s.isDataSourcesCollapsed.spawn(),this._isStateOpen.subscribe((()=>{this._updateState(),this._updateVisibility()})),this._isMainPane=s.isMainPane.spawn(),this._isMainPane.subscribe(this._updateObjectTreeVisibility.bind(this)),this._isPaneCollapsed=s.isPaneCollapsed.spawn(),this._isPaneCollapsed.subscribe(this._updateVisibility.bind(this)),this._combinedStatusWidgetEl=s.combinedStatusWidget.getElement(),this._combinedStatusWidgetVisibility=s.combinedStatusWidget.visibility().spawn(),this._combinedStatusWidgetVisibility.subscribe(this._updateVisibility.bind(this)),this._render(),this._updateState(),this._updateVisibility(),this._updateThemedColor(this._themedColor.value()),this._updateObjectTreeVisibility(this._isMainPane.value()),this._toggleStateHandler=e=>{null!==this._el&&(e.cancelable&&e.preventDefault(),e instanceof KeyboardEvent||this._el?.blur(),1!==this._mode?s.onCollapseDataSources():s.onShowObjectsTreeDialog())},null!==this._el&&(this._el.addEventListener("touchend",this._toggleStateHandler),this._el.addEventListener("click",this._toggleStateHandler),this._el.addEventListener("contextmenu",(e=>{e.preventDefault(),e.stopPropagation()}))),this._updateSourceCount()}destroy(){this._isPaneCollapsed.destroy(),this._sourceCount.destroy(),this._isStateOpen.destroy(),this._showCollapserWithOneIndicator.destroy(),this._combinedStatusWidgetVisibility.destroy(),null!==this._objectTreeEl&&(this._objectTreeEl=null),this._arrowIconEL=null,this._counterEl=null,null!==this._el&&(this._el.removeEventListener("touchend",this._toggleStateHandler),this._el.removeEventListener("click",this._toggleStateHandler),this._el.innerHTML="",this._el=null)}accessibleButtons(){return null===this._el||this._el.classList.contains(k.onlyOneSourceShown)&&1!==this._mode?[]:this._accessibleButtons}setMode(e){this._mode=e?1:0,this._updateTooltip()}_render(){
|
||||
this._wrapperTogger=document.createElement("div"),this._wrapperTogger.classList.add(k.togglerWrapper),this._el=document.createElement("button"),this._el.className=`${k.toggler} apply-common-tooltip`;const e=this._el;e.type="button",e.classList.add(k.accessible),e.tabIndex=-1;const t=t=>{if(null!==e)switch(t.type){case"roving-tabindex:main-element":e.tabIndex=0;break;case"roving-tabindex:secondary-element":e.tabIndex=-1}};e.addEventListener("roving-tabindex:main-element",t),e.addEventListener("roving-tabindex:secondary-element",t),e.addEventListener("keydown",(e=>{const t=(0,u.hashFromEvent)(e);13!==t&&32!==t||(e.preventDefault(),this._toggleStateHandler(e))})),this._accessibleButtons.push(e),this._arrowIconEL=document.createElement("div"),this._arrowIconEL.classList.add(k.iconArrow),this._arrowIconEL.innerHTML=b.trackingModeIsAvailable?ie:se,this._el.appendChild(this._arrowIconEL),this._objectTreeEl=document.createElement("div"),this._objectTreeEl.classList.add(k.objectTree),this._objectTreeEl.innerHTML=b.trackingModeIsAvailable?oe:le,this._el.appendChild(this._objectTreeEl),this._counterEl=document.createElement("div"),this._counterEl.classList.add(k.counter),this._counterEl.appendChild(document.createTextNode(String(this._sourceCount.value()))),this._el.appendChild(this._counterEl),this._wrapperTogger.appendChild(this._el);const s=document.createElement("div");s.classList.add(k.statusesWrapper),this._combinedStatusWidgetEl.classList.add(k.statusesWrapper__statusesWithToggle),s.appendChild(this._combinedStatusWidgetEl),this._wrapperTogger.appendChild(s),this._parentEl.appendChild(this._wrapperTogger)}_updateThemedColor(e){if(null!==this._el)if(e.length>0){const[t,s,i]=(0,d.parseRgb)(e);this._el.style.backgroundColor=(0,d.rgbaToString)([t,s,i,(0,d.normalizeAlphaComponent)(.8)])}else this._el.style.removeProperty("background-color")}_updateSourceCount(){const e=this._sourceCount.value(),t=(0,o.ensureNotNull)(this._counterEl);p(t,String(e)),t.classList.toggle(L.blockHidden,e<=1),this._parentEl.classList.toggle(k.saveArrowWidth,e<=1)}_updateVisibility(){const e=this._sourceCount.value(),t=(0,o.ensureNotNull)(this._el),s=1===e&&!this._showCollapserWithOneIndicator.value()&&(this._isStateOpen.value()||!this._combinedStatusWidgetVisibility.value()),i=e<1||this._isPaneCollapsed.value()&&(this._isMainPane.value()||this._isStateOpen.value());t.classList.toggle(L.blockHidden,!!i),t.classList.toggle(k.onlyOneSourceShown,s),(0,o.ensureNotNull)(this._wrapperTogger).classList.toggle(L.blockHidden,s),(0,o.ensureNotNull)(this._combinedStatusWidgetEl).classList.toggle(L.blockHidden,this._isStateOpen.value())}_updateState(){const e=!this._isStateOpen.value();this._parentEl.classList.toggle(k.closed,e),this._updateTooltip(),Y((e?"Hide":"Show")+" not main sources")}_tooltip(){if(1===this._mode)return J.t(null,void 0,s(85786));const e=this._sourceCount.value(),t=J.t(null,{plural:"Hide indicators legend",count:e},s(46960)),i=J.t(null,{plural:"Show indicators legend",count:e},s(36553));return this._isStateOpen.value()?t:i}_updateTooltip(){
|
||||
if(null!==this._el){const e=this._tooltip();this._el.setAttribute("title",e),this._el.setAttribute("aria-label",e),this._el.dispatchEvent(new CustomEvent("common-tooltip-update"))}}_updateObjectTreeVisibility(e){(0,o.ensureNotNull)(this._el).classList.toggle(k.objectsTreeCanBeShown,e)}}!function(e){e[e.Medium=222]="Medium",e[e.Small=205]="Small",e[e.Tiny=133]="Tiny",e[e.HideUnimportantValues=272]="HideUnimportantValues",e[e.SeriesDirectionColumn=542]="SeriesDirectionColumn",e[e.HideExchangeIntevalProvider=442]="HideExchangeIntevalProvider",e[e.HideIntervalMultiChart=192]="HideIntervalMultiChart"}(te||(te={}));const ne=c.enabled("object_tree_legend_mode"),re=[27,9,37,39,38,40];class de{constructor(e,t){this._mode=4,this._renderToggler=null,this._mainDataSourceRenderer=null,this._dataSourceRenderers=[],this._parentEl=document.createElement("div"),this._mainDataSourceEl=null,this._dataSourcesEl=null,this._dataSourcesAdditionalWrapperEl=null,this._collapsedDataSourcesWrapperEl=null,this._collapsedDataSourcesEl=null,this._outsideEventForCollapsedTooltip=null,this._onKeyboardNavigationActivationBound=this._onKeyboardNavigationActivation.bind(this),this._onIsDataSourcesCollapsedBound=this._onIsDataSourcesCollapsed.bind(this),this._focusEventAbortController=null,this._toggleHiddenActionsTimoutID=null,this._toggleHiddenActions=e=>{this._toggleHiddenActionsTimoutID&&(clearTimeout(this._toggleHiddenActionsTimoutID),this._toggleHiddenActionsTimoutID=null),e?this._parentEl.classList.toggle(k.legend_withHiddenActions,e):this._toggleHiddenActionsTimoutID=setTimeout((()=>this._parentEl.classList.toggle(k.legend_withHiddenActions,e)),100)},this._options=e,this._togglerOptions=t,this._isStudiesLegendHidden=e.isStudiesLegendHidden.spawn(),this._isStudiesLegendHidden.subscribe(this._updateLegendVisibility.bind(this)),this._isAllLegendHidden=e.isAllLegendHidden.spawn(),this._isAllLegendHidden.subscribe(this._updateLegendVisibility.bind(this)),this._updateLegendVisibility(),this._hideAllExceptFirstLine=e.hideAllExceptFirstLine.spawn(),this._hideAllExceptFirstLine.subscribe(this._updateAllHiddenExeptFirstLine.bind(this)),this._themedColor=e.themedColor.spawn(),this._themedColor.subscribe(this._setCustomBg.bind(this)),this._showBackground=e.showBackground.spawn(),this._showBackground.subscribe(this._setCustomBg.bind(this)),this._backgroundTransparency=e.backgroundTransparency.spawn(),this._backgroundTransparency.subscribe(this._setCustomBg.bind(this)),this._collapsedDataSourcesCountSpawn=e.collapsedDataSourcesCount.spawn(),this._collapsedDataSourcesCountSpawn.subscribe(this._updateCollapsedSourcesCount.bind(this)),this._collapsedDataSourcesStatusWidgetElement=e.combinedStatusWidget.getElement(),this._showCollapsedDataSourcesTooltipHandler=this._showCollapsedDataSourcesTooltip.bind(this),this._parentEl.classList.add(k.legend),this._parentEl.classList.toggle(k.noWrap,!b.trackingModeIsAvailable),this._parentEl.classList.toggle(k.noActions,!this._options.withActions),this._parentEl.classList.toggle(k.touchMode,b.trackingModeIsAvailable),
|
||||
this._parentEl.classList.toggle(k.wrappable,!this._hideAllExceptFirstLine.value()),this._parentEl.dataset.name="legend",this._parentEl.setAttribute("data-tooltip-show-on-focus","true"),this._parentEl.style.setProperty("--legend-source-item-button-width",`${y}px`);const s=t=>{t.preventDefault(),e.showLegendWidgetContextMenu(t)};this._mouseEventHandler=new S.MouseEventHandler(this._parentEl,{contextMenuEvent:s,touchContextMenuEvent:s}),window.addEventListener("keyboard-navigation-activation",this._onKeyboardNavigationActivationBound),this._parentEl.addEventListener("keydown",this._handleKeyDown.bind(this)),this._options.onLayoutChanged.subscribe(this,this._onLayoutChanged)}destroy(){this._focusEventAbortController?.abort();const e=document.activeElement;let t=-1;if(de._wasKeyboardNavigationActivated&&e instanceof HTMLButtonElement){null!==this._getRowRendererByChild(e)&&(t=(0,g.queryTabbableElements)(document.body).indexOf(e))}if(this._isStudiesLegendHidden.destroy(),this._isAllLegendHidden.destroy(),this._hideAllExceptFirstLine.destroy(),this._themedColor.destroy(),this._showBackground.destroy(),this._backgroundTransparency.destroy(),this._collapsedDataSourcesCountSpawn.destroy(),b.trackingModeIsAvailable&&null!==this._collapsedDataSourcesWrapperEl&&this._collapsedDataSourcesWrapperEl.removeEventListener("touchend",this._showCollapsedDataSourcesTooltipHandler),this._outsideEventForCollapsedTooltip&&this._outsideEventForCollapsedTooltip(),null!==this._dataSourcesAdditionalWrapperEl&&(this._dataSourcesAdditionalWrapperEl.innerHTML="",this._dataSourcesAdditionalWrapperEl=null),null!==this._dataSourcesEl&&(this._dataSourcesEl.innerHTML="",this._dataSourcesEl=null),this._togglerOptions.isDataSourcesCollapsed.unsubscribe(this._onIsDataSourcesCollapsedBound),null!==this._renderToggler&&(this._renderToggler.destroy(),this._renderToggler=null),null!==this._mainDataSourceRenderer&&(this._mainDataSourceRenderer.destroy(),this._mainDataSourceRenderer=null),0!==this._dataSourceRenderers.length){for(const e of this._dataSourceRenderers)e.destroy();this._dataSourceRenderers=[]}if(this._mouseEventHandler.destroy(),this._parentEl.innerHTML="",delete this._parentEl,window.removeEventListener("keyboard-navigation-activation",this._onKeyboardNavigationActivationBound),-1!==t){let e;window.dispatchEvent(new CustomEvent("keyboard-navigation-activation",{bubbles:!0}));const s=(0,g.queryTabbableElements)(document.body);e=t===s.length?s[0]:s[t],e&&e.focus()}}addCustomWidget(e,t){if(0===t.block){this._renderMainDataSourceEl();const s=(0,o.ensureNotNull)(this._mainDataSourceEl);1===t.position&&e.renderTo(s,s.firstChild),0===t.position&&e.renderTo(s)}if(1===t.block){this._renderDataSourcesEl();const s=(0,o.ensureNotNull)(this._dataSourcesAdditionalWrapperEl);1===t.position&&e.renderTo(s,s.firstChild),0===t.position&&e.renderTo(s)}}firstTitle(){return this._parentEl.firstElementChild}getElement(){return this._parentEl}updateMode(e){const t=ne&&e<133?1:e<205?2:e<222?3:4,s=e<192?1:e<442?2:3;this._mode=t,
|
||||
null!==this._mainDataSourceRenderer&&this._mainDataSourceRenderer.updateMode(t,s);for(const e of this._dataSourceRenderers)e.updateMode(t,s);this._parentEl.classList.toggle(k.medium,3===t),this._parentEl.classList.toggle(k.minimized,2===t),this._parentEl.classList.toggle(k.micro,1===t),null!==this._renderToggler&&this._renderToggler.setMode(1===t);const i=!this._hideAllExceptFirstLine.value()&&(b.trackingModeIsAvailable||e<542);this._parentEl.classList.toggle(k.directionColumn,i),this._parentEl.classList.toggle(k.hideUniportantValueItems,!_.CheckMobile.any()&&e<=272)}getMainSourceHeight(){return null===this._mainDataSourceRenderer?0:this._mainDataSourceRenderer.getHeight()}getDataSourceHeight(){return 0===this._dataSourceRenderers.length?0:this._dataSourceRenderers[0].getHeight()}_renderMainDataSourceEl(){null===this._mainDataSourceEl&&(this._mainDataSourceEl=document.createElement("div"),this._mainDataSourceEl.classList.add(k.legendMainSourceWrapper),this._parentEl.insertBefore(this._mainDataSourceEl,this._dataSourcesEl))}_renderDataSourcesEl(){null===this._dataSourcesEl&&(this._dataSourcesEl=document.createElement("div"),this._dataSourcesEl.classList.add(k.sourcesWrapper),this._renderToggle(this._dataSourcesEl),this._dataSourcesAdditionalWrapperEl=document.createElement("div"),this._dataSourcesAdditionalWrapperEl.classList.add(k.sources),this._dataSourcesEl.appendChild(this._dataSourcesAdditionalWrapperEl),this._renderCollapsedCounter(this._dataSourcesAdditionalWrapperEl),this._parentEl.appendChild(this._dataSourcesEl))}_renderToggle(e){this._options.showToggleButton&&(this._renderToggler=new ae(e,this._options.themedColor,this._togglerOptions))}_onIsDataSourcesCollapsed(e){if(e){const e=this._getAllAccessibleButtons();if(0===e.filter((e=>e.tabIndex>=0)).length){const t=this._getRowRendererByChild(e[0]);t&&this._makeRowElementTheMainOne(e[0],t)}return}if(0!==(this._mainDataSourceRenderer?.accessibleButtons()||[]).filter((e=>e.tabIndex>=0)).length)return;const t=[];this._dataSourceRenderers.forEach((e=>t.push(...e.accessibleButtons())));const s=t.filter((e=>e.tabIndex>=0));if(0!==s.length){this._focusEventAbortController&&this._focusEventAbortController.abort(),s.forEach((e=>(0,m.becomeSecondaryElement)(e)));let e=null,t=null;if(this._mainDataSourceRenderer){const s=this._mainDataSourceRenderer.accessibleButtons();s.length>0&&(e=s[0],t=this._mainDataSourceRenderer)}null===e&&this._renderToggler&&(e=this._renderToggler.accessibleButtons()[0],t=this._renderToggler),e&&t&&this._makeRowElementTheMainOne(e,t)}}_renderCollapsedCounter(e){this._collapsedDataSourcesWrapperEl=document.createElement("div"),this._collapsedDataSourcesWrapperEl.className=`${k.item} ${k.last}`,this._collapsedDataSourcesEl=document.createElement("span"),this._collapsedDataSourcesEl.className=`${k.text} apply-common-tooltip`,this._collapsedDataSourcesWrapperEl.append(this._collapsedDataSourcesEl);const t=document.createElement("div");t.classList.add(k.statusesWrapper),
|
||||
e[this._actionElements.length-1].visible.value()&&t.push(this._actionElements[this._actionElements.length-1]),s=this._actionElements.slice(1,this._actionElements.length-1);else for(let s=0;s<this._actionElements.length-1;s++)e[s].visible.value()&&t.push(this._actionElements[s]);s.forEach((e=>e.classList.toggle(L.blockHidden,!0))),t.forEach((e=>e.classList.toggle(L.blockHidden,!1)))}_updateShowLine(){if(null===this._el||!this._canUpdateRowVisibility)return;const e=!this._globalRowVisibility.value();e?this._el.classList.toggle(L.blockHidden,e):super._updateShowLine()}_getButtonsCount(){switch(this._rowMode){case 4:return this._has5Buttons.value()?5:4;case 3:return 3;default:return 2}}_render(){super._render();const e=(0,o.ensureNotNull)(this._el);e.classList.add(k.item,k.study),e.dataset.name="legend-source-item",e.dataset.entityId=this._model.getSource().id(),e.setAttribute("role","toolbar")}_createTitlesSpawns(){const e=this._model.titles(),t=this._model.titleActions();this._titlesSpawns=[{...t.title,title:e.title.spawn(),class:k.mainTitle,titleId:"legend-source-title"},{...t.args,title:e.args.spawn(),class:k.descTitle,titleId:"legend-source-description"}]}_renderValues(){const e=this._initWrappersIfNotInitialized(),t=this._values.value();for(const s of t){const t=document.createElement("div");t.dataset.testIdValueTitle=s.title.value(),t.classList.add(k.valueItem),t.classList.toggle(L.blockHidden,!s.visible.value());const i=document.createElement("div");i.classList.add(k.valueValue),i.style.color=s.color.value()||"",i.appendChild(document.createTextNode(s.value.value()));const l=s.title.value();void 0!==l&&(i.classList.add("apply-common-tooltip"),i.title=l),t.appendChild(i),this._valuesElements.push({value:i}),e.appendChild(t)}}_updateValuesTitleHTMLElHandler(e,t=""){const s=(0,o.ensure)(this._valuesElements[e].value);s.classList.toggle("apply-common-tooltip",0!==t.length),s.title=t}_update5ButtonsStyles(e){null!==this._el&&(this._el.classList.toggle(k.has5Buttons,e),this._updateAllButtonsWidth())}_onWheelClicked(e){1===e.button&&this._model.onRemoveSource()}}class q extends D{constructor(e,t,s){super(e,t,s),this._symbolLogoRenderer=null,this._clientHeight=null,this._updateLinkedState=void 0,this._flagged=this._model.flagged().spawn(),this._flagged.subscribe(this._updateFlaggedState.bind(this)),this._updateStates(),s.statusWidgetEl&&this._addStatusesWidget(s.statusWidgetEl,s.hideInvisibleHover,s.hideValues),this._selected.subscribe(this._updateTitleMaxWidth.bind(this));const i=e.symbolLogoViewModel().value();i&&(this._symbolLogoRenderer=new Z(i,(0,o.ensureNotNull)(this._titleContainers[0])))}destroy(){super.destroy(),this._flagged?.destroy(),this._symbolLogoRenderer?.destroy()}getHeight(){return null===this._el?null:(null===this._clientHeight&&(this._clientHeight=this._el.clientHeight,0===this._clientHeight&&(this._clientHeight=null)),this._clientHeight)}_updateActionsVisibilitiesByMode(){if(!this._withActions)return;const e=[];let t=[];const s=this._model.actions()
|
||||
;if(1===this._rowMode)s[this._actionElements.length-1].visible.value()&&e.push(this._actionElements[this._actionElements.length-1]),t=this._actionElements.slice(0,this._actionElements.length-1);else for(let t=0;t<this._actionElements.length;t++)s[t].visible.value()&&e.push(this._actionElements[t]);t.forEach((e=>e.classList.toggle(L.blockHidden,!0))),e.forEach((e=>e.classList.toggle(L.blockHidden,!1)))}_updateTitlesVisibilitiesByMode(){}_isTitleHiddenByMode(e){const t=e.titleId;return"legend-source-interval"!==t&&"legend-source-provider"!==t&&"legend-source-exchange"!==t?super._isTitleHiddenByMode(e):"legend-source-interval"===t&&this._isMultipleLayout.value()?1===this._titlesMode:3!==this._titlesMode}_hideTitleAndItsContainerIfRequired(e){const t=this._getTitleIndexByDataName(e);if(-1===t)return;const s=this._titlesSpawns[t],i=this._titleContainers[t],l=this._titleElements[t],o=0===s.title.value().length||this._isTitleHiddenByMode(s);i?.classList.toggle(L.blockHidden,o),l?.classList.toggle(L.blockHidden,o)}_getButtonsCount(){return 1===this._rowMode?1:3}_render(){super._render();const e=(0,o.ensureNotNull)(this._el);e.classList.add(k.item,k.series),e.classList.toggle(k.onlyOneButtonCanBeStick,this._model.isOneButtonCanBeStick()),e.dataset.name="legend-series-item",e.setAttribute("role","toolbar")}_updateStates(){super._updateStates(),this._updateFlaggedState()}_renderValues(){const e=this._initWrappersIfNotInitialized(),t=this._values.value();for(const s of t){const t=document.createElement("div");t.dataset.testIdValueTitle=s.title.value(),t.classList.add(k.valueItem),t.classList.toggle(L.blockHidden,!s.visible.value()),t.classList.toggle(k.unimportant,s.unimportant.value());const i=document.createElement("div"),l=s.title.value()||"";i.classList.add(k.valueTitle),i.classList.toggle(L.blockHidden,0===l.length),i.appendChild(document.createTextNode(l)),t.appendChild(i);const o=document.createElement("div");o.classList.add(k.valueValue),o.style.color=s.color.value()||"",o.appendChild(document.createTextNode(s.value.value())),t.appendChild(o),this._valuesElements.push({title:i,value:o}),e.appendChild(t)}}_createTitlesSpawns(){const e=this._model.titles(),t=this._model.titleActions();this._titlesSpawns=[{...t.title,title:e.title.spawn(),class:k.mainTitle,titleId:"legend-source-title"},{...t.description,title:e.description.spawn(),class:k.descTitle,titleId:"legend-source-description"},{...t.interval,title:e.interval.spawn(),class:k.intervalTitle,titleId:"legend-source-interval"},{...t.provider,title:e.provider.spawn(),class:k.providerTitle,titleId:"legend-source-provider"},{...t.exchange,title:e.exchange.spawn(),class:k.exchangeTitle,titleId:"legend-source-exchange"},{...t.chartStyle,title:e.chartStyle.spawn(),class:k.styleTitle,titleId:"legend-source-style"},{...t.priceSource,title:e.priceSource.spawn(),class:k.priceSourceTitle,titleId:"legend-source-price-source"}]}_updateValuesTitleHTMLElHandler(e,t=""){const s=(0,o.ensure)(this._valuesElements[e].title);p(s,t),s.classList.toggle(L.blockHidden,0===t.length),
|
||||
this._updateShowValues()}_isWidthButtonsMode(){return null!==this._el&&(void 0!==this._flagged&&Boolean(this._flagged.value())||this._linked?.value()||super._isWidthButtonsMode())}_updateFlaggedState(){if(void 0===this._flagged)return;(0,o.ensureNotNull)(this._el).classList.toggle(k.flagged,Boolean(this._flagged.value())),this._updateTitleMaxWidth()}_getTitleIndexByDataName(e){return this._titlesSpawns.findIndex((t=>t.titleId===e))}}var J=s(11542),X=s(51768);function Y(e){(0,X.trackEvent)("GUI","Legend action",e)}var ee,te,se=s(47036),ie=s(62920),le=s(65300),oe=s(36885);!function(e){e[e.Default=0]="Default",e[e.Micro=1]="Micro"}(ee||(ee={}));class ae{constructor(e,t,s){this._wrapperTogger=null,this._el=null,this._counterEl=null,this._arrowIconEL=null,this._objectTreeEl=null,this._mode=0,this._accessibleButtons=[],this._parentEl=e,this._themedColor=t.spawn(),this._themedColor.subscribe(this._updateThemedColor.bind(this)),this._showCollapserWithOneIndicator=s.showCollapserWithOneIndicator.spawn(),this._showCollapserWithOneIndicator.subscribe(this._updateVisibility.bind(this)),this._sourceCount=s.visibleDataSourceCount.spawn(),this._sourceCount.subscribe((()=>{this._updateSourceCount(),this._updateVisibility()})),this._isStateOpen=s.isDataSourcesCollapsed.spawn(),this._isStateOpen.subscribe((()=>{this._updateState(),this._updateVisibility()})),this._isMainPane=s.isMainPane.spawn(),this._isMainPane.subscribe(this._updateObjectTreeVisibility.bind(this)),this._isPaneCollapsed=s.isPaneCollapsed.spawn(),this._isPaneCollapsed.subscribe(this._updateVisibility.bind(this)),this._combinedStatusWidgetEl=s.combinedStatusWidget.getElement(),this._combinedStatusWidgetVisibility=s.combinedStatusWidget.visibility().spawn(),this._combinedStatusWidgetVisibility.subscribe(this._updateVisibility.bind(this)),this._render(),this._updateState(),this._updateVisibility(),this._updateThemedColor(this._themedColor.value()),this._updateObjectTreeVisibility(this._isMainPane.value()),this._toggleStateHandler=e=>{null!==this._el&&(e.cancelable&&e.preventDefault(),e instanceof KeyboardEvent||this._el?.blur(),1!==this._mode?s.onCollapseDataSources():s.onShowObjectsTreeDialog())},null!==this._el&&(this._el.addEventListener("touchend",this._toggleStateHandler),this._el.addEventListener("click",this._toggleStateHandler),this._el.addEventListener("contextmenu",(e=>{e.preventDefault(),e.stopPropagation()}))),this._updateSourceCount()}destroy(){this._isPaneCollapsed.destroy(),this._sourceCount.destroy(),this._isStateOpen.destroy(),this._showCollapserWithOneIndicator.destroy(),this._combinedStatusWidgetVisibility.destroy(),null!==this._objectTreeEl&&(this._objectTreeEl=null),this._arrowIconEL=null,this._counterEl=null,null!==this._el&&(this._el.removeEventListener("touchend",this._toggleStateHandler),this._el.removeEventListener("click",this._toggleStateHandler),this._el.innerHTML="",this._el=null)}accessibleButtons(){return null===this._el||this._el.classList.contains(k.onlyOneSourceShown)&&1!==this._mode?[]:this._accessibleButtons}setMode(e){
|
||||
this._mode=e?1:0,this._updateTooltip()}_render(){this._wrapperTogger=document.createElement("div"),this._wrapperTogger.classList.add(k.togglerWrapper),this._el=document.createElement("button"),this._el.className=`${k.toggler} apply-common-tooltip`;const e=this._el;e.type="button",e.classList.add(k.accessible),e.tabIndex=-1;const t=t=>{if(null!==e)switch(t.type){case"roving-tabindex:main-element":e.tabIndex=0;break;case"roving-tabindex:secondary-element":e.tabIndex=-1}};e.addEventListener("roving-tabindex:main-element",t),e.addEventListener("roving-tabindex:secondary-element",t),e.addEventListener("keydown",(e=>{const t=(0,u.hashFromEvent)(e);13!==t&&32!==t||(e.preventDefault(),this._toggleStateHandler(e))})),this._accessibleButtons.push(e),this._arrowIconEL=document.createElement("div"),this._arrowIconEL.classList.add(k.iconArrow),this._arrowIconEL.innerHTML=b.trackingModeIsAvailable?ie:se,this._el.appendChild(this._arrowIconEL),this._objectTreeEl=document.createElement("div"),this._objectTreeEl.classList.add(k.objectTree),this._objectTreeEl.innerHTML=b.trackingModeIsAvailable?oe:le,this._el.appendChild(this._objectTreeEl),this._counterEl=document.createElement("div"),this._counterEl.classList.add(k.counter),this._counterEl.appendChild(document.createTextNode(String(this._sourceCount.value()))),this._el.appendChild(this._counterEl),this._wrapperTogger.appendChild(this._el);const s=document.createElement("div");s.classList.add(k.statusesWrapper),this._combinedStatusWidgetEl.classList.add(k.statusesWrapper__statusesWithToggle),s.appendChild(this._combinedStatusWidgetEl),this._wrapperTogger.appendChild(s),this._parentEl.appendChild(this._wrapperTogger)}_updateThemedColor(e){if(null!==this._el)if(e.length>0){const[t,s,i]=(0,d.parseRgb)(e);this._el.style.backgroundColor=(0,d.rgbaToString)([t,s,i,(0,d.normalizeAlphaComponent)(.8)])}else this._el.style.removeProperty("background-color")}_updateSourceCount(){const e=this._sourceCount.value(),t=(0,o.ensureNotNull)(this._counterEl);p(t,String(e)),t.classList.toggle(L.blockHidden,e<=1),this._parentEl.classList.toggle(k.saveArrowWidth,e<=1)}_updateVisibility(){const e=this._sourceCount.value(),t=(0,o.ensureNotNull)(this._el),s=1===e&&!this._showCollapserWithOneIndicator.value()&&(this._isStateOpen.value()||!this._combinedStatusWidgetVisibility.value()),i=e<1||this._isPaneCollapsed.value()&&(this._isMainPane.value()||this._isStateOpen.value());t.classList.toggle(L.blockHidden,!!i),t.classList.toggle(k.onlyOneSourceShown,s),(0,o.ensureNotNull)(this._wrapperTogger).classList.toggle(L.blockHidden,s),(0,o.ensureNotNull)(this._combinedStatusWidgetEl).classList.toggle(L.blockHidden,this._isStateOpen.value())}_updateState(){const e=!this._isStateOpen.value();this._parentEl.classList.toggle(k.closed,e),this._updateTooltip(),Y((e?"Hide":"Show")+" not main sources")}_tooltip(){if(1===this._mode)return J.t(null,void 0,s(85786));const e=this._sourceCount.value(),t=J.t(null,{plural:"Hide indicators legend",count:e},s(46960)),i=J.t(null,{plural:"Show indicators legend",count:e},s(36553))
|
||||
;return this._isStateOpen.value()?t:i}_updateTooltip(){if(null!==this._el){const e=this._tooltip();this._el.setAttribute("title",e),this._el.setAttribute("aria-label",e),this._el.dispatchEvent(new CustomEvent("common-tooltip-update"))}}_updateObjectTreeVisibility(e){(0,o.ensureNotNull)(this._el).classList.toggle(k.objectsTreeCanBeShown,e)}}!function(e){e[e.Medium=222]="Medium",e[e.Small=205]="Small",e[e.Tiny=133]="Tiny",e[e.HideUnimportantValues=272]="HideUnimportantValues",e[e.SeriesDirectionColumn=542]="SeriesDirectionColumn",e[e.HideExchangeIntevalProvider=442]="HideExchangeIntevalProvider",e[e.HideIntervalMultiChart=192]="HideIntervalMultiChart"}(te||(te={}));const ne=c.enabled("object_tree_legend_mode"),re=[27,9,37,39,38,40];class de{constructor(e,t){this._mode=4,this._renderToggler=null,this._mainDataSourceRenderer=null,this._dataSourceRenderers=[],this._parentEl=document.createElement("div"),this._mainDataSourceEl=null,this._dataSourcesEl=null,this._dataSourcesAdditionalWrapperEl=null,this._collapsedDataSourcesWrapperEl=null,this._collapsedDataSourcesEl=null,this._outsideEventForCollapsedTooltip=null,this._onKeyboardNavigationActivationBound=this._onKeyboardNavigationActivation.bind(this),this._onIsDataSourcesCollapsedBound=this._onIsDataSourcesCollapsed.bind(this),this._focusEventAbortController=null,this._toggleHiddenActionsTimoutID=null,this._toggleHiddenActions=e=>{this._toggleHiddenActionsTimoutID&&(clearTimeout(this._toggleHiddenActionsTimoutID),this._toggleHiddenActionsTimoutID=null),e?this._parentEl.classList.toggle(k.legend_withHiddenActions,e):this._toggleHiddenActionsTimoutID=setTimeout((()=>this._parentEl.classList.toggle(k.legend_withHiddenActions,e)),100)},this._options=e,this._togglerOptions=t,this._isStudiesLegendHidden=e.isStudiesLegendHidden.spawn(),this._isStudiesLegendHidden.subscribe(this._updateLegendVisibility.bind(this)),this._isAllLegendHidden=e.isAllLegendHidden.spawn(),this._isAllLegendHidden.subscribe(this._updateLegendVisibility.bind(this)),this._updateLegendVisibility(),this._hideAllExceptFirstLine=e.hideAllExceptFirstLine.spawn(),this._hideAllExceptFirstLine.subscribe(this._updateAllHiddenExeptFirstLine.bind(this)),this._themedColor=e.themedColor.spawn(),this._themedColor.subscribe(this._setCustomBg.bind(this)),this._showBackground=e.showBackground.spawn(),this._showBackground.subscribe(this._setCustomBg.bind(this)),this._backgroundTransparency=e.backgroundTransparency.spawn(),this._backgroundTransparency.subscribe(this._setCustomBg.bind(this)),this._collapsedDataSourcesCountSpawn=e.collapsedDataSourcesCount.spawn(),this._collapsedDataSourcesCountSpawn.subscribe(this._updateCollapsedSourcesCount.bind(this)),this._collapsedDataSourcesStatusWidgetElement=e.combinedStatusWidget.getElement(),this._showCollapsedDataSourcesTooltipHandler=this._showCollapsedDataSourcesTooltip.bind(this),this._parentEl.classList.add(k.legend),this._parentEl.classList.toggle(k.noWrap,!b.trackingModeIsAvailable),this._parentEl.classList.toggle(k.noActions,!this._options.withActions),
|
||||
this._parentEl.classList.toggle(k.touchMode,b.trackingModeIsAvailable),this._parentEl.classList.toggle(k.wrappable,!this._hideAllExceptFirstLine.value()),this._parentEl.dataset.name="legend",this._parentEl.setAttribute("data-tooltip-show-on-focus","true"),this._parentEl.style.setProperty("--legend-source-item-button-width",`${y}px`);const s=t=>{t.preventDefault(),e.showLegendWidgetContextMenu(t)};this._mouseEventHandler=new S.MouseEventHandler(this._parentEl,{contextMenuEvent:s,touchContextMenuEvent:s}),window.addEventListener("keyboard-navigation-activation",this._onKeyboardNavigationActivationBound),this._parentEl.addEventListener("keydown",this._handleKeyDown.bind(this)),this._options.onLayoutChanged.subscribe(this,this._onLayoutChanged)}destroy(){this._focusEventAbortController?.abort();const e=document.activeElement;let t=-1;if(de._wasKeyboardNavigationActivated&&e instanceof HTMLButtonElement){null!==this._getRowRendererByChild(e)&&(t=(0,g.queryTabbableElements)(document.body).indexOf(e))}if(this._isStudiesLegendHidden.destroy(),this._isAllLegendHidden.destroy(),this._hideAllExceptFirstLine.destroy(),this._themedColor.destroy(),this._showBackground.destroy(),this._backgroundTransparency.destroy(),this._collapsedDataSourcesCountSpawn.destroy(),b.trackingModeIsAvailable&&null!==this._collapsedDataSourcesWrapperEl&&this._collapsedDataSourcesWrapperEl.removeEventListener("touchend",this._showCollapsedDataSourcesTooltipHandler),this._outsideEventForCollapsedTooltip&&this._outsideEventForCollapsedTooltip(),null!==this._dataSourcesAdditionalWrapperEl&&(this._dataSourcesAdditionalWrapperEl.innerHTML="",this._dataSourcesAdditionalWrapperEl=null),null!==this._dataSourcesEl&&(this._dataSourcesEl.innerHTML="",this._dataSourcesEl=null),this._togglerOptions.isDataSourcesCollapsed.unsubscribe(this._onIsDataSourcesCollapsedBound),null!==this._renderToggler&&(this._renderToggler.destroy(),this._renderToggler=null),null!==this._mainDataSourceRenderer&&(this._mainDataSourceRenderer.destroy(),this._mainDataSourceRenderer=null),0!==this._dataSourceRenderers.length){for(const e of this._dataSourceRenderers)e.destroy();this._dataSourceRenderers=[]}if(this._mouseEventHandler.destroy(),this._parentEl.innerHTML="",delete this._parentEl,window.removeEventListener("keyboard-navigation-activation",this._onKeyboardNavigationActivationBound),-1!==t){let e;window.dispatchEvent(new CustomEvent("keyboard-navigation-activation",{bubbles:!0}));const s=(0,g.queryTabbableElements)(document.body);e=t===s.length?s[0]:s[t],e&&e.focus()}}addCustomWidget(e,t){if(0===t.block){this._renderMainDataSourceEl();const s=(0,o.ensureNotNull)(this._mainDataSourceEl);1===t.position&&e.renderTo(s,s.firstChild),0===t.position&&e.renderTo(s)}if(1===t.block){this._renderDataSourcesEl();const s=(0,o.ensureNotNull)(this._dataSourcesAdditionalWrapperEl);1===t.position&&e.renderTo(s,s.firstChild),0===t.position&&e.renderTo(s)}}firstTitle(){return this._parentEl.firstElementChild}getElement(){return this._parentEl}updateMode(e){
|
||||
const t=ne&&e<133?1:e<205?2:e<222?3:4,s=e<192?1:e<442?2:3;this._mode=t,null!==this._mainDataSourceRenderer&&this._mainDataSourceRenderer.updateMode(t,s);for(const e of this._dataSourceRenderers)e.updateMode(t,s);this._parentEl.classList.toggle(k.medium,3===t),this._parentEl.classList.toggle(k.minimized,2===t),this._parentEl.classList.toggle(k.micro,1===t),null!==this._renderToggler&&this._renderToggler.setMode(1===t);const i=!this._hideAllExceptFirstLine.value()&&(b.trackingModeIsAvailable||e<542);this._parentEl.classList.toggle(k.directionColumn,i),this._parentEl.classList.toggle(k.hideUniportantValueItems,!_.CheckMobile.any()&&e<=272)}getMainSourceHeight(){return null===this._mainDataSourceRenderer?0:this._mainDataSourceRenderer.getHeight()}getDataSourceHeight(){return 0===this._dataSourceRenderers.length?0:this._dataSourceRenderers[0].getHeight()}_renderMainDataSourceEl(){null===this._mainDataSourceEl&&(this._mainDataSourceEl=document.createElement("div"),this._mainDataSourceEl.classList.add(k.legendMainSourceWrapper),this._parentEl.insertBefore(this._mainDataSourceEl,this._dataSourcesEl))}_renderDataSourcesEl(){null===this._dataSourcesEl&&(this._dataSourcesEl=document.createElement("div"),this._dataSourcesEl.classList.add(k.sourcesWrapper),this._renderToggle(this._dataSourcesEl),this._dataSourcesAdditionalWrapperEl=document.createElement("div"),this._dataSourcesAdditionalWrapperEl.classList.add(k.sources),this._dataSourcesEl.appendChild(this._dataSourcesAdditionalWrapperEl),this._renderCollapsedCounter(this._dataSourcesAdditionalWrapperEl),this._parentEl.appendChild(this._dataSourcesEl))}_renderToggle(e){this._options.showToggleButton&&(this._renderToggler=new ae(e,this._options.themedColor,this._togglerOptions))}_onIsDataSourcesCollapsed(e){if(e){const e=this._getAllAccessibleButtons();if(0===e.filter((e=>e.tabIndex>=0)).length){const t=this._getRowRendererByChild(e[0]);t&&this._makeRowElementTheMainOne(e[0],t)}return}if(0!==(this._mainDataSourceRenderer?.accessibleButtons()||[]).filter((e=>e.tabIndex>=0)).length)return;const t=[];this._dataSourceRenderers.forEach((e=>t.push(...e.accessibleButtons())));const s=t.filter((e=>e.tabIndex>=0));if(0!==s.length){this._focusEventAbortController&&this._focusEventAbortController.abort(),s.forEach((e=>(0,m.becomeSecondaryElement)(e)));let e=null,t=null;if(this._mainDataSourceRenderer){const s=this._mainDataSourceRenderer.accessibleButtons();s.length>0&&(e=s[0],t=this._mainDataSourceRenderer)}null===e&&this._renderToggler&&(e=this._renderToggler.accessibleButtons()[0],t=this._renderToggler),e&&t&&this._makeRowElementTheMainOne(e,t)}}_renderCollapsedCounter(e){this._collapsedDataSourcesWrapperEl=document.createElement("div"),this._collapsedDataSourcesWrapperEl.className=`${k.item} ${k.last}`,this._collapsedDataSourcesEl=document.createElement("span"),this._collapsedDataSourcesEl.className=`${k.text} apply-common-tooltip`,this._collapsedDataSourcesWrapperEl.append(this._collapsedDataSourcesEl);const t=document.createElement("div");t.classList.add(k.statusesWrapper),
|
||||
this._collapsedDataSourcesStatusWidgetElement.classList.add(k.statusesWrapper__statuses),t.appendChild(this._collapsedDataSourcesStatusWidgetElement),this._collapsedDataSourcesWrapperEl.appendChild(t),e.append(this._collapsedDataSourcesWrapperEl),b.trackingModeIsAvailable&&this._collapsedDataSourcesWrapperEl.addEventListener("touchend",this._showCollapsedDataSourcesTooltipHandler),this._updateCollapsedSourcesCount(this._collapsedDataSourcesCountSpawn.value())}_showCollapsedDataSourcesTooltip(){(0,v.showOnElement)(this._collapsedDataSourcesEl,{text:this._options.collapsedDataSourcesTitle.value()}),this._addOutsideEventForHideTooltip()}_addOutsideEventForHideTooltip(){null!==this._outsideEventForCollapsedTooltip&&this._outsideEventForCollapsedTooltip(),this._outsideEventForCollapsedTooltip=(0,h.addOutsideEventListener)(new CustomEvent("timestamp").timeStamp,this._collapsedDataSourcesWrapperEl,(()=>{null!==this._outsideEventForCollapsedTooltip&&this._outsideEventForCollapsedTooltip(),(0,v.hide)()}),window.document,{touchEnd:!0})}_updateCollapsedSourcesCount(e){if(null===this._collapsedDataSourcesWrapperEl||null===this._collapsedDataSourcesEl)return;const t=0===e;this._collapsedDataSourcesWrapperEl.classList.toggle(L.blockHidden,t),t||(p(this._collapsedDataSourcesEl,`+${e}`),this._collapsedDataSourcesEl.setAttribute("title",this._options.collapsedDataSourcesTitle.value()))}_updateLegendVisibility(){let e;const t=de._wasKeyboardNavigationActivated&&(this._isAllLegendHidden.value()||this._isStudiesLegendHidden.value());if(t){e=this._getAllAccessibleButtons().filter((e=>e.tabIndex>=0))[0]}if(this._parentEl.classList.toggle(L.blockHidden,this._isAllLegendHidden.value()),null!==this._dataSourcesEl&&this._dataSourcesEl.classList.toggle(L.blockHidden,this._isStudiesLegendHidden.value()),t){const t=this._getAllAccessibleButtons();if(e&&t.includes(e))return;if(e&&(0,m.becomeSecondaryElement)(e),0!==t.length){const e=this._getRowRendererByChild(t[0]);e&&this._makeRowElementTheMainOne(t[0],e)}}}_updateAllHiddenExeptFirstLine(){this._parentEl.classList.toggle(k.wrappable,!this._hideAllExceptFirstLine.value())}_setCustomBg(){const e=this._showBackground.value(),t=this._themedColor.value(),s=this._backgroundTransparency.value();let i="";if(e){const[e,l,o]=(0,d.parseRgb)(t);i=(0,d.rgbaToString)([e,l,o,(0,d.normalizeAlphaComponent)(1-s/100)])}this._parentEl.style.color=i}_onLayoutChanged(e){const{newMainSource:t,removedDataSources:s,addedDataSources:i,movedDataSources:l}=e,o=document.activeElement;let a=-1,n=-1;const r=null===this._mainDataSourceRenderer&&0===this._dataSourceRenderers.length;if(de._wasKeyboardNavigationActivated&&o instanceof HTMLButtonElement){const e=this._getRowRenderers(),l=e.find((e=>e.accessibleButtons().includes(o)));if(void 0!==l){const r=l===this._mainDataSourceRenderer&&null===t,d=l instanceof K&&s.includes(this._dataSourceRenderers.indexOf(l));if(r||d){a=e.indexOf(l);const r=(0,g.queryTabbableElements)(document.body).indexOf(o)
|
||||
;n=0!==i.length||(void 0!==t||null!==this._mainDataSourceRenderer)&&null!==t||s.length!==this._dataSourceRenderers.length&&0!==this._dataSourceRenderers.length?r+1:r}}}void 0!==t&&(null!==t?this._addMainDataSource(t.model,t.statusWidget):(this._mainDataSourceRenderer?.destroy(),this._mainDataSourceRenderer=null));const d=[];if(l.forEach((e=>{d.push({renderer:this._dataSourceRenderers[e.oldIndex],newIndex:e.newIndex})})),d.sort(((e,t)=>e.newIndex-t.newIndex)),s.forEach((e=>{this._dataSourceRenderers.splice(e,1)[0].destroy()})),0!==i.length&&(this._renderDataSourcesEl(),i.forEach((e=>{this._addDataSource(e.model,e.statusWidget,e.index)}))),0!==d.length&&(this._renderDataSourcesEl(),d.forEach((e=>{this._moveDataSource(e.renderer,e.newIndex)}))),de._wasKeyboardNavigationActivated&&r&&(null!==this._mainDataSourceRenderer||this._dataSourceRenderers.length)&&window.dispatchEvent(new CustomEvent("keyboard-navigation-activation",{bubbles:!0})),-1!==a){let e,t;const s=this._getRowRenderers();for(;a<s.length;){const i=s[a],l=i.accessibleButtons();if(l.length>0){e=l[0],t=i;break}a++}if(e&&t)this._changeFocusElement(e,t);else if(-1!==n){window.dispatchEvent(new CustomEvent("keyboard-navigation-activation",{bubbles:!0}));const t=(0,g.queryTabbableElements)(document.body);e=n===t.length?t[0]:t[n],e&&(o&&(0,m.becomeSecondaryElement)(o),e.focus())}}}_addMainDataSource(e,t){this._renderMainDataSourceEl(),this._mainDataSourceRenderer=new q(e,(0,o.ensureNotNull)(this._mainDataSourceEl),{withActions:this._options.withActions,customTextColor:this._options.customTextColor,statusWidgetEl:t.getElement(),hideInvisibleHover:t.dataSourceErrorStatusShown.spawn(),hideValues:(0,w.combine)(((e,t)=>e||t),t.dataSourceErrorStatusShown.weakReference(),t.isSymbolInvalidStatusShown.weakReference()),isMultipleLayout:this._options.isMultipleLayout,toggleHiddenActions:this._toggleHiddenActions}),this._updateLegendVisibility()}_addDataSource(e,t,s){const i=(0,o.ensureNotNull)(this._dataSourcesAdditionalWrapperEl),l=new K(e,i,{withActions:this._options.withActions,customTextColor:this._options.customTextColor,statusWidgetEl:t.getElement(),hideInvisibleHover:(0,w.combine)(((e,t)=>e||t),t.dataSourceErrorStatusShown.weakReference(),t.dataUpdatedModeShown.weakReference()),hideValues:(0,w.combine)(((e,t)=>e||t),t.dataSourceErrorStatusShown.weakReference(),t.isSymbolInvalidStatusShown.weakReference()),isMultipleLayout:this._options.isMultipleLayout,toggleHiddenActions:this._toggleHiddenActions}),a=(0,o.ensureNotNull)(l.getElement());if(null!==a){let e=this._dataSourceRenderers[s];void 0!==e?i.insertBefore(a,e.getElement()):(e=this._dataSourceRenderers[s-1],void 0!==e&&i.insertBefore(a,(0,o.ensureNotNull)(e.getElement()).nextSibling))}this._dataSourceRenderers.splice(s,0,l),this._updateLegendVisibility()}_moveDataSource(e,t){const s=this._dataSourceRenderers.indexOf(e);if(-1===s||t===s)return;const i=(0,o.ensureNotNull)(this._dataSourcesAdditionalWrapperEl),l=(0,o.ensureNotNull)(e.getElement());let a=this._dataSourceRenderers[t]
|
||||
;void 0!==a?i.insertBefore(l,a.getElement()):(a=this._dataSourceRenderers[t-1],void 0!==a&&i.insertBefore(l,(0,o.ensureNotNull)(a.getElement()).nextSibling)),this._dataSourceRenderers.splice(s,1),this._dataSourceRenderers.splice(t,0,e)}_onKeyboardNavigationActivation(){de._wasKeyboardNavigationActivated=!0,this._togglerOptions.isDataSourcesCollapsed.unsubscribe(this._onIsDataSourcesCollapsedBound),this._togglerOptions.isDataSourcesCollapsed.subscribe(this._onIsDataSourcesCollapsedBound);const e=this._getAllAccessibleButtons(),t=e.filter((e=>e.tabIndex>=0));if(0===t.length){const[t]=e.filter((e=>e.hasAttribute("tabIndex")));if(void 0===t)return;const s=this._getRowRendererByChild(t);if(null===s)return;this._makeRowElementTheMainOne(t,s)}if(t.length>1){const[,...e]=t;for(const t of e)(0,m.becomeSecondaryElement)(t)}}_handleKeyDown(e){if(e.defaultPrevented)return;const t=(0,u.hashFromEvent)(e);if(!re.includes(t))return;const s=document.activeElement;if(!(s instanceof HTMLButtonElement))return;const i=this._getRowRendererByChild(s);if(null===i)return;if(27===t)return void s.blur();const l=i.accessibleButtons(),o=l.indexOf(s);if(0===l.length||-1===o)return;const a=t=>{e.preventDefault();const s=this._getRowRenderers(),l=s.indexOf(i);let o,a,n="blockNext"===t?l+1:l-1;for(;n>=0&&n<s.length;){const e=s[n],i=e.accessibleButtons();if(0!==i.length){o=e,a=i;break}n="blockNext"===t?n+1:n-1}o&&a&&this._changeFocusElement(a[0],o)},n=(0,g.mapKeyCodeToDirection)(t);switch(n){case"inlinePrev":e.preventDefault(),this._changeFocusElement(0!==o?l[o-1]:l[l.length-1],i);break;case"inlineNext":e.preventDefault(),this._changeFocusElement(o!==l.length-1?l[o+1]:l[0],i);break;case"blockPrev":case"blockNext":a(n)}}_subscribeElementToFocusEvents(e,t){this._focusEventAbortController=new AbortController,e.addEventListener("focusin",(()=>{this._focusEventAbortController=new AbortController,e.addEventListener("focusout",(s=>{const i=s.relatedTarget;null!==i&&i instanceof HTMLButtonElement&&t.accessibleButtons().includes(i)||(this._subscribeElementToFocusEvents(e,t),t instanceof ae||t.hideActions())}),{once:!0,signal:this._focusEventAbortController.signal}),this._options.onLegendRowFocused(),t instanceof ae||t.showActions()}),{once:!0,signal:this._focusEventAbortController.signal})}_makeRowElementTheMainOne(e,t){this._subscribeElementToFocusEvents(e,t),(0,m.becomeMainElement)(e)}_changeFocusElement(e,t){document.activeElement&&(0,m.becomeSecondaryElement)(document.activeElement),this._makeRowElementTheMainOne(e,t),e.focus()}_getRowRenderers(){let e=[];return this._mainDataSourceRenderer&&e.push(this._mainDataSourceRenderer),this._dataSourcesEl&&!this._dataSourcesEl.classList.contains(L.blockHidden)&&(this._togglerOptions.isDataSourcesCollapsed.value()&&1!==this._mode&&(e=e.concat(this._dataSourceRenderers)),this._renderToggler&&0!==this._dataSourceRenderers.length&&e.push(this._renderToggler)),e}_getAllAccessibleButtons(){const e=[];return this._getRowRenderers().forEach((t=>{e.push(...t.accessibleButtons())})),e}_getRowRendererByChild(e){
|
||||
@@ -28,15 +28,15 @@ return this._getRowRenderers().find((t=>t.accessibleButtons().includes(e)))??nul
|
||||
...this._contextMenuOptions,isKeyboardEvent:!Me(e)&&(0,ge.isKeyboardClick)(e)},{origin:"LegendPropertiesContextMenu"}))}setSourceSelected(){this._model.selectionMacro((e=>{e.clearSelection(),e.addSourceToSelection(this._source)}))}_moreActionHandler(e){e.preventDefault(),null!==this._moreActionCM&&this._moreActionCM.isShown()?this._moreActionCM=null:(this.setSourceSelected(),this.onShowMoreActions(e).then((e=>{this._moreActionCM=e})))}_updateStates(){this._disabled.setValue(this._getDisabledState()),this._disabledOnInterval.setValue(this._getDisabledOnIntervalState()),this._selected.setValue(this._model.selection().isSelected(this._source)),this._isEditable.setValue(this._getIsEditable()),this._updateLoadingStatus()}_hasValues(){return this._values.value().length>0}_getEyeTitle(){return this._disabled.value()?Ee:Ve}_getIsEditable(){return this._source.userEditEnabled()}_getDisabledState(){return!this._source.properties().visible.value()}_updateRowVisibilities(){this._isRowHidden.setValue(this._getRowHiddenValue())}_getRowHiddenValue(){return this._options.readOnlyMode&&this._disabled.value()||this._isTitleHidden.value()&&(this._isValuesHidden.value()||this._disabled.value())}_calcNewPosition(e){let t={};if(Me(e)&&e.touches.length>0)t={clientX:e.touches[0].clientX,clientY:e.touches[0].clientY};else if(null!==e.target){const s=e.target.getBoundingClientRect();t={clientX:(0,we.isRtl)()?s.right:s.left,clientY:s.top+s.height+3}}else{const s=e;t={clientX:s.clientX,clientY:s.clientY}}return t}}var We=s(618),Ae=s(36279),xe=s(12184),ke=s(5201);const Te=c.enabled("show_symbol_logos")&&c.enabled("show_symbol_logo_in_legend"),He=new ke.CircularCacheBuffer(100);class Be{constructor(e,t){this._symbolLogoUrls=new n.WatchedValue([]),this._quoteDataForLogos=null,this._logoDataUpdated=()=>{const e=this.symbol(),t=this._logoData.value();t&&e&&He.set(e,t);const s=He.get(e);this._quoteDataForLogos=(0,r.merge)(s??{},this._logoData.value()??{}),this._symbolLogoUrls.setValue((0,We.removeUsdFromCryptoPairLogos)((0,We.resolveLogoUrls)(this._quoteDataForLogos,Ae.LogoSize.Medium)))},this._logoModel=e,this._isLogoVisible=(0,xe.createWVFromGetterAndSubscription)((()=>t.showLogo.value()),t.showLogo),this._logoData=this._logoModel.logoData().spawn(),this._logoData.subscribe(this._logoDataUpdated,{callWithLast:!0})}destroy(){this._isLogoVisible.destroy(),this._logoModel.destroy()}isSymbolLogoVisible(){return this._isLogoVisible}symbolLogoUrls(){return this._symbolLogoUrls}symbol(){return this._logoModel.symbol()}update(){this._logoModel.update()}}function Ie(e,t){return Te?new Be(e,t):null}var De=s(26023),Pe=s(9343);const ze=(0,Pe.getLogger)("Chart.LegendWidget");function Ne(e){const t={};for(const s of["logoid","currency-logoid","base-currency-logoid"])if(s in e){const i=s;t[i]=e[i]}return t}class Re{constructor(e){this._logoData=new n.WatchedValue(null),this._prevSymbol="",this._source=e,this._source.symbolResolved().subscribe(this,this._onSourceSymbolResolved),this.update()}destroy(){this._source.symbolResolved().unsubscribeAll(this)}symbol(){
|
||||
return this._source.symbol()}logoData(){return this._logoData}update(){const e=this.symbol();this._prevSymbol!==e&&(this._prevSymbol=e,this._onSourceSymbolResolved())}_onQuoteSymbolDataUpdated(e,t){const s=t.values;!this._source.symbolSameAsCurrent(e.values.pro_name)||void 0===s.logoid&&void 0===s["currency-logoid"]&&void 0===s["base-currency-logoid"]||this._logoData.setValue(Ne(s))}async _onSourceSymbolChange(){const e=this.symbol();let t=null;try{this._logoData.setValue(null),t=await this._source.quotesProvider().quotesSnapshot(e)}catch(e){ze.logError(`Quote snapshot error: ${e}`)}finally{this.symbol()===e&&(null===t?this._logoData.setValue(null,!0):this._logoData.setValue(Ne(t)))}}_onSourceSymbolResolved(){{const e=this._source.symbolInfo(),t=e?.logo_urls||[];if(1===t.length)return void this._logoData.setValue({logoid:t[0]});if(2===t.length)return void this._logoData.setValue({"base-currency-logoid":t[0],"currency-logoid":t[1]});this._logoData.setValue(null,!0)}}}var Oe=s(54336),Fe=s(41674),Ue=s(87258),Ge=s(45534);const Ze=J.t(null,void 0,s(37117)),je=J.t(null,void 0,s(44454)),$e=J.t(null,void 0,s(13865)),Qe=J.t(null,void 0,s(63245)),Ke=J.t(null,void 0,s(2569)),qe=c.enabled("legend_inplace_edit"),Je=c.enabled("show_hide_button_in_legend"),Xe=c.enabled("hide_resolution_in_legend");class Ye extends Le{constructor(e,t,s,i,l){super(e,t,s,i,l),this._titles={title:new n.WatchedValue(""),description:new n.WatchedValue(""),interval:new n.WatchedValue(""),provider:new n.WatchedValue(""),exchange:new n.WatchedValue(""),chartStyle:new n.WatchedValue(""),priceSource:new n.WatchedValue("")},this._titleActions={title:void 0,description:void 0,interval:void 0,provider:void 0,exchange:void 0,chartStyle:void 0,priceSource:void 0},this._symbolMarker=null,this._symbolMarkerIcon=null,this._flagged=new n.WatchedValue(null),this._symbolAction=null,this._symbolForMarker=null,this._isOneButtonCanBeStick=!1,this._layoutChartSyncLegendRenderer=null,this._isChartLinked=new n.WatchedValue(!1).readonly().spawn(),this._initializeTitleActions(),this._createActions(),this._updateSymbolMarker();const o=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();this._symbolLogoViewModel.setValue(Ie(new Re(t),o)),o.showSeriesTitle.subscribe(this,(()=>{this._isTitleHidden.setValue(this._getTitleHiddenValue())})),this._isPriceSourceHidden=(0,ce.createWVFromGetterAndSubscription)((()=>!o.showPriceSource.value()),o.showPriceSource),this._valuesVisibleProperty=(0,ce.combineProperty)(((e,t,s,i)=>`${e}:${t}:${s}:${i}`),o.showSeriesOHLC.weakReference(),o.showBarChange.weakReference(),o.showVolume.weakReference(),o.showLastDayChange.weakReference()),this._valuesVisibleProperty.subscribe(null,(()=>{this.update(),this._isValuesHidden.setValue(this._getValuesHiddenValue())})),this.update(),this._source.statusWV().subscribe(this._updateLoadingStatus)}destroy(){super.destroy(),this._model.model().properties().childs().paneProperties.childs().legendProperties.childs().showSeriesTitle.unsubscribeAll(this),
|
||||
this._source.statusWV().unsubscribe(this._updateLoadingStatus),this._valuesVisibleProperty.destroy(),this._isPriceSourceHidden.destroy(),this._symbolMarker?.destroy()}flagged(){return this._flagged}linked(){return this._isChartLinked}onShowSettings(){this._source.userEditEnabled()&&this._callbacks.showGeneralChartProperties(De.TabNames.symbol)}isOneButtonCanBeStick(){return this._isOneButtonCanBeStick}_updateTitles(){const e=(0,o.ensureNotNull)(this._source.statusView()).getSplitTitle();this._titles.title.setValue((0,he.clean)(e.title,!0)),this._titles.description.setValue((0,he.clean)(e.description,!0)),Xe||this._titles.interval.setValue((0,he.clean)(e.interval,!0)),this._titles.provider.setValue((0,he.clean)(e.provider,!0)),this._titles.exchange.setValue((0,he.clean)(e.exchange,!0)),this._titles.chartStyle.setValue((0,he.clean)(e.chartStyle,!0)),this._titles.priceSource.setValue((0,he.clean)(this._isPriceSourceHidden.value()?"":e.priceSource,!0))}_updateValues(){const e=this._source.legendView(),t=this._values.value(),s=e.marketTitle(),i=e.marketTitle().length>0,l=e.items();if(0===t.length||t.length!==l.length+1){const e={value:new n.WatchedValue(""),color:new n.WatchedValue(""),visible:new n.WatchedValue(i),title:new n.WatchedValue(s),unimportant:new n.WatchedValue(!1)},t=l.map((e=>({value:new n.WatchedValue(e.value()),color:new n.WatchedValue(ye(e.color())),visible:new n.WatchedValue(e.visible()),title:new n.WatchedValue(e.title()),unimportant:new n.WatchedValue(e.unimportant())})));this._values.setValue([e].concat(t))}else{t[0].title.setValue(s),t[0].visible.setValue(i);for(let e=0;e<l.length;e++){const s=l[e];t[e+1].value.setValue(s.value()),t[e+1].color.setValue(ye(s.color())),t[e+1].visible.setValue(s.visible()),t[e+1].title.setValue(s.title())}}}_updateStates(){super._updateStates(),this._updateSymbolMarker()}_getDisabledOnIntervalState(){return!1}_getTitleHiddenValue(){return!this._model.model().properties().childs().paneProperties.childs().legendProperties.childs().showSeriesTitle.value()}_getValuesHiddenValue(){return!this._hasValues()||!this._valuesVisibleProperty.value().split(":").some((e=>"true"===e))}_initializeTitleActions(){if(!qe)return;const e=async()=>{const e=this._model.mainSeries(),t=e.symbol(),s=e.properties().childs().shortName.value(),i="option"===e.symbolInfo()?.type,l=e.symbolInfo()?.pro_name;let o=e.isSpread()?t:s||t||"";if(c.enabled("symbol_search_option_chain_selector")&&i&&l){const e=await resolveUnderlyingSymbol(l);e&&(o={type:"option",value:l,underlying:e})}(0,me.showDialog)({defaultValue:o,enableOptionsChain:c.enabled("symbol_search_option_chain_selector")})};c.enabled("disable_legend_inplace_symbol_change")||(this._titleActions.title={onClick:e,tooltip:Qe},this._titleActions.description={onClick:e,tooltip:Qe}),this._titleActions.interval={onClick:()=>{(0,pe.showChangeIntervalDialogAsync)({initVal:this._model.mainSeries().interval(),selectOnInit:!0})},tooltip:Ke}}_createActions(){if(Je){const e=(0,_e.convertPropertyToWatchedValue)((0,
|
||||
ce.combineProperty)((e=>!e),this._source.properties().childs().visible.weakReference())),t={icon:new Map([["large",Fe],["small",Oe]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onToggleDisabled.bind(this)),visible:e,className:k.eye,title:new n.WatchedValue(this._getEyeTitle()),dataset:{name:"legend-show-hide-action"}};this._actions.push(t),this._disabled.subscribe((()=>{t.title?.setValue(this._getEyeTitle())}))}this._actions.push({icon:new Map([["large",Ge],["small",Ue]]),action:this._moreActionHandler.bind(this),visible:new n.WatchedValue(!0),title:new n.WatchedValue(Ze),dataset:{name:"legend-more-action"}})}_getMarkerTitle(){return null!==this._symbolMarker?this._symbolMarker.isMarked()?$e:je:""}_symbolActionHandler(e){(0,f.preventDefault)(e),null!==this._symbolMarker&&(this._updateSymbolMarker(),e instanceof KeyboardEvent&&this._symbolMarker.toggle(e),Y("Change flag state"))}_updateSymbolMarker(){this._isOneButtonCanBeStick=!0}}var et=s(79036),tt=s(48341),st=s(28388),it=s(60074),lt=s(50340),ot=s(94664),at=s(83637),nt=s(36791),rt=s(34882),dt=s(37073),ut=s(30556),ht=s(91104);(0,Pe.getLogger)("Chart.LegendWidget");const ct=J.t(null,void 0,s(32514)),_t=J.t(null,void 0,s(87142)),pt=J.t(null,void 0,s(67410)),mt=J.t(null,void 0,s(37117)),gt=(J.t(null,void 0,s(57335)),J.t(null,void 0,s(43206)),J.t(null,void 0,s(74759))),bt=J.t(null,void 0,s(63245)),vt=(c.enabled("study_buttons_in_legend"),c.enabled("show_hide_button_in_legend")),wt=c.enabled("property_pages"),St=c.enabled("format_button_in_legend"),yt=c.enabled("delete_button_in_legend"),Mt=c.enabled("legend_inplace_edit");class ft extends Le{constructor(e,t,s,i,l){super(e,t,s,i,l),this._titles={title:new n.WatchedValue(""),args:new n.WatchedValue("")},this._titleActions={title:void 0,args:void 0},this._error=new n.WatchedValue(!1),this._isAbleShowSourceCode=new n.WatchedValue(!1),this._isAbleShowSourceCodeInner=new n.WatchedValue(!1).spawn(),this._pineAction=null,this._pineActionVisible=null,this._globalVisibility=new n.WatchedValue(!0),this._updateSymbolLogoModel(),this._initializeTitleActions(),this._createActions();const o=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs(),a=[o.showSeriesTitle,o.showStudyTitles];for(const e of a)e.subscribe(this,(()=>{this._isTitleHidden.setValue(this._getTitleHiddenValue())}));const r=[o.showSeriesOHLC,o.showBarChange,o.showStudyValues,o.showLastDayChange];for(const e of r)e.subscribe(this,(()=>{this._isValuesHidden.setValue(this._getValuesHiddenValue())}));this.update()}destroy(){super.destroy();const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();e.showSeriesTitle.unsubscribeAll(this),e.showStudyTitles.unsubscribeAll(this),e.showSeriesOHLC.unsubscribeAll(this),e.showBarChange.unsubscribeAll(this),e.showStudyValues.unsubscribeAll(this),e.showLastDayChange.unsubscribeAll(this),this._isAbleShowSourceCodeInner.destroy()}error(){return this._error.readonly()}isAbleShowSourceCode(){return this._isAbleShowSourceCode}onRemoveSource(){
|
||||
this._source.isUserDeletable()&&(this._source.hasChildren()?(0,tt.showDeleteStudyTreeConfirm)(this._model.removeSource.bind(this._model,this._source,!1)):this._model.removeSource(this._source,!1),Y("Remove sources"))}async onShowSourceCode(){0}setGlobalVisibility(e){this._globalVisibility.setValue(e)}globalVisibility(){return this._globalVisibility.readonly()}getFullTitle(){return[this._titles.title,this._titles.args].map((e=>e.value())).join(" ")}getSource(){return this._source}_updateTitles(){const e=(0,o.ensureNotNull)(this._source.statusView()).getSplitTitle();this._titles.title.setValue((0,he.clean)(e[0],!0));const t=Array.isArray(e[1])?e[1].join(" "):e[1]||"";this._titles.args.setValue((0,he.clean)(t,!0))}_updateValues(){const e=this._source.legendView();if(null===e)return;if(0===e.items().length)return;const t=this._values.value();if(0===t.length){const t=e.items().map((e=>({value:new n.WatchedValue(e.value()),color:new n.WatchedValue(ye(e.color())),visible:new n.WatchedValue(e.visible()),unimportant:new n.WatchedValue(e.unimportant()),title:new n.WatchedValue(e.title())})));this._values.setValue(t)}else{const s=e.items();for(let e=0;e<s.length;e++){const i=t[e],l=s[e];i.value.setValue(l.value()),i.color.setValue(ye(l.color())),i.visible.setValue(l.visible()),i.title.setValue(l.title())}}}_updateStates(){super._updateStates(),void 0!==this._error&&this._error.setValue(Boolean(this._source.isFailed()))}_getTitleHiddenValue(){const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();return this._isSymbolLikeStudy()?!e.showSeriesTitle.value():!e.showStudyTitles.value()}_getDisabledOnIntervalState(){return!(!(0,et.isStudy)(this._source)&&!(0,et.isStudyStub)(this._source))&&!this._source.isActualInterval()}_getValuesHiddenValue(){if(!this._hasValues())return!0;const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();return this._isSymbolLikeStudy()?!e.showSeriesOHLC.value()&&!e.showBarChange.value()&&!e.showLastDayChange.value():!e.showStudyValues.value()}_initializeTitleActions(){const e=this._source;if(!Mt||!(0,it.isSymbolSourceWithQuotesProvider)(e))return;this._titleActions.title={onClick:()=>{let t=null;const s=t=(0,lt.loadNewSymbolSearch)().then((async i=>{if(s!==t)return;const l=e.symbol(),o=(0,F.safeShortName)(l),a="spread"===e.symbolInfo()?.type,n="option"===e.symbolInfo()?.type,r=e.symbolInfo()?.pro_name;let d=a?l:o||l||"";if(c.enabled("symbol_search_option_chain_selector")&&n&&r){const e=await resolveUnderlyingSymbol(r);e&&(d={type:"option",value:r,underlying:e})}const u=(0,ot.getSymbolSearchCompleteOverrideFunction)();i.showSymbolSearchItemsDialog({onSearchComplete:t=>{u(t[0].symbol,t[0].result).then((t=>{this._model.setSymbol(e,t.symbol)}))},dialogTitle:bt,defaultValue:d,enableOptionsChain:c.enabled("symbol_search_option_chain_selector"),showSpreadActions:c.enabled("show_spread_operators")&&c.enabled("studies_symbol_search_spread_operators")})}))},tooltip:bt}}_isSymbolLikeStudy(){return(0,
|
||||
et.isCompareOrOverlayStudy)(this._source)}async _updateAbleShowSourceCode(){0}_updateVisibilityPineAction(e){null!==this._pineActionVisible&&(this._pineActionVisible.setValue(e),this._isAbleShowSourceCode.setValue(e))}_createActions(){if(!this._options.readOnlyMode){if(this._pineActionVisible=new n.WatchedValue(!1),this._pineAction={icon:new Map([["large",dt],["small",rt]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onShowSourceCode.bind(this)),disableAccessibility:!0,visible:this._pineActionVisible.readonly(),title:new n.WatchedValue(_t),dataset:{name:"legend-pine-action"}},vt){const e=new n.WatchedValue(!this._getDisabledOnIntervalState()),t={icon:new Map([["large",Fe],["small",Oe]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onToggleDisabled.bind(this)),visible:e.readonly(),className:k.eye,title:new n.WatchedValue(this._getEyeTitle()),dataset:{name:"legend-show-hide-action"}};this._actions.push(t),this._disabled.subscribe((()=>{t.title?.setValue(this._getEyeTitle())}));const s=new n.WatchedValue(this._getDisabledOnIntervalState()),i={icon:new Map([["large",Fe],["small",Oe]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onShowSettings.bind(this,De.TabNames.visibility)),visible:s.readonly(),className:k.intervalEye,title:new n.WatchedValue(gt),dataset:{name:"legend-interval-show-hide-action"}};this._actions.push(i),this._disabledOnInterval.subscribe((t=>{s.setValue(t),e.setValue(!t)}))}if(wt&&St&&(!(0,et.isStudy)(this._source)||new st.MetaInfoHelper(this._source.metaInfo()).hasUserEditableOptions())){const e=new n.WatchedValue(this._getIsEditable()),t={icon:new Map([["large",nt],["small",at]]),action:(0,f.wrapHandlerWithPreventEvent)((()=>this.onShowSettings())),visible:e.readonly(),title:new n.WatchedValue(ct),dataset:{name:"legend-settings-action"}};this._actions.push(t),this._isEditable.subscribe((t=>{e.setValue(t)}))}if(yt){const e=new n.WatchedValue(this._getIsEditable()),t={icon:new Map([["large",ht],["small",ut]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onRemoveSource.bind(this)),visible:e.readonly(),title:new n.WatchedValue(pt),dataset:{name:"legend-delete-action"}};this._actions.push(t),this._isEditable.subscribe((t=>{e.setValue(t)}))}this._actions.push({icon:new Map([["large",Ge],["small",Ue]]),action:this._moreActionHandler.bind(this),visible:this._isEditable.spawn(),title:new n.WatchedValue(mt),dataset:{name:"legend-more-action"}})}}_updateSymbolLogoModel(){if(this._symbolLogoViewModel.value()?.destroy(),(0,it.isSymbolSourceWithQuotesProvider)(this._source)){const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();this._symbolLogoViewModel.setValue(Ie(new Re(this._source),e))}else this._symbolLogoViewModel.setValue(null)}}var Ct=s(29023),Et=s(40443),Vt=s(68805),Lt=s(30141),Wt=s(34585),At=s(23486),xt=s(81199);function kt(e,t,s){e.setProperty(t,!t.value(),s)}
|
||||
ce.combineProperty)((e=>!e),this._source.properties().childs().visible.weakReference())),t={icon:new Map([["large",Fe],["small",Oe]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onToggleDisabled.bind(this)),visible:e,className:k.eye,title:new n.WatchedValue(this._getEyeTitle()),dataset:{name:"legend-show-hide-action"}};this._actions.push(t),this._disabled.subscribe((()=>{t.title?.setValue(this._getEyeTitle())}))}this._actions.push({icon:new Map([["large",Ge],["small",Ue]]),action:this._moreActionHandler.bind(this),visible:new n.WatchedValue(!0),title:new n.WatchedValue(Ze),dataset:{name:"legend-more-action"}})}_getMarkerTitle(){return null!==this._symbolMarker?this._symbolMarker.isMarked()?$e:je:""}_symbolActionHandler(e){(0,f.preventDefault)(e),null!==this._symbolMarker&&(this._updateSymbolMarker(),e instanceof KeyboardEvent&&this._symbolMarker.toggle(e),Y("Change flag state"))}_updateSymbolMarker(){this._isOneButtonCanBeStick=!0}}var et=s(79036),tt=s(48341),st=s(28388),it=s(60074),lt=s(50340),ot=s(94664),at=s(83637),nt=s(36791),rt=s(34882),dt=s(37073),ut=s(30556),ht=s(91104);(0,Pe.getLogger)("Chart.LegendWidget");const ct=J.t(null,void 0,s(32514)),_t=J.t(null,void 0,s(87142)),pt=J.t(null,void 0,s(67410)),mt=J.t(null,void 0,s(37117)),gt=(J.t(null,void 0,s(57335)),J.t(null,void 0,s(43206)),J.t(null,void 0,s(74759))),bt=J.t(null,void 0,s(63245)),vt=(c.enabled("study_buttons_in_legend"),c.enabled("show_hide_button_in_legend")),wt=c.enabled("property_pages"),St=c.enabled("format_button_in_legend"),yt=c.enabled("delete_button_in_legend"),Mt=c.enabled("legend_inplace_edit");class ft extends Le{constructor(e,t,s,i,l){super(e,t,s,i,l),this._titles={title:new n.WatchedValue(""),args:new n.WatchedValue("")},this._titleActions={title:void 0,args:void 0},this._error=new n.WatchedValue(!1),this._isAbleShowSourceCode=new n.WatchedValue(!1),this._isAbleShowSourceCodeInner=new n.WatchedValue(!1).spawn(),this._pineAction=null,this._pineActionVisible=null,this._globalVisibility=new n.WatchedValue(!0),this._updateSymbolLogoModel(),this._initializeTitleActions(),this._createActions();const o=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs(),a=[o.showSeriesTitle,o.showStudyTitles];for(const e of a)e.subscribe(this,(()=>{this._isTitleHidden.setValue(this._getTitleHiddenValue())}));const r=[o.showSeriesOHLC,o.showBarChange,o.showStudyValues,o.showLastDayChange,o.showSeriesLegendCloseOnMobile];for(const e of r)e.subscribe(this,(()=>{this._isValuesHidden.setValue(this._getValuesHiddenValue())}));this.update()}destroy(){super.destroy();const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();e.showSeriesTitle.unsubscribeAll(this),e.showStudyTitles.unsubscribeAll(this),e.showSeriesOHLC.unsubscribeAll(this),e.showBarChange.unsubscribeAll(this),e.showStudyValues.unsubscribeAll(this),e.showLastDayChange.unsubscribeAll(this),e.showSeriesLegendCloseOnMobile.unsubscribeAll(this),this._isAbleShowSourceCodeInner.destroy()}error(){return this._error.readonly()}
|
||||
isAbleShowSourceCode(){return this._isAbleShowSourceCode}onRemoveSource(){this._source.isUserDeletable()&&(this._source.hasChildren()?(0,tt.showDeleteStudyTreeConfirm)(this._model.removeSource.bind(this._model,this._source,!1)):this._model.removeSource(this._source,!1),Y("Remove sources"))}async onShowSourceCode(){0}setGlobalVisibility(e){this._globalVisibility.setValue(e)}globalVisibility(){return this._globalVisibility.readonly()}getFullTitle(){return[this._titles.title,this._titles.args].map((e=>e.value())).join(" ")}getSource(){return this._source}_updateTitles(){const e=(0,o.ensureNotNull)(this._source.statusView()).getSplitTitle();this._titles.title.setValue((0,he.clean)(e[0],!0));const t=Array.isArray(e[1])?e[1].join(" "):e[1]||"";this._titles.args.setValue((0,he.clean)(t,!0))}_updateValues(){const e=this._source.legendView();if(null===e)return;if(0===e.items().length)return;const t=this._values.value();if(0===t.length){const t=e.items().map((e=>({value:new n.WatchedValue(e.value()),color:new n.WatchedValue(ye(e.color())),visible:new n.WatchedValue(e.visible()),unimportant:new n.WatchedValue(e.unimportant()),title:new n.WatchedValue(e.title())})));this._values.setValue(t)}else{const s=e.items();for(let e=0;e<s.length;e++){const i=t[e],l=s[e];i.value.setValue(l.value()),i.color.setValue(ye(l.color())),i.visible.setValue(l.visible()),i.title.setValue(l.title())}}}_updateStates(){super._updateStates(),void 0!==this._error&&this._error.setValue(Boolean(this._source.isFailed()))}_getTitleHiddenValue(){const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();return this._isSymbolLikeStudy()?!e.showSeriesTitle.value():!e.showStudyTitles.value()}_getDisabledOnIntervalState(){return!(!(0,et.isStudy)(this._source)&&!(0,et.isStudyStub)(this._source))&&!this._source.isActualInterval()}_getValuesHiddenValue(){if(!this._hasValues())return!0;const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();return this._isSymbolLikeStudy()?!e.showSeriesOHLC.value()&&!e.showBarChange.value()&&!e.showLastDayChange.value():!e.showStudyValues.value()}_initializeTitleActions(){const e=this._source;if(!Mt||!(0,it.isSymbolSourceWithQuotesProvider)(e))return;this._titleActions.title={onClick:()=>{let t=null;const s=t=(0,lt.loadNewSymbolSearch)().then((async i=>{if(s!==t)return;const l=e.symbol(),o=(0,F.safeShortName)(l),a="spread"===e.symbolInfo()?.type,n="option"===e.symbolInfo()?.type,r=e.symbolInfo()?.pro_name;let d=a?l:o||l||"";if(c.enabled("symbol_search_option_chain_selector")&&n&&r){const e=await resolveUnderlyingSymbol(r);e&&(d={type:"option",value:r,underlying:e})}const u=(0,ot.getSymbolSearchCompleteOverrideFunction)();i.showSymbolSearchItemsDialog({onSearchComplete:t=>{u(t[0].symbol,t[0].result).then((t=>{this._model.setSymbol(e,t.symbol)}))},dialogTitle:bt,defaultValue:d,enableOptionsChain:c.enabled("symbol_search_option_chain_selector"),showSpreadActions:c.enabled("show_spread_operators")&&c.enabled("studies_symbol_search_spread_operators")})}))
|
||||
},tooltip:bt}}_isSymbolLikeStudy(){return(0,et.isCompareOrOverlayStudy)(this._source)}async _updateAbleShowSourceCode(){0}_updateVisibilityPineAction(e){null!==this._pineActionVisible&&(this._pineActionVisible.setValue(e),this._isAbleShowSourceCode.setValue(e))}_createActions(){if(!this._options.readOnlyMode){if(this._pineActionVisible=new n.WatchedValue(!1),this._pineAction={icon:new Map([["large",dt],["small",rt]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onShowSourceCode.bind(this)),disableAccessibility:!0,visible:this._pineActionVisible.readonly(),title:new n.WatchedValue(_t),dataset:{name:"legend-pine-action"}},vt){const e=new n.WatchedValue(!this._getDisabledOnIntervalState()),t={icon:new Map([["large",Fe],["small",Oe]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onToggleDisabled.bind(this)),visible:e.readonly(),className:k.eye,title:new n.WatchedValue(this._getEyeTitle()),dataset:{name:"legend-show-hide-action"}};this._actions.push(t),this._disabled.subscribe((()=>{t.title?.setValue(this._getEyeTitle())}));const s=new n.WatchedValue(this._getDisabledOnIntervalState()),i={icon:new Map([["large",Fe],["small",Oe]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onShowSettings.bind(this,De.TabNames.visibility)),visible:s.readonly(),className:k.intervalEye,title:new n.WatchedValue(gt),dataset:{name:"legend-interval-show-hide-action"}};this._actions.push(i),this._disabledOnInterval.subscribe((t=>{s.setValue(t),e.setValue(!t)}))}if(wt&&St&&(!(0,et.isStudy)(this._source)||new st.MetaInfoHelper(this._source.metaInfo()).hasUserEditableOptions())){const e=new n.WatchedValue(this._getIsEditable()),t={icon:new Map([["large",nt],["small",at]]),action:(0,f.wrapHandlerWithPreventEvent)((()=>this.onShowSettings())),visible:e.readonly(),title:new n.WatchedValue(ct),dataset:{name:"legend-settings-action"}};this._actions.push(t),this._isEditable.subscribe((t=>{e.setValue(t)}))}if(yt){const e=new n.WatchedValue(this._getIsEditable()),t={icon:new Map([["large",ht],["small",ut]]),action:(0,f.wrapHandlerWithPreventEvent)(this.onRemoveSource.bind(this)),visible:e.readonly(),title:new n.WatchedValue(pt),dataset:{name:"legend-delete-action"}};this._actions.push(t),this._isEditable.subscribe((t=>{e.setValue(t)}))}this._actions.push({icon:new Map([["large",Ge],["small",Ue]]),action:this._moreActionHandler.bind(this),visible:this._isEditable.spawn(),title:new n.WatchedValue(mt),dataset:{name:"legend-more-action"}})}}_updateSymbolLogoModel(){if(this._symbolLogoViewModel.value()?.destroy(),(0,it.isSymbolSourceWithQuotesProvider)(this._source)){const e=this._model.model().properties().childs().paneProperties.childs().legendProperties.childs();this._symbolLogoViewModel.setValue(Ie(new Re(this._source),e))}else this._symbolLogoViewModel.setValue(null)}}var Ct=s(29023),Et=s(40443),Vt=s(68805),Lt=s(30141),Wt=s(34585),At=s(23486),xt=s(81199);function kt(e,t,s){e.setProperty(t,!t.value(),s)}
|
||||
const Tt=new ve.TranslatedString("change symbol description visibility",J.t(null,void 0,s(88167))),Ht=new ve.TranslatedString("change open market status visibility",J.t(null,void 0,s(96227))),Bt=new ve.TranslatedString("change chart values visibility",J.t(null,void 0,s(79637))),It=new ve.TranslatedString("change last day change visibility",J.t(null,void 0,s(66307))),Dt=new ve.TranslatedString("change bar change visibility",J.t(null,void 0,s(27426))),Pt=new ve.TranslatedString("change indicator titles visibility",J.t(null,void 0,s(63050))),zt=new ve.TranslatedString("change indicator arguments visibility",J.t(null,void 0,s(78310))),Nt=new ve.TranslatedString("change indicator values visibility",J.t(null,void 0,s(49583))),Rt=new ve.TranslatedString("change volume values visibility",J.t(null,void 0,s(96201))),Ot=new ve.TranslatedString("change symbol field visibility",J.t(null,void 0,s(12050))),Ft=J.t(null,void 0,s(14771)),Ut=J.t(null,void 0,s(25765)),Gt=J.t(null,void 0,s(45639)),Zt=J.t(null,void 0,s(72423)),jt=J.t(null,void 0,s(10842)),$t=J.t(null,void 0,s(37644)),Qt=J.t(null,void 0,s(7511)),Kt=J.t(null,void 0,s(44036)),qt=J.t(null,void 0,s(51353)),Jt=J.t(null,void 0,s(23079)),Xt=(0,Wt.appendEllipsis)(J.t(null,void 0,s(32514))),Yt=c.enabled("symbol_info_price_source"),es=(e,t)=>e?e.dataset[t]?e.dataset[t]:e.parentElement?es(e.parentElement,t):null:null;s(88145);var ts=s(53350),ss=s(75725);class is{constructor(e){this._source=e,this._fullSessionScheduleViewModel=new ts.FullSessionScheduleViewModel(e)}destroy(){this._fullSessionScheduleViewModel.destroy()}renderer(e,t){const s=this._source.marketStatusModel()?.status().value();return"expired"===s||"delisted"===s?null:(0,V.createElement)(ss.FullSessionScheduleRenderer,{key:e,className:t,showAllDays:void 0,sessionDays:this._fullSessionScheduleViewModel.sessionsDays,now:this._fullSessionScheduleViewModel.currentTimeValue(),timezone:this._fullSessionScheduleViewModel.timezone()})}updateSource(e){this._source=e,this._fullSessionScheduleViewModel.destroy(),this._fullSessionScheduleViewModel=new ts.FullSessionScheduleViewModel(e)}}var ls=s(19625),os=s(91682),as=s(82236),ns=s(58994);class rs{constructor(e){this.isBlinkingMode=new n.WatchedValue(!1),this._status=new n.WatchedValue(null),this._fullTooltip=new n.WatchedValue(null),this._iconClassNames=new n.WatchedValue(null),this._visible=new n.WatchedValue(!1),this._destroyed=!1,this._tooltip=new n.WatchedValue(null),this._icon=new n.WatchedValue(null),this._className=new n.WatchedValue(null),this._customColor=new n.WatchedValue(null),this._infoMaps=e,this._size=e.size||"small",this._status.subscribe(this._updateByStatus.bind(this),{callWithLast:!0})}destroy(){this._destroyed=!0}turnOffBlinkingMode(){}status(){return this._status}tooltip(){return this._tooltip}icon(){return this._icon}className(){return this._className}visible(){return this._visible}size(){return this._size}fullInfo(){return this._fullTooltip}customColor(){return this._customColor}_getTooltip(e){return this._infoMaps.tooltipMap?.get(e)??null}_getIcon(e){let t
|
||||
;const s=this._infoMaps.iconMap.get(e);return void 0!==s&&(t=s.get(this._size)),t||null}_getClassName(e){return this._infoMaps.classNameMap.get(e)||null}_getFullTooltipIconClassNames(e){const t=this._getClassName(e);return t?[ns.statusItem,t]:[]}_getTitle(e){return this._infoMaps.titleMap?.get(e)??null}_getTitleColor(e){return this._infoMaps.titleColorMap?.get(e)??null}_getAction(e){return this._infoMaps.actionMap?.get(e)??null}_getHTML(e){return this._infoMaps.htmlMap?.get(e)?.map(os.htmlEscape)??[]}async _updateFullTooltip(){const e=this._status.value();null!==e?this._fullTooltip.setValue([{icon:this._getIcon(e),iconClassName:this._getFullTooltipIconClassNames(e),title:this._getTitle(e),titleColor:this._getTitleColor(e),html:this._getHTML(e),size:this._size,action:this._getAction(e)}]):this._fullTooltip.setValue(null)}_updateByStatus(e){if(null===e||this._shouldBeHiddenByStatus(e))return this._icon.setValue(null),this._tooltip.setValue(null),void this._visible.setValue(!1);this._icon.setValue(this._getIcon(e)),this._className.setValue(this._getClassName(e)),this._tooltip.setValue(this._getTooltip(e)),this._visible.setValue(!0),this._updateFullTooltip()}_shouldBeHiddenByStatus(e){return!1}}var ds=s(12646),us=s(31233),hs=s(55593),cs=s(69410),_s=s(52828),ps=s(91665),ms=s(39379),gs=s(38373),bs=s(79304),vs=s(21672),ws=s(92315);const Ss=new Map([["small",ds],["medium",us],["large",us]]),ys=new Map([["small",hs],["medium",cs],["large",cs]]),Ms=new Map([["small",_s],["medium",ps],["large",ps]]),fs=(new Map([["small",ms],["medium",ms],["large",ms]]),new Map([["small",""],["medium",""],["large",""]]),new Map([["small",""],["medium",""],["large",""]]),new Map([["small",gs],["medium",bs],["large",bs]]),new Map([["small",""],["medium",""],["large",""]]),new Map([["small",vs],["medium",ws],["large",ws]]),new Map([["small",""],["medium",""],["large",""]]),new Map([["small",""],["medium",""],["large",""]]),ls.colorsPalette["color-delay-mode"]),Cs=ls.colorsPalette["color-eod-mode"],Es=ls.colorsPalette["color-notaccurate-mode"],Vs=(ls.colorsPalette["color-primary-symbol"],ls.colorsPalette["color-halal"],ls.colorsPalette["color-continuous"],ls.colorsPalette["color-data-problem"],ls.colorsPalette["color-data-problem"],ls.colorsPalette["color-market-expired"],ls.colorsPalette["color-grapes-purple-400"],ls.colorsPalette["color-ripe-red-600"],J.t(null,void 0,s(43348))),Ls=J.t(null,void 0,s(5805)),Ws=J.t(null,void 0,s(91006)),As=J.t(null,void 0,s(58796)),xs=J.t(null,void 0,s(55154)),ks=(J.t(null,void 0,s(44138)),J.t(null,void 0,s(94972)),J.t(null,void 0,s(95246)),J.t(null,void 0,s(50035)),J.t(null,void 0,s(19481)),J.t(null,void 0,s(75119)),J.t(null,void 0,s(67607)),J.t(null,void 0,s(84484)),(e,t)=>(0,os.htmlEscape)(J.t(null,{plural:"{symbolName} data is delayed by {time} minutes because of exchange requirements.",count:t,replace:{symbolName:e,time:t.toString()}},s(81227)))),Ts=(0,os.htmlEscape)(J.t(null,void 0,s(51211))),Hs=(0,os.htmlEscape)(J.t(null,void 0,s(7281))),Bs=(0,os.htmlEscape)(J.t(null,void 0,s(20987))),Is=(0,
|
||||
os.htmlEscape)(J.t(null,void 0,s(32925))),Ds=(0,os.htmlEscape)(J.t(null,void 0,s(38368))),Ps=(0,os.htmlEscape)(J.t(null,void 0,s(33039))),zs=(0,os.htmlEscape)(J.t(null,void 0,s(85996))),Ns=(0,os.htmlEscape)(J.t(null,void 0,s(95400))),Rs=J.t(null,void 0,s(31539)),Os=(J.t(null,{context:'Part of: "Real-time data for {symbolName} is provided by {exchange} exchange."'},s(48473)),J.t(null,{context:'Part of: "Real-time data for {symbolName} is provided by {exchange} exchange."'},s(84455)),J.t(null,void 0,s(24669))),Fs=J.t(null,void 0,s(52668)),Us=J.t(null,void 0,s(44492));J.t(null,void 0,s(40225)),J.t(null,void 0,s(71847)),J.t(null,void 0,s(39664)),J.t(null,void 0,s(72723)),J.t(null,void 0,s(25608)),J.t(null,void 0,s(33161)),J.t(null,void 0,s(99452)),J.t(null,void 0,s(90589)),J.t(null,void 0,s(43383)),J.t(null,void 0,s(14181)),J.t(null,void 0,s(19679)),J.t(null,void 0,s(84937)),J.t(null,void 0,s(34987)),J.t(null,void 0,s(59269)),J.t(null,void 0,s(1356)),J.t(null,void 0,s(96341));var Gs=s(22118),Zs=s(56840);const js="tv.alreadyBlinkedStatuses",$s=[];function Qs(){return Zs.getJSON(js,$s)}const Ks=new n.WatchedValue(Qs());function qs(e){const t=Zs.getJSON(js,$s);t.includes(e)||(t.push(e),Zs.setJSON(js,t),Ks.setValue(Qs()))}Zs.onSync.subscribe(null,(()=>Ks.setValue(Qs())));const Js=Ks;var Xs=s(14712);const Ys=(0,
|
||||
Pe.getLogger)("Chart.LegendWidget"),ei=["TFEXDelayForGuest","MILDelayForGuest","NGMDelayForGuest","DEForGuest","ICESGDelayForGuest","TAIFEXDelayForGuest","TURQUOISEDelayForGuest","ADXDelayForGuest","TRADEGATEDelayForGuest","LUXSEDelayForGuest","NSENGDelayForGuest","FINRADelayForGuest"],ti=new Map([["DelayToRealtime",Ss],["DelayNoRealtime",Ss],["TFEXDelayForGuest",Ss],["MILDelayForGuest",Ss],["NGMDelayForGuest",Ss],["ICESGDelayForGuest",Ss],["TAIFEXDelayForGuest",Ss],["TURQUOISEDelayForGuest",Ss],["ADXDelayForGuest",Ss],["TRADEGATEDelayForGuest",Ss],["LUXSEDelayForGuest",Ss],["NSENGDelayForGuest",Ss],["FINRADelayForGuest",Ss],["DEForGuest",Ss],["EOD",ys],["TickByTick",Ms],["BATSToRealtime",Ms],["DelayWithoutMarketAgreement",Ss]]),si=new Map([["DelayToRealtime",ns.delay],["DelayNoRealtime",ns.delay],["TFEXDelayForGuest",ns.delay],["MILDelayForGuest",ns.delay],["NGMDelayForGuest",ns.delay],["ICESGDelayForGuest",ns.delay],["TAIFEXDelayForGuest",ns.delay],["TURQUOISEDelayForGuest",ns.delay],["ADXDelayForGuest",ns.delay],["TRADEGATEDelayForGuest",ns.delay],["LUXSEDelayForGuest",ns.delay],["NSENGDelayForGuest",ns.delay],["FINRADelayForGuest",ns.delay],["DEForGuest",ns.delay],["EOD",ns.eod],["TickByTick",ns.notAccurate],["BATSToRealtime",ns.notAccurate],["DelayWithoutMarketAgreement",ns.delay]]),ii=new Map([["DelayToRealtime",fs],["DelayNoRealtime",fs],["TFEXDelayForGuest",fs],["MILDelayForGuest",fs],["NGMDelayForGuest",fs],["ICESGDelayForGuest",fs],["TAIFEXDelayForGuest",fs],["TURQUOISEDelayForGuest",fs],["ADXDelayForGuest",fs],["TRADEGATEDelayForGuest",fs],["LUXSEDelayForGuest",fs],["NSENGDelayForGuest",fs],["FINRADelayForGuest",fs],["DEForGuest",fs],["EOD",Cs],["TickByTick",Es],["BATSToRealtime",Es],["DelayWithoutMarketAgreement",fs]]),li=(J.t(null,void 0,s(28214)),J.t(null,void 0,s(27741)));(0,os.htmlEscape)(J.t(null,void 0,s(5447)));class oi extends rs{constructor(e,t,s){super({iconMap:ti,classNameMap:si,titleColorMap:ii,size:t}),this._dataUpdatedInfo=new n.WatchedValue(null).spawn(),this._onMarketStatusChanged=()=>{this._updateByStatus(this.status().value())},this._options=s,this._model=e,this._dataModeBlinkingStatuses=Js.spawn(),this._dataModeBlinkingStatuses.subscribe(this._updateBlinkingMode.bind(this)),this._options.marketStatus?.subscribe(this._onMarketStatusChanged),this.turnOffBlinkingMode=this._turnOffBlinking.bind(this),this.setModel(e)}destroy(){this._dataUpdatedInfo.destroy(),this._dataModeBlinkingStatuses.destroy(),this._options.marketStatus?.unsubscribe(this._onMarketStatusChanged),this._options.marketStatus?.release(),super.destroy()}setModel(e){if(this._dataUpdatedInfo.destroy(),null===e)return this._model=e,void(this._dataUpdatedInfo=new n.WatchedValue(null).spawn());this._dataUpdatedInfo=e.status().spawn(),this._dataUpdatedInfo.subscribe(this._updateStatus.bind(this),{callWithLast:!0})}_shouldBeHiddenByStatus(e){const t=this._options.marketStatus?.value();return"expired"===t||"delisted"===t||(!("BATSToRealtime"!==e||!this._model?.isSpread())||super._shouldBeHiddenByStatus(e))}_getTooltip(){
|
||||
const e=this._getShortTexts();return null===e?null:Object.values(e).join(" · ")}async _updateFullTooltip(){const e=this._dataUpdatedInfo.value(),t=this._status.value();if(null===e||null===t)return void this._fullTooltip.setValue(null);const s=this._getShortTexts(),[i,l]=await Promise.all([this._getHtmls(),this._getActions()]);if(e!==this._dataUpdatedInfo.value())return;const o=[];for(const t of e){const e=t.mode;"BATSToRealtime"===e&&this._model?.isSpread()||o.push({icon:this._getIcon(e),iconClassName:this._getFullTooltipIconClassNames(e),title:s&&s[e],titleColor:this._getTitleColor(e),html:i&&i[e],size:this._size,action:l&&l[e]})}this._fullTooltip.setValue(o)}_updateStatus(e){const t=null!==e?e[0].mode:null;this._status.setValue(t??null,!0),this._updateBlinkingMode()}async _getHtmls(){const e=this._dataUpdatedInfo.value();if(null===e||null===this._model)return Promise.resolve(null);const t={},i=this._model.symbolName();let l=null,o=null;try{l=await this._model.description(),o=this._model.exchange()}catch(e){Ys.logError(`Can't get exchange description, reason: ${(0,Xs.errorToString)(e)}`)}for(const a of e){const e=a.mode;if(t[e]=[],["DelayToRealtime","DelayNoRealtime","DelayWithoutMarketAgreement",...ei].includes(e)&&(t[e].push(ks(i,this._model.time())),this._options.subscriptionFullInfo&&null!==l&&"DelayToRealtime"===e&&t[e].push(Hs.format({description:`<b>${l}</b>`})),"DelayNoRealtime"===e&&t[e].push(Bs),"DelayWithoutMarketAgreement"===e&&t[e].push(Ns.format({listedExchange:this._model.listedExchange()})),this._options.subscriptionFullInfo&&ei.includes(e)&&t[e].push(Ts.format({listedExchange:this._model.listedExchange()}))),"EOD"===e&&(t[e]=[Is]),"TickByTick"===e){const i=void 0===a.updatePeriod?Ds:(0,os.htmlEscape)(J.t(null,{count:a.updatePeriod,replace:{amount:(a.updatePeriod??1).toString()},plural:"Data on our Basic plan is updated once every {amount} seconds, even if there are more updates on the market."},s(83978))),l=void 0===a.updatePeriod?Ps:(0,os.htmlEscape)(J.t(null,{count:a.updatePeriod,replace:{amount:(a.updatePeriod??1).toString()},plural:"Data is updated once every {amount} seconds, even if there are more updates on the market."},s(51931)));t[e].push(this._options.subscriptionFullInfo?i:l),this._options.subscriptionFullInfo&&t[e].push(zs)}if(null!==o&&"BATSToRealtime"===e){let s=this._model.listedExchange();const l=(0,Gs.isAmexToCboeMigratedSymbol)(s,this._model.proPerm());0,Gs.CRUCIAL_REALTIME_BATS.includes(this._model.listedExchange())||l?t[e].push(Us.format({exchange:s,originalExchange:As})):t[e].push(Rs.format({symbolName:i,exchange:o}),""!==s?(0,os.htmlEscape)(Fs).format({exchange:s}):(0,os.htmlEscape)(Os))}}return Object.keys(t).length>0?t:null}async _getActions(){if(null===this._dataUpdatedInfo.value()||null===this._model)return null;const e={};return Object.keys(e).length>0?e:null}_showSupportDialogForUpdateMode(e){}_getShortTexts(){const e=this._dataUpdatedInfo.value();if(null===e||null===this._model)return null;const t={};for(const i of e){const e=i.mode
|
||||
;if(["DelayToRealtime","DelayNoRealtime",...ei,"DelayWithoutMarketAgreement"].includes(e)&&(t[e]=Vs),"EOD"===e&&(t[e]=Ls),"TickByTick"===e){const l=void 0===i.updatePeriod?Ws:(0,os.htmlEscape)(J.t(null,{plural:"One update every {amount} seconds",count:i.updatePeriod,replace:{amount:(i.updatePeriod??1).toString()}},s(36050)));t[e]=l}if("BATSToRealtime"===e){let s=this._model.firstReplacedByBatsExchange()??"";0,t[e]=""!==s?xs.format({exchange:s,originalExchange:As}):As}}return Object.keys(t).length>0?t:null}_updateBlinkingMode(){const e=this._dataUpdatedInfo.value();if(null===e)return;const t=this._dataModeBlinkingStatuses.value();for(const s of e)if(!t.includes(s.mode))return void this.isBlinkingMode.setValue(!0);this.isBlinkingMode.setValue(!1)}_turnOffBlinking(){const e=this._dataUpdatedInfo.value();if(null!==e)for(const t of e)qs(t.mode)}_goProDialogAction(e,t={}){return{text:li,onClick:()=>{null!==this._model&&createGoProDialog({forceUpgradeBtn:!0,goOnMarkets:!0,customParams:t,upgradeMessage:J.t(null,void 0,s(70032)),feature:e}).then((()=>{trackEvent("Data Warning","Full description visible",e)}))}}}}const ai=J.t(null,void 0,s(86158)),ni=new Map([[!0,new Map([["small",gs],["medium",bs],["large",bs]])],[!1,new Map([["small",""],["medium",""],["large",""]])]]),ri=new Map([[!0,ns.dataProblemLow],[!1,null]]),di=new Map([[!0,ai],[!1,null]]),ui=new Map([[!0,ai],[!1,null]]),hi=new Map([[!0,ls.colorsPalette["color-data-problem"]],[!1,null]]);class ci extends rs{constructor(e,t,s){super({iconMap:ni,classNameMap:ri,tooltipMap:di,titleMap:ui,titleColorMap:hi,size:t}),this._dataSourceErrorStatus=new n.WatchedValue(null).spawn(),this._lastError=null,this._options=s,this.setSource(e)}destroy(){this._dataSourceErrorStatus.destroy(),super.destroy()}setSource(e){this._dataSourceErrorStatus.destroy(),this._dataSourceErrorStatus=e.errorStatus().spawn(),this._dataSourceErrorStatus.subscribe(this._updateStatus.bind(this),{callWithLast:!0})}_getTooltip(e){return(e?this._getDataSourceErrorStatusCustomTitle():null)??super._getTooltip(e)}_getTitle(e){return(e?this._getDataSourceErrorStatusCustomTitle():null)??super._getTitle(e)}async _updateFullTooltip(){const e=this._status.value(),t=this._dataSourceErrorStatus.value();null!==e&&null!==t?this._fullTooltip.setValue([{icon:this._getIcon(e),iconClassName:this._getFullTooltipIconClassNames(e),title:this._getTitle(e),titleColor:this._getTitleColor(e),html:void 0===t.stackTrace?[(0,as.formatStudyError)((0,os.htmlEscape)(t.error))]:null,size:this._size,action:this._getAction(e),solutionId:this._options.errorSolution?this._dataSourceErrorStatus.value()?.solutionId:void 0}]):this._fullTooltip.setValue(null)}_getAction(e){return null}_updateStatus(e){const t=this._status.value();null!==e?(this._status.setValue(!0),t&&this._lastError!==e.error&&this._updateByStatus(!0),this._lastError=e.error):(this._status.setValue(null),this._lastError=null)}_getDataSourceErrorStatusCustomTitle(){return this._dataSourceErrorStatus.value()?.title||null}}
|
||||
;if(["DelayToRealtime","DelayNoRealtime",...ei,"DelayWithoutMarketAgreement"].includes(e)&&(t[e]=Vs),"EOD"===e&&(t[e]=Ls),"TickByTick"===e){const l=void 0===i.updatePeriod?Ws:(0,os.htmlEscape)(J.t(null,{plural:"One update every {amount} seconds",count:i.updatePeriod,replace:{amount:(i.updatePeriod??1).toString()}},s(36050)));t[e]=l}if("BATSToRealtime"===e){let s=this._model.firstReplacedByBatsExchange()??"";0,t[e]=""!==s?xs.format({exchange:s,originalExchange:As}):As}}return Object.keys(t).length>0?t:null}_updateBlinkingMode(){const e=this._dataUpdatedInfo.value();if(null===e)return;const t=this._dataModeBlinkingStatuses.value();for(const s of e)if(!t.includes(s.mode))return void this.isBlinkingMode.setValue(!0);this.isBlinkingMode.setValue(!1)}_turnOffBlinking(){const e=this._dataUpdatedInfo.value();if(null!==e)for(const t of e)qs(t.mode)}_goProDialogAction(e,t={}){return{text:li,onClick:()=>{null!==this._model&&createGoProDialog({forceUpgradeBtn:!0,goOnMarkets:!0,customParams:t,upgradeMessage:J.t(null,void 0,s(70032)),feature:e}).then((()=>{trackEvent("Data Warning","Full description visible",e)}))}}}}const ai=J.t(null,void 0,s(86158)),ni=new Map([[!0,new Map([["small",gs],["medium",bs],["large",bs]])],[!1,new Map([["small",""],["medium",""],["large",""]])]]),ri=new Map([[!0,ns.dataProblemLow],[!1,null]]),di=new Map([[!0,ai],[!1,null]]),ui=new Map([[!0,ai],[!1,null]]),hi=new Map([[!0,ls.colorsPalette["color-data-problem"]],[!1,null]]);class ci extends rs{constructor(e,t,s){super({iconMap:ni,classNameMap:ri,tooltipMap:di,titleMap:ui,titleColorMap:hi,size:t}),this._dataSourceErrorStatus=new n.WatchedValue(null).spawn(),this._lastError=null,this._options=s,this.setSource(e)}destroy(){this._dataSourceErrorStatus.destroy(),super.destroy()}setSource(e){this._dataSourceErrorStatus.destroy(),this._dataSourceErrorStatus=e.errorStatus().spawn(),this._dataSourceErrorStatus.subscribe(this._updateStatus.bind(this),{callWithLast:!0})}_getTooltip(e){return(e?this._getDataSourceErrorStatusCustomTitle():null)??super._getTooltip(e)}_getTitle(e){return(e?this._getDataSourceErrorStatusCustomTitle():null)??super._getTitle(e)}async _updateFullTooltip(){const e=this._status.value(),t=this._dataSourceErrorStatus.value();null!==e&&null!==t?this._fullTooltip.setValue([{icon:this._getIcon(e),iconClassName:this._getFullTooltipIconClassNames(e),title:this._getTitle(e),titleColor:this._getTitleColor(e),html:void 0===t.stackTrace?[(0,as.formatStudyError)((0,os.htmlEscape)(t.error))]:null,size:this._size,action:this._getAction(e),solutionId:this._options.errorSolution?this._dataSourceErrorStatus.value()?.solutionId:void 0,dataTestId:"data-source-error-status"}]):this._fullTooltip.setValue(null)}_getAction(e){return null}_updateStatus(e){const t=this._status.value();null!==e?(this._status.setValue(!0),t&&this._lastError!==e.error&&this._updateByStatus(!0),this._lastError=e.error):(this._status.setValue(null),this._lastError=null)}_getDataSourceErrorStatusCustomTitle(){return this._dataSourceErrorStatus.value()?.title||null}}
|
||||
const _i=J.t(null,void 0,s(78992)),pi=new Map([["high",new Map([["small",gs],["medium",bs],["large",bs]])],["low",new Map([["small",gs],["medium",bs],["large",bs]])]]),mi=new Map([["high",ns.dataProblemHigh],["low",ns.dataProblemLow]]),gi=new Map([["high",_i],["low",_i]]),bi=new Map([["high",ls.colorsPalette["color-data-problem"]],["low",ls.colorsPalette["color-data-problem"]]]);class vi extends rs{constructor(e,t){super({tooltipMap:gi,iconMap:pi,classNameMap:mi,titleMap:gi,titleColorMap:bi,size:t}),this._dataProblems=new n.WatchedValue([]).spawn(),this._isDataProblemCritical=new n.WatchedValue(!1),this.setModel(e)}destroy(){this._dataProblems.destroy(),super.destroy()}isDataProblemCritical(){return this._isDataProblemCritical}setModel(e){this._dataProblems.destroy(),null!==e?(this._dataProblems=e.dataProblems().spawn(),this._dataProblems.subscribe(this._updateStatus.bind(this),{callWithLast:!0})):this._dataProblems=new n.WatchedValue([]).spawn()}async _updateFullTooltip(){const e=this.status().value(),t=this._dataProblems.value();if(null===e||0===t.length)return void this._fullTooltip.setValue(null);const s=t.map(((t,s)=>({icon:this._getIcon(e),iconClassName:this._getFullTooltipIconClassNames(e),title:t.title??(0===s?this._getTitle(e):null),titleColor:this._getTitleColor(e),html:[(0,os.htmlEscape)(t.text)],size:this._size,action:this._getAction(e)})));this._fullTooltip.setValue(s)}_getTooltip(e){return this._getDataProblemCustomTitle()??super._getTooltip(e)}_getTitle(e){return this._getDataProblemCustomTitle()??super._getTitle(e)}_updateStatus(e){const t=e[0]?.severity??null,s=this._status.value()!==t;this._status.setValue(t),this._isDataProblemCritical.setValue(function(e){return"high"===e}(t)),s||this._updateFullTooltip()}_getDataProblemCustomTitle(){return this._dataProblems.value()?.[0]?.title||null}}class wi extends rs{constructor(e,t){super(t),this._booleanStatus=new n.WatchedValue(!1).spawn(),this.updateStatus(e)}destroy(){this._booleanStatus.destroy(),super.destroy()}updateStatus(e){this._booleanStatus.destroy(),this._booleanStatus=e.spawn(),this._booleanStatus.subscribe(this._updateStatus.bind(this),{callWithLast:!0})}_updateStatus(e){e?this._status.setValue(!0):this._status.setValue(null)}}const Si=J.t(null,void 0,s(14285)),yi=J.t(null,void 0,s(53272)),Mi=new Map([[!0,new Map([["small",gs],["medium",bs],["large",bs]])],[!1,new Map([["small",""],["medium",""],["large",""]])]]),fi=new Map([[!0,ns.invalidSymbol],[!1,null]]),Ci=new Map([[!0,Si],[!1,null]]),Ei=new Map([[!0,Si],[!1,null]]),Vi=new Map([[!0,ls.colorsPalette["color-invalid-symbol"]],[!1,null]]),Li=new Map([[!0,[yi]],[!1,null]]),Wi=new Map([[!0,null],[!1,null]]);class Ai{constructor(e,t){this.isBlinkingMode=new n.WatchedValue(!1),this._status=new n.WatchedValue(null),this._size="small",this._fullInfo=new n.WatchedValue(null),this._className=new n.WatchedValue(ns.marketStatusCustom),this._symbolModel=null,this._symbol=null,this._tooltip=new n.WatchedValue(null),this._icon=new n.WatchedValue(null),this._visible=new n.WatchedValue(!1),
|
||||
this._color=new n.WatchedValue(null),this._updateVisibleCallback=this._updateVisible.bind(this),this._updateColorCallback=this._updateColor.bind(this),this._updateIconCallback=this._updateIcon.bind(this),this._updateTooltipCallback=this._updateTooltip.bind(this),this._updateFullInfoCallback=this._updateFullInfo.bind(this),this._model=e,this._size=t}turnOffBlinkingMode(){}destroy(){}setModel(e){this._model=e}setSymbol(e){e!==this._symbol&&(this._unSyncModel(),this._symbol=e,e?(this._symbolModel=this._model.getSymbolCustomStatus(e),this._syncModel()):this._symbolModel=null)}status(){return this._status.spawn()}tooltip(){return this._tooltip.spawn()}icon(){return this._icon.spawn()}className(){return this._className.spawn()}visible(){return this._visible.spawn()}size(){return this._size}fullInfo(){return this._fullInfo.spawn()}customColor(){return this._color.spawn()}_updateFullInfo(e){if(null===e)return void this._fullInfo.setValue(null);const t=e.map((e=>({icon:e.icon??this.icon().value(),iconClassName:[ns.marketStatusCustom],title:e.title,titleColor:e.color??this.customColor().value(),html:e.content,size:this.size(),action:this._buildAction(e.action)})));this._fullInfo.setValue(t)}_buildAction(e){return e&&e.onClick?{text:e.text??"",tooltip:e.tooltip,onClick:e.onClick}:null}_unSyncModel(){this._symbolModel&&(this._symbolModel.visible().unsubscribe(this._updateVisibleCallback),this._symbolModel.color().unsubscribe(this._updateColorCallback),this._symbolModel.icon().unsubscribe(this._updateIconCallback),this._symbolModel.tooltip().unsubscribe(this._updateTooltipCallback),this._symbolModel.tooltipContent().unsubscribe(this._updateFullInfoCallback))}_syncModel(){this._visible.setValue(this._symbolModel?.visible().value()??!1),this._color.setValue(this._symbolModel?.color().value()??null),this._icon.setValue(this._symbolModel?.icon().value()??null),this._tooltip.setValue(this._symbolModel?.tooltip().value()??null),this._updateFullInfo(this._symbolModel?.tooltipContent().value()??null),this._symbolModel&&(this._symbolModel.visible().subscribe(this._updateVisibleCallback),this._symbolModel.color().subscribe(this._updateColorCallback),this._symbolModel.icon().subscribe(this._updateIconCallback),this._symbolModel.tooltip().subscribe(this._updateTooltipCallback),this._symbolModel.tooltipContent().subscribe(this._updateFullInfoCallback))}_updateVisible(e){this._visible.setValue(e)}_updateColor(e){this._color.setValue(e)}_updateIcon(e){this._icon.setValue(e)}_updateTooltip(e){this._tooltip.setValue(e)}}var xi=s(38119),ki=s(53218),Ti=s(32140),Hi=s(62998),Bi=s(25230),Ii=s(15507),Di=s(43401),Pi=s(85290),zi=s(12462)
|
||||
;const Ni=J.t(null,void 0,s(41410)),Ri=J.t(null,void 0,s(36018)),Oi=J.t(null,void 0,s(73897)),Fi=J.t(null,void 0,s(62464)),Ui=J.t(null,void 0,s(87845)),Gi=J.t(null,void 0,s(29938)),Zi=J.t(null,void 0,s(65420)),ji=J.t(null,void 0,s(23302)),$i=J.t(null,void 0,s(52176)),Qi=J.t(null,void 0,s(41392)),Ki=J.t(null,void 0,s(59938)),qi=J.t(null,void 0,s(99822)),Ji=J.t(null,void 0,s(66595)),Xi=J.t(null,void 0,s(43094)),Yi=J.t(null,void 0,s(81509)),el=J.t(null,void 0,s(58470)),tl=new Map([["market",new Map([["small",Ti],["medium",Hi],["large",Hi]])],["pre_market",new Map([["small",Pi],["medium",zi],["large",zi]])],["post_market",new Map([["small",Ii],["medium",Di],["large",Di]])],["out_of_session",new Map([["small",ki],["medium",ki],["large",ki]])],["holiday",new Map([["small",Bi],["medium",Bi],["large",Bi]])]]),sl=new Map([["market",ns.marketStatusOpen],["pre_market",ns.marketStatusPre],["post_market",ns.marketStatusPost],["out_of_session",ns.marketStatusClose],["holiday",ns.marketStatusHoliday]]),il=new Map([["market",Ni],["pre_market",Ri],["post_market",Oi],["out_of_session",Fi],["holiday",Ui]]),ll=new Map([["market",Ni],["pre_market",Ri],["post_market",Oi],["out_of_session",Fi],["holiday",Ui]]),ol=new Map([["market",ls.colorsPalette["color-market-open"]],["pre_market",ls.colorsPalette["color-pre-market"]],["post_market",ls.colorsPalette["color-post-market"]],["out_of_session",ls.colorsPalette["color-market-closed"]],["holiday",ls.colorsPalette["color-market-holiday"]]]),al=new Map([["market",Gi],["pre_market",Zi],["post_market",ji],["out_of_session",$i],["holiday",Qi]]);const nl=tl,rl=sl,dl=il,ul=ll,hl=ol,cl=al;function _l(e){const t=Math.floor(e/86400),i=Math.floor((e-86400*t)/3600),l=Math.floor((e-86400*t-3600*i)/60);if(0===t&&0===i&&0===l)return Ki;if(t>0){const e=J.t(null,{plural:"{number} days",count:t,replace:{number:`${t}`},context:"Market opens in n days and n hours"},s(62218)),l=J.t(null,{plural:"{number} hours",count:i,replace:{number:`${i}`},context:"Market opens in n days and n hours"},s(65463));return J.t(null,{replace:{days:e,hours:l}},s(51320))}if(i>0){const e=J.t(null,{plural:"{number} hours",count:i,replace:{number:`${i}`},context:"Market opens in n hours and n minutes"},s(21730)),t=J.t(null,{plural:"{number} minutes",count:l,replace:{number:`${l}`},context:"Market opens in n hours and n minutes"},s(82796));return J.t(null,{replace:{hours:e,minutes:t}},s(90549))}return J.t(null,{plural:"{number} minutes",count:l,replace:{number:`${l}`,context:"Market opens in n minutes"}},s(32547))}const pl={market:e=>("post_market"===e.status?Yi:Xi).format({remainingTime:_l(e.remainingSeconds)}),pre_market:e=>Ji.format({remainingTime:_l(e.remainingSeconds)}),post_market:e=>Xi.format({remainingTime:_l(e.remainingSeconds)}),out_of_session:e=>("pre_market"===e.status?el:qi).format({remainingTime:_l(e.remainingSeconds)}),holiday:e=>("pre_market"===e.status?el:qi).format({remainingTime:_l(e.remainingSeconds)}),delisted:e=>"",expired:e=>""
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],cs:["(O+V+N+Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],cs:["(V+N+Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],cs:["(V+N)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],cs:["Barva svíček založená na základě předchozího uzavření ceny"]}},78930:e=>{e.exports={en:["Coordinates"],cs:["Souřadnice"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],cs:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],cs:["Ohraničení"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],cs:["Base Level"]}},71776:e=>{e.exports={en:["Down"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"]}},16564:e=>{e.exports={en:["Default"],cs:["Standardní"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],cs:["Rozšířit linie"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],cs:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],cs:["Fill Bottom Area"]}},886:e=>{e.exports={en:["HLC bars"]}},56796:e=>{e.exports={en:["Hours"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],cs:["Vstupy"]}},64075:e=>{e.exports={en:["Override min tick"],cs:["Přepsat Min Tick"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"]}},43154:e=>{e.exports={en:["Months"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],cs:["Přesnost"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},835:e=>{e.exports={en:["Weeks"]}},32163:e=>{e.exports={en:["Wick"],cs:["Knot"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],cs:["Top Line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],cs:["Thin Bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={
|
||||
en:["Timezone"],cs:["Časové pásmo"]}},22691:e=>{e.exports={en:["Up"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={
|
||||
en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={
|
||||
en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"],cs:["Days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"],cs:["Hours"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"],cs:["Duté Svíčky"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"],cs:["Months"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"],cs:["Minutes"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],cs:["Renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
4
charting_library/bundles/cs.1341.1068954aa326300ef390.js
Normal file
4
charting_library/bundles/cs.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],cs:["(O+V+N+Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],cs:["(V+N+Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],cs:["(V+N)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],cs:["Barva svíček založená na základě předchozího uzavření ceny"]}},78930:e=>{e.exports={en:["Coordinates"],cs:["Souřadnice"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],cs:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],cs:["Ohraničení"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],cs:["Base Level"]}},71776:e=>{e.exports={en:["Down"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"]}},16564:e=>{e.exports={en:["Default"],cs:["Standardní"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],cs:["Rozšířit linie"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],cs:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],cs:["Fill Bottom Area"]}},56796:e=>{e.exports={en:["Hours"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],cs:["Vstupy"]}},64075:e=>{e.exports={en:["Override min tick"],cs:["Přepsat Min Tick"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"]}},43154:e=>{e.exports={en:["Months"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],cs:["Přesnost"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},835:e=>{e.exports={en:["Weeks"]}},32163:e=>{e.exports={en:["Wick"],cs:["Knot"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],cs:["Top Line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],cs:["Thin Bars"]}},24821:e=>{e.exports={en:["Ticks"]
|
||||
}},77073:e=>{e.exports={en:["Timezone"],cs:["Časové pásmo"]}},22691:e=>{e.exports={en:["Up"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={
|
||||
en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={
|
||||
en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"],cs:["Days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"],cs:["Hours"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"],cs:["Duté Svíčky"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"],cs:["Months"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"],cs:["Minutes"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],cs:["Renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,3 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"],cs:["Porovnat"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"],cs:["Zrušit"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],cs:["Annotation Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],cs:["Přidat do oblíbených"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],cs:["Gann and Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],cs:["Geometric Shapes"]}},57157:e=>{e.exports={en:["Dot"],cs:["Tečka"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],cs:["Popis"]}},74385:e=>{e.exports={en:["Drawings"],cs:["Nákresy"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"],cs:["Guma"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],cs:["Prediction and Measurement Tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],cs:["Režim Fullscreen"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={
|
||||
en:["Lock all drawings"],cs:["Zamknout všechny nástroje pro kreslení"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"],cs:["Více"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],cs:["Hledat"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],cs:["Zůstat v režimu kreslení"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],cs:["Odebrat z oblíbených"]}},99984:e=>{e.exports={en:["Remove indicators"],cs:["Remove Indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],cs:["Trend Line Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],cs:["Přiblížit"]}},37310:e=>{e.exports={en:["Zoom Out"],cs:["Oddálit"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={
|
||||
en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
3
charting_library/bundles/cs.4211.932ffa2dc04657916b72.js
Normal file
3
charting_library/bundles/cs.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,3 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"],cs:["Porovnat"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"],cs:["Zrušit"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],cs:["Annotation Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],cs:["Přidat do oblíbených"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],cs:["Gann and Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],cs:["Geometric Shapes"]}},57157:e=>{e.exports={en:["Dot"],cs:["Tečka"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],cs:["Popis"]}},74385:e=>{e.exports={en:["Drawings"],cs:["Nákresy"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"],cs:["Guma"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],cs:["Prediction and Measurement Tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],cs:["Režim Fullscreen"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={
|
||||
en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"],cs:["Zamknout všechny nástroje pro kreslení"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"],cs:["Více"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],cs:["Hledat"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],cs:["Zůstat v režimu kreslení"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],cs:["Odebrat z oblíbených"]}},99984:e=>{e.exports={en:["Remove indicators"],cs:["Remove Indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],cs:["Trend Line Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],cs:["Přiblížit"]}},37310:e=>{e.exports={en:["Zoom Out"],cs:["Oddálit"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={
|
||||
en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
@@ -1,5 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],cs:["(O+V+N+Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],cs:["(V+N+Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],cs:["(V+N)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],cs:["Barva svíček založená na základě předchozího uzavření ceny"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],cs:["Nitkový kříž"]}},81849:e=>{e.exports={en:["Currency"],cs:["Měna"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"],cs:["Upozornění"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],cs:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],cs:["Ohraničení"]}},79468:e=>{e.exports={en:["Background"],cs:["Pozadí"]}},10842:e=>{e.exports={en:["Bar change values"],cs:["Bar Change Values"]}},28975:e=>{e.exports={en:["Base level"],cs:["Base Level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"],cs:["Date Format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"],cs:["Standardní"]}},78734:e=>{e.exports={en:["Description"],cs:["Popis"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],cs:["Akce"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],cs:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],cs:["Fill Bottom Area"]}},886:e=>{e.exports={en:["HLC bars"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],cs:["Indikátory"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"],cs:["No Overlapping Labels"]}},60798:e=>{
|
||||
e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],cs:["Stupnice"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"],cs:["Procenta"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],cs:["Přesnost"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],cs:["Vodoznak"]}},32163:e=>{e.exports={en:["Wick"],cs:["Knot"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],cs:["Top Line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],cs:["Thin Bars"]}},70198:e=>{e.exports={en:["Title"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"],cs:["Časové pásmo"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"],cs:["Objem"]}},51514:e=>{e.exports={en:["Value"],cs:["Hodnota"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},
|
||||
29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={
|
||||
en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={
|
||||
en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"],cs:["Duté Svíčky"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],cs:["Renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],cs:["Z"]}},43253:e=>{e.exports={en:["H"],cs:["V"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],cs:["N"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],cs:["Z"]}},43253:e=>{e.exports={en:["H"],cs:["V"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],cs:["N"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]
|
||||
},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"]},e.exports["All items_combobox_input"]={en:["All items"]},e.exports.All_input={en:["All"]},e.exports["Anchor Period_input"]={en:["Anchor Period"]},e.exports["Another symbol_input"]={en:["Another symbol"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"]},e.exports.Back_input={en:["Back"]},e.exports["Bands style_input"]={en:["Bands style"]},e.exports.Bar_input={en:["Bar"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"]},e.exports["Base Line_input"]={en:["Base Line"]},e.exports.Basis_input={en:["Basis"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"]},e.exports.Borders_input={en:["Borders"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"]},e.exports["Box size_input"]={en:["Box size"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"]},e.exports.Candles_input={en:["Candles"]},e.exports.Centered_input={en:["Centered"]},e.exports.Century_input={en:["Century"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"]},e.exports["Color 0_input"]={en:["Color 0"]},e.exports["Color 1_input"]={en:["Color 1"]},e.exports["Color 2_input"]={en:["Color 2"]},e.exports["Color 3_input"]={en:["Color 3"]},e.exports["Color 4_input"]={en:["Color 4"]},e.exports["Color 5_input"]={en:["Color 5"]},e.exports["Color 6_input"]={en:["Color 6"]},e.exports["Color 7_input"]={en:["Color 7"]},e.exports["Color 8_input"]={en:["Color 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"]},e.exports["Conversion Line_input"]={en:["Conversion Line"]},e.exports.Correlation_input={en:["Correlation"]},e.exports.Count_input={en:["Count"]},e.exports.Crosses_input={en:["Crosses"]},e.exports.Custom_input={en:["Custom"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"]},e.exports["Days Per Year_input"]={en:["Days Per Year"]},e.exports.Decade_input={en:["Decade"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"]},e.exports.Deviation_input={en:["Deviation"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"]},e.exports["Down bars_input"]={en:["Down bars"]},
|
||||
e.exports["Down color_input"]={en:["Down color"]},e.exports["Down fractals_input"]={en:["Down fractals"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"]},e.exports["Equality Line_input"]={en:["Equality Line"]},e.exports.Exponential_input={en:["Exponential"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"]},e.exports["Extend Right_input"]={en:["Extend Right"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"]},e.exports.Falling_input={en:["Falling"]},e.exports["Fast Length_input"]={en:["Fast Length"]},e.exports["Fast length_input"]={en:["Fast length"]},e.exports.Fill_input={en:["Fill"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"]},e.exports["HLC bars_input"]={en:["HLC bars"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"]},e.exports.Histogram_input={en:["Histogram"]},e.exports["Hull MA_input"]={en:["Hull MA"]},e.exports.Increment_input={en:["Increment"]},e.exports.Indicator_input={en:["Indicator"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"]},e.exports["Jaw Length_input"]={en:["Jaw Length"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],cs:["Lead 1"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],cs:["Lagging Span 2 Periods"]},e.exports["Length EMA_input"]={en:["Length EMA"]},e.exports["Length MA_input"]={en:["Length MA"]},e.exports.Length1_input={en:["Length1"]},e.exports.Length2_input={en:["Length2"]},e.exports.Length3_input={en:["Length3"]},e.exports.Length_input={en:["Length"]},e.exports.Level_input={en:["Level"]},e.exports["Levels Format_input"]={en:["Levels Format"]},e.exports.Limit_input={en:["Limit"]},e.exports.Line_input={en:["Line"],cs:["Čára"]},e.exports["Lips Length_input"]={
|
||||
en:["Lips Length"]},e.exports["Lips Offset_input"]={en:["Lips Offset"]},e.exports.Lips_input={en:["Lips"]},e.exports["Long Length_input"]={en:["Long Length"]},e.exports["Long RoC Length_input"]={en:["Long RoC Length"]},e.exports["Long length_input"]={en:["Long length"]},e.exports["Long period_input"]={en:["Long period"]},e.exports.Long_input={en:["Long"]},e.exports["Lower Band_input"]={en:["Lower Band"]},e.exports["Lower Deviation_input"]={en:["Lower Deviation"]},e.exports["Lower Percentage_input"]={en:["Lower Percentage"]},e.exports.LowerLimit_input={en:["LowerLimit"]},e.exports.Lower_input={en:["Lower"]},e.exports["MA Length_input"]={en:["MA Length"]},e.exports.MACD_input={en:["MACD"]},e.exports.MA_input={en:["MA"]},e.exports.MF_input={en:["MF"]},e.exports.MM_month_input={en:["MM"]},e.exports.MOM_input={en:["MOM"]},e.exports["Main chart symbol_input"]={en:["Main chart symbol"]},e.exports["Market Closed Percentage_input"]={en:["Market Closed Percentage"]},e.exports["Market only_input"]={en:["Market only"]},e.exports["Max value_input"]={en:["Max value"]},e.exports.Median_input={en:["Median"]},e.exports.Method_input={en:["Method"]},e.exports.Middle_input={en:["Middle"]},e.exports.Minimize_input={en:["Minimize"]},e.exports.Month_input={en:["Month"]},e.exports.Move_input={en:["Move"]},e.exports["Multi timeframe_input"]={en:["Multi timeframe"]},e.exports.Multiplier_input={en:["Multiplier"]},e.exports.NV_input={en:["NV"]},e.exports["Nothing selected_combobox_input"]={en:["Nothing selected"]},e.exports["Number Of Rows_input"]={en:["Number Of Rows"]},e.exports["Number of line_input"]={en:["Number of line"]},e.exports.OSC_input={en:["OSC"]},e.exports.Offset_input={en:["Offset"]},e.exports.OnBalanceVolume_input={en:["OnBalanceVolume"]},e.exports["One step back building_input"]={en:["One step back building"]},e.exports.Oscillator_input={en:["Oscillator"]},e.exports.Overbought_input={en:["Overbought"]},e.exports.Oversold_input={en:["Oversold"]},e.exports.POC_input={en:["POC"]},e.exports.PVT_input={en:["PVT"]},e.exports.P_input={en:["P"]},e.exports.ParabolicSAR_input={en:["ParabolicSAR"]},e.exports.Percent_input={en:["Percent"]},e.exports["Percentage LTP({percentageLTPValue}%)_input"]={en:["Percentage LTP({percentageLTPValue}%)"]},e.exports["Percentage LTP_input"]={en:["Percentage LTP"]},e.exports.Percentage_input={en:["Percentage"]},e.exports.Period_input={en:["Period"]},e.exports.Periods_input={en:["Periods"]},e.exports["Phantom bars_input"]={en:["Phantom bars"]},e.exports.Placement_input={en:["Placement"]},e.exports.Plot_input={en:["Plot"]},e.exports["Plots Background_input"]={en:["Plots Background"]},e.exports["Post-market only_input"]={en:["Post-market only"]},e.exports["Pre-market only_input"]={en:["Pre-market only"]},e.exports["Price source_input"]={en:["Price source"]},e.exports.Price_input={en:["Price"]},e.exports["Projection down bars_input"]={en:["Projection down bars"]},e.exports["Projection down color_input"]={en:["Projection down color"]},e.exports["Projection up bars_input"]={en:["Projection up bars"]},
|
||||
@@ -20,24 +20,24 @@ en:["Tobin's Q (approximate)"]},e.exports["Total assets_study"]={en:["Total asse
|
||||
e.exports["Volatility Stop_study"]={en:["Volatility Stop"]},e.exports["Volatility Zero Trend Close-to-Close_study"]={en:["Volatility Zero Trend Close-to-Close"]},e.exports["Volty Expan Close Strategy_study"]={en:["Volty Expan Close Strategy"]},e.exports["Volume Oscillator_study"]={en:["Volume Oscillator"]},e.exports["Volume Weighted Average Price_study"]={en:["Volume Weighted Average Price"]},e.exports["Volume Weighted Moving Average_study"]={en:["Volume Weighted Moving Average"]},e.exports.Volume_study={en:["Volume"],cs:["Objem"]},e.exports["Vortex Indicator_study"]={en:["Vortex Indicator"]},e.exports["Williams %R_study"]={en:["Williams %R"]},e.exports["Williams Alligator_study"]={en:["Williams Alligator"]},e.exports["Williams Fractal_study"]={en:["Williams Fractal"]},e.exports["Williams Fractals_study"]={en:["Williams Fractals"]},e.exports["Williams Percent Range_study"]={en:["Williams Percent Range"]},e.exports["Woodies CCI_study"]={en:["Woodies CCI"]},e.exports["Zig Zag_study"]={en:["Zig Zag"]},e.exports["Zmijewski score_study"]={en:["Zmijewski score"]}},89633:e=>{e.exports={en:["Anchored Volume Profile"]}},25705:e=>{e.exports={en:["Fixed Range Volume Profile"]}},24261:e=>{e.exports={en:["Vol"]}},67736:e=>{e.exports={en:["Minor"]}},922:e=>{e.exports={en:["Minute"],cs:["Minuta"]}},91405:e=>{e.exports={en:["Text"]}},78972:e=>{e.exports={en:["Couldn't copy"]}},10615:e=>{e.exports={en:["Couldn't cut"]}},81518:e=>{e.exports={en:["Couldn't paste"]}},83140:e=>{e.exports={en:["Countdown to bar close"],cs:["Countdown To Bar Close"]}},10871:e=>{e.exports={en:["Colombo"]}},55761:e=>{e.exports={en:["Columns"],cs:["Sloupce"]}},9818:e=>{e.exports={en:["Comment"],cs:["Komentář"]}},53942:e=>{e.exports={en:["Compare or Add Symbol"],cs:["Porovnat nebo přidat symbol"]}},12086:e=>{e.exports={en:["Compilation error"]}},71692:e=>{e.exports={en:["Confirm to remove locked drawings"]}},48141:e=>{e.exports={en:["Confirm Inputs"]}},81605:e=>{e.exports={en:["Confirm Remove Study Tree"]}},38917:e=>{e.exports={en:["Copenhagen"]}},49680:e=>{e.exports={en:["Copy"],cs:["Kopírovat"]}},66134:e=>{e.exports={en:["Copy Chart Layout"]}},63553:e=>{e.exports={en:["Copy price"]}},65736:e=>{e.exports={en:["Cairo"]}},25381:e=>{e.exports={en:["Callout"],cs:["Popisek"]}},45054:e=>{e.exports={en:["Candles"],cs:["Svíčky"]}},30948:e=>{e.exports={en:["Caracas"]}},70409:e=>{e.exports={en:["Casablanca"]}},37276:e=>{e.exports={en:["Change"]}},85124:e=>{e.exports={en:["Change Symbol"],cs:["Změnit symbol"]}},2569:e=>{e.exports={en:["Change interval"],cs:["Změnit Interval"]}},9687:e=>{e.exports={en:["Change interval. Press number or comma"]}},36332:e=>{e.exports={en:["Change symbol. Start typing symbol name"]}},48566:e=>{e.exports={en:["Change scale currency"]}},85110:e=>{e.exports={en:["Change scale unit"]}},56275:e=>{e.exports={en:["Chart #{index}"]}},39950:e=>{e.exports={en:["Chart Properties"],cs:["Vlastnosti grafu"]}},98856:e=>{e.exports={en:["Chart by TradingView"]}},1136:e=>{e.exports={en:["Chart for {symbol}, {interval}"]}},69804:e=>{e.exports={
|
||||
en:["Chart image copied to clipboard {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"]}},14985:e=>{e.exports={en:["Click to set a point"],cs:["Klepnutím nastavte bod"]}},12537:e=>{e.exports={en:["Clone"],cs:["Klonovat"]}},62578:e=>{e.exports={en:["Close"],cs:["Zavřít"]}},264:e=>{e.exports={en:["Create limit order"]}},6969:e=>{e.exports={en:["Cross"],cs:["Kříž"]}},74334:e=>{e.exports={en:["Cross Line"]}},59396:e=>{e.exports={en:["Currencies"],cs:["Měny"]}},20177:e=>{e.exports={en:["Current interval and above"]}},494:e=>{e.exports={en:["Current interval and below"]}},60668:e=>{e.exports={en:["Current interval only"]}},78609:e=>{e.exports={en:["Curve"]}},87380:e=>{e.exports={en:["Cycle"],cs:["Cyklus"]}},84031:e=>{e.exports={en:["Cyclic Lines"],cs:["Cyklické linie"]}},93191:e=>{e.exports={en:["Cypher Pattern"]}},7219:e=>{e.exports={en:["A layout with that name already exists"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],cs:["ABCD model"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"]}},42630:e=>{e.exports={en:["Anchorage"]}},42669:e=>{e.exports={en:["Anchored Text"],cs:["Ukotvený text"]}},84541:e=>{e.exports={en:["Anchored VWAP"]}},77401:e=>{e.exports={en:["Access error"]}},46501:e=>{e.exports={en:["Add Symbol"],cs:["Přidat symbol"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],cs:["Always Invisible"]}},36299:e=>{e.exports={en:["Always visible"],cs:["Always Visible"]}},58026:e=>{e.exports={en:["All intervals"]}},78358:e=>{e.exports={en:["Apply default"],cs:["Použít výchozí"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"]}},27072:e=>{e.exports={en:["Apr"],cs:["Duben"]}},59324:e=>{e.exports={en:["Arc"],cs:["Oblouk"]}},34456:e=>{e.exports={en:["Area"],cs:["Oblast"]}},11858:e=>{e.exports={en:["Arrow"],cs:["Šipka"]}},34247:e=>{e.exports={en:["Arrow Down"]}},36352:e=>{e.exports={en:["Arrow Marker"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],cs:["Šipka dolů"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],cs:["Šipka doleva"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],cs:["Šipka doprava"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],cs:["Šipka nahoru"]}},77231:e=>{e.exports={en:["Arrow Up"]}},98128:e=>{e.exports={
|
||||
en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],cs:["Ashkhabad"]}},72445:e=>{e.exports={en:["At close"]}},73702:e=>{e.exports={en:["Athens"],cs:["Athény"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],cs:["Auto (Fits Data To Screen)"]}},46450:e=>{e.exports={en:["Aug"],cs:["Srpen"]}},21841:e=>{e.exports={en:["Average close price label"]}},16138:e=>{e.exports={en:["Average close price line"]}},73025:e=>{e.exports={en:["Avg"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"],cs:["Bublina"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"],cs:["Sloupcový Graf"]}},81994:e=>{e.exports={en:["Bars Pattern"],cs:["Předloha grafu"]}},59213:e=>{e.exports={en:["Baseline"]}},71797:e=>{e.exports={en:["Belgrade"]}},64313:e=>{e.exports={en:["Berlin"],cs:["Berlín"]}},43539:e=>{e.exports={en:["Brush"],cs:["Štětec"]}},91499:e=>{e.exports={en:["Brussels"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],cs:["Posunout dopředu"]}},17293:e=>{e.exports={en:["Bring to front"],cs:["Přenést do popředí"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"]}},54280:e=>{e.exports={en:["Go to date"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"]}},47460:e=>{e.exports={en:["Gann Box"],cs:["Gann rámeček"]}},48683:e=>{e.exports={en:["Gann Fan"],cs:["Gann vějíř"]}},44763:e=>{e.exports={en:["Gann Square"],cs:["Gann čtverec"]}},60707:e=>{e.exports={en:["Gann Square Fixed"]}},46808:e=>{e.exports={en:["Ghost Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"],cs:["Grand Supercycle"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"]}},77125:e=>{e.exports={en:["Double Curve"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"]}},75296:e=>{e.exports={en:["Double-click to finish Path"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"]}},57131:e=>{e.exports={en:["Data Provided by"]}},22677:e=>{e.exports={en:["Date"],cs:["Datum"]}},85444:e=>{e.exports={en:["Date Range"],cs:["Časové období"]}},47017:e=>{e.exports={en:["Date and Price Range"]}},32084:e=>{e.exports={en:["Dec"],cs:["Prosinec"]}},23403:e=>{e.exports={en:["Degree"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={
|
||||
en:["Diamond"]}},91544:e=>{e.exports={en:["Disjoint Channel"]}},70132:e=>{e.exports={en:["Displacement"]}},93864:e=>{e.exports={en:["Drawings toolbar"],cs:["Drawings Toolbar"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],cs:["Elipsa"]}},52788:e=>{e.exports={en:["Extended Line"]}},86905:e=>{e.exports={en:["Exchange"],cs:["Směnárna"]}},19271:e=>{e.exports={en:["Existing pane above"],cs:["Existing Pane Above"]}},46545:e=>{e.exports={en:["Existing pane below"],cs:["Existing Pane Below"]}},20138:e=>{e.exports={en:["Forecast"],cs:["Předpověď"]}},2507:e=>{e.exports={en:["Feb"],cs:["Únor"]}},59005:e=>{e.exports={en:["Fib Channel"],cs:["Fibonacciho kanál"]}},82330:e=>{e.exports={en:["Fib Circles"],cs:["Fibonacciho kruhy"]}},55986:e=>{e.exports={en:["Fib Retracement"],cs:["Fibonacciho Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],cs:["Oblouková rychlost Fibonacciho rezistence"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],cs:["Fibonacciho vějířová rychlost rezistence"]}},39014:e=>{e.exports={en:["Fib Spiral"],cs:["Fibonacciho spirála"]}},30622:e=>{e.exports={en:["Fib Time Zone"],cs:["Fibonacciho časové pásmo"]}},85042:e=>{e.exports={en:["Fib Wedge"],cs:["Fibonacciho klín"]}},33885:e=>{e.exports={en:["Flag"]}},14600:e=>{e.exports={en:["Flag Mark"],cs:["Značka vlajky"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],cs:["Plochý vršek / spodek"]}},39643:e=>{e.exports={en:["Fraction part is invalid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],cs:["Duté Svíčky"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],cs:["Horizontální linie"]}},25487:e=>{e.exports={en:["Horizontal Ray"],cs:["Horizontální paprsek"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],cs:["Skrýt"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},
|
||||
78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"],cs:["Hide Events on Chart"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"],cs:["Hide Marks On Bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"],cs:["Vysoká"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],cs:["Střední"]}},14285:e=>{e.exports={en:["Invalid Symbol"],cs:["Neplatný Symbol"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"],cs:["Invert Scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"],cs:["Vložit indikátor"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],cs:["Vnitřní vidle"]}},37913:e=>{e.exports={en:["Icon"],cs:["Ikona"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"],cs:["Leden"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"],cs:["Červenec"]}},429:e=>{e.exports={en:["Jun"],cs:["Červen"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"],cs:["Říjen"]}},16610:e=>{e.exports={en:["Open"],cs:["Otevřít"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],cs:["Nízká"]}},51077:e=>{e.exports={en:["Lock"],cs:["Zamknout"]}},79777:e=>{e.exports={en:["Lock/unlock"],cs:["Zamknout / Odemknout"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],cs:["Lock Price To Bar Ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={
|
||||
en:["London"],cs:["Londýn"]}},74832:e=>{e.exports={en:["Long Position"],cs:["Koupit"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"],cs:["Popisky"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],cs:["Čára"]}},9394:e=>{e.exports={en:["Line with markers"],cs:["Se Značkami"]}},43588:e=>{e.exports={en:["Line break"],cs:["Line Break"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],cs:["Upravené Schiff Pitchfork"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"],cs:["Moskva"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],cs:["Březen"]}},73332:e=>{e.exports={en:["Mexico City"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],cs:["No Scale (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],cs:["Poznámka"]}},26899:e=>{e.exports={en:["Nov"],cs:["Listopad"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"]}},76266:e=>{e.exports={en:["Save as"],cs:["Uložit jako"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],cs:["Pouye Měřítko Ceny na Grafu"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],cs:["Schiffovy vidle"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}
|
||||
},32514:e=>{e.exports={en:["Settings"],cs:["Nastavení"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],cs:["Přenést do pozadí"]}},71179:e=>{e.exports={en:["Send backward"],cs:["Posunout dozadu"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"],cs:["Září"]}},94031:e=>{e.exports={en:["Session"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],cs:["Přerušit relaci"]}},1852:e=>{e.exports={en:["Shanghai"],cs:["Šanghaj"]}},8075:e=>{e.exports={en:["Short Position"],cs:["Prodat"]}},98334:e=>{e.exports={en:["Show"],cs:["Zobrazit"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"],cs:["Show All Ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"],cs:["Show Dividends"]}},37113:e=>{e.exports={en:["Show earnings"],cs:["Show Earnings"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],cs:["Show Ideas of Followed Users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],cs:["Show My Ideas Only"]}},50849:e=>{e.exports={en:["Show splits"],cs:["Show Splits"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],cs:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"]}},66205:e=>{e.exports={en:["Square"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"],cs:["Styl"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],cs:["Zůstat v režimu kreslení"]}},69217:e=>{e.exports={en:["Step line"],cs:["Step Line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],cs:["Symbol Name Label"]}},10127:e=>{e.exports={en:["Symbol last price label"],cs:["Symbol Last Value Label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"],cs:["Sync To All Charts"]}},76519:e=>{e.exports={en:["Point & figure"],cs:["Point & Figure ( O X )"]}},39949:e=>{e.exports={en:["Polyline"],cs:["Křivka"]}},
|
||||
371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"],cs:["Paralelní Kanál"]}},61879:e=>{e.exports={en:["Paris"],cs:["Paříž"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],cs:["Vidle"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"],cs:["Cena"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"],cs:["Cenové rozpětí"]}},66123:e=>{e.exports={en:["Price format is invalid."]}},72926:e=>{e.exports={en:["Price line"],cs:["Hladina ceny"]}},59189:e=>{e.exports={en:["Primary"],cs:["Primární"]}},75747:e=>{e.exports={en:["Projection"],cs:["Promítání"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],cs:["Otočený obdélník"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"],cs:["Paprsek"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],cs:["Obdélník"]}},48236:e=>{e.exports={en:["Redo"],cs:["Opakovat"]}},2460:e=>{e.exports={en:["Regression Trend"],cs:["Regresní trend"]}},67410:e=>{e.exports={en:["Remove"],cs:["Odstranit"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={
|
||||
en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],cs:["Přejmenovat předlohy grafu"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],cs:["Reset Price Scale"]}},54170:e=>{e.exports={en:["Reset time scale"],cs:["Reset Time Scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"]}},5959:e=>{e.exports={en:["Warsaw"],cs:["Varšava"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],cs:["Tokio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],cs:["Teherán"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],cs:["The symbol available only on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"],cs:["Čas"]}},20909:e=>{e.exports={en:["Time zone"],cs:["Časové pásmo"]}},46852:e=>{e.exports={en:["Time Cycles"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"],cs:["Úhel trendu"]}},97339:e=>{e.exports={en:["Trend Line"],cs:["Trendová linie"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],cs:["Vývoj trhu založený na Fibonacciho rozšíření"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],cs:["Vývoj trhu založený na Fibonacciho období"]}},1671:e=>{e.exports={en:["Triangle"],cs:["Trojúhelník"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"],cs:["Trojúhelníkový model"]}},
|
||||
21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],cs:["Zpět"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"]}},99894:e=>{e.exports={en:["Unlock"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],cs:["Svislá linie"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],cs:["Visible on Mouse Over"]}},4077:e=>{e.exports={en:["Visual order"],cs:["Seřadit vizuálně"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],cs:["XABCD model"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{
|
||||
e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"],cs:["Change Resolution"]}},35400:e=>{e.exports={en:["change symbol"],cs:["Change symbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={
|
||||
en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],cs:["Hide Marks On Bars"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"],cs:["Invert Scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."],cs:["načítá se ..."]}},76104:e=>{e.exports={en:["lock {title}"]}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"],cs:["Pouye Měřítko Ceny na Grafu"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{
|
||||
e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"],cs:["Reset Time Scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"],cs:["Toggle Percentage Scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"],cs:["{count} Sloupcový graf"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],cs:["APPLE INC"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},
|
||||
e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],cs:["Australský Dolar/Kanadský Dolar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],cs:["Australský Dolar/Švýcarský Frank"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],cs:["Australský Dolar/Japonský Jen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],cs:["Australský Dolar/Japonský Jen"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],cs:["AUSTRALSKÝ DOLAR / RUSKÝ RUBL"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],cs:["Australský Dolar/Americký Dolar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],cs:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],cs:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],cs:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],cs:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],cs:["Brazilský Real / Japonský Jen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],cs:["Bitcoin / Kanadský Dolar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],cs:["Bitcoin / Čínský Jüan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],cs:["Bitcoin / Jihokorejský Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],cs:["Bitcoin / Dolar"]},
|
||||
e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],cs:["Kanadský Dolar/Japonský Jen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],cs:["Švýcarský Frank/Japonský Jen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={
|
||||
en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],cs:["Měď"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],cs:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],cs:["Euro Fx/Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],cs:["Euro Fx/Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],cs:["Euro Fx/Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],cs:["Euro Fx/British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],cs:["Euro Fx/Japanese Yen"]},
|
||||
e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],cs:["Euro Fx/New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],cs:["EURO / RUSSIAN RUBLE"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],cs:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],cs:["Euro Fx/Turkish New Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],cs:["Euro Fx/U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],cs:["Euro Stoxx 50 index of European listed shares"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],cs:["Britská Libra/Australský Dolar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],cs:["Britská Libra/Kanadský Dolar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],cs:["Britská Libra/Švýcarský Frank"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],cs:["POUND STERLING / EURO"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],cs:["Britská Libra/Japonský Jen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],cs:["Britská Libra/Novozélandský Dolar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],cs:["Britská Libra/Ruský Rubl"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],cs:["Britská Libra/Americký Dolar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],cs:["DAX index of German listed shares"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],cs:["GOOGLE INC"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]
|
||||
},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],cs:["Nikkei 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],cs:["YEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],cs:["JEN / RUSKÝ RUBL"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],cs:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],cs:["NASDAQ 100 index of US listed shares"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={
|
||||
en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],cs:["Iteris Inc."]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],cs:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],cs:["ALIBABA GROUP HLDG LTD"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],
|
||||
cs:["New Zealand Dollar/Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],cs:["New Zealand Dollar/U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],cs:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],cs:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],cs:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],cs:["S&P 500 index of US listed shares"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],cs:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},
|
||||
e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],cs:["U.S. Dollar Currency Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],cs:["India Government Bonds 10 yr"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],cs:["Italy Government Bonds 10 yr"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],cs:["NASDAQ Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],cs:["Japan Government Bonds 10 yr"]},e.exports["#TVC:JXY-symbol-description"]={
|
||||
en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],cs:["NASDAQ 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],cs:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],cs:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],cs:["US Government Bonds 2 yr"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],cs:["US Government Bonds 5 yr"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],cs:["US Government Bonds 10 yr"]},e.exports["#TVC:US30-symbol-description"]={
|
||||
en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],cs:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],cs:["Americký Dolar/Brazilský Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],cs:["Americký Dolar/Kanadský Dolar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],cs:["Americký Dolar/Švýcarský Frank"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],cs:["Americký Dolar/Yuan Renminbi"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],cs:["US DOLAR / DÁNSKÁ KORUNA"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],cs:["Americký Dolar/Hongkongský Dolar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],cs:["Americký Dolar / Rupie"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],cs:["Americký Dolar / Indická Rupie"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],cs:["Americký Dolar/Japonský Jen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],cs:["US DOLLAR / WON"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],cs:["Americký Dolar/Mexické Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],cs:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],cs:["US DOLLAR / RUSSIAN RUBLE"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],cs:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],cs:["U.S. Dollar/Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],
|
||||
cs:["US DOLLAR / SINGAPORE DOLLAR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],cs:["U.S. Dollar/Turkish New Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],cs:["Silver/U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],cs:["Zlato / Americký Dolar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],cs:["Platina/Americký Dolar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],cs:["Ripple / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],cs:["Ripple / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],cs:["Ripple / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
en:["Diamond"]}},91544:e=>{e.exports={en:["Disjoint Channel"]}},70132:e=>{e.exports={en:["Displacement"]}},93864:e=>{e.exports={en:["Drawings toolbar"],cs:["Drawings Toolbar"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],cs:["Elipsa"]}},52788:e=>{e.exports={en:["Extended Line"]}},86905:e=>{e.exports={en:["Exchange"],cs:["Směnárna"]}},19271:e=>{e.exports={en:["Existing pane above"],cs:["Existing Pane Above"]}},46545:e=>{e.exports={en:["Existing pane below"],cs:["Existing Pane Below"]}},20138:e=>{e.exports={en:["Forecast"],cs:["Předpověď"]}},2507:e=>{e.exports={en:["Feb"],cs:["Únor"]}},59005:e=>{e.exports={en:["Fib Channel"],cs:["Fibonacciho kanál"]}},82330:e=>{e.exports={en:["Fib Circles"],cs:["Fibonacciho kruhy"]}},55986:e=>{e.exports={en:["Fib Retracement"],cs:["Fibonacciho Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],cs:["Oblouková rychlost Fibonacciho rezistence"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],cs:["Fibonacciho vějířová rychlost rezistence"]}},39014:e=>{e.exports={en:["Fib Spiral"],cs:["Fibonacciho spirála"]}},30622:e=>{e.exports={en:["Fib Time Zone"],cs:["Fibonacciho časové pásmo"]}},85042:e=>{e.exports={en:["Fib Wedge"],cs:["Fibonacciho klín"]}},33885:e=>{e.exports={en:["Flag"]}},14600:e=>{e.exports={en:["Flag Mark"],cs:["Značka vlajky"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],cs:["Plochý vršek / spodek"]}},39643:e=>{e.exports={en:["Fraction part is invalid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},886:e=>{e.exports={en:["HLC bars"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],cs:["Duté Svíčky"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],cs:["Horizontální linie"]}},25487:e=>{e.exports={en:["Horizontal Ray"],cs:["Horizontální paprsek"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],cs:["Skrýt"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={
|
||||
en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"],cs:["Hide Events on Chart"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"],cs:["Hide Marks On Bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"],cs:["Vysoká"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],cs:["Střední"]}},14285:e=>{e.exports={en:["Invalid Symbol"],cs:["Neplatný Symbol"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"],cs:["Invert Scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"],cs:["Vložit indikátor"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],cs:["Vnitřní vidle"]}},37913:e=>{e.exports={en:["Icon"],cs:["Ikona"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"],cs:["Leden"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"],cs:["Červenec"]}},429:e=>{e.exports={en:["Jun"],cs:["Červen"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"],cs:["Říjen"]}},16610:e=>{e.exports={en:["Open"],cs:["Otevřít"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],cs:["Nízká"]}},51077:e=>{e.exports={en:["Lock"],cs:["Zamknout"]}},79777:e=>{e.exports={en:["Lock/unlock"],cs:["Zamknout / Odemknout"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],cs:["Lock Price To Bar Ratio"]}},16170:e=>{
|
||||
e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"],cs:["Londýn"]}},74832:e=>{e.exports={en:["Long Position"],cs:["Koupit"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"],cs:["Popisky"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],cs:["Čára"]}},9394:e=>{e.exports={en:["Line with markers"],cs:["Se Značkami"]}},43588:e=>{e.exports={en:["Line break"],cs:["Line Break"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],cs:["Upravené Schiff Pitchfork"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"],cs:["Moskva"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],cs:["Březen"]}},73332:e=>{e.exports={en:["Mexico City"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],cs:["No Scale (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],cs:["Poznámka"]}},26899:e=>{e.exports={en:["Nov"],cs:["Listopad"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"]}},76266:e=>{e.exports={en:["Save as"],cs:["Uložit jako"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],cs:["Pouye Měřítko Ceny na Grafu"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],cs:["Schiffovy vidle"]}},76078:e=>{e.exports={
|
||||
en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],cs:["Nastavení"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],cs:["Přenést do pozadí"]}},71179:e=>{e.exports={en:["Send backward"],cs:["Posunout dozadu"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"],cs:["Září"]}},94031:e=>{e.exports={en:["Session"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],cs:["Přerušit relaci"]}},1852:e=>{e.exports={en:["Shanghai"],cs:["Šanghaj"]}},8075:e=>{e.exports={en:["Short Position"],cs:["Prodat"]}},98334:e=>{e.exports={en:["Show"],cs:["Zobrazit"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"],cs:["Show All Ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"],cs:["Show Dividends"]}},37113:e=>{e.exports={en:["Show earnings"],cs:["Show Earnings"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],cs:["Show Ideas of Followed Users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],cs:["Show My Ideas Only"]}},50849:e=>{e.exports={en:["Show splits"],cs:["Show Splits"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],cs:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"]}},66205:e=>{e.exports={en:["Square"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"],cs:["Styl"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],cs:["Zůstat v režimu kreslení"]}},69217:e=>{e.exports={en:["Step line"],cs:["Step Line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],cs:["Symbol Name Label"]}},10127:e=>{e.exports={en:["Symbol last price label"],cs:["Symbol Last Value Label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"],cs:["Sync To All Charts"]}},76519:e=>{e.exports={en:["Point & figure"],cs:["Point & Figure ( O X )"]}
|
||||
},39949:e=>{e.exports={en:["Polyline"],cs:["Křivka"]}},371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"],cs:["Paralelní Kanál"]}},61879:e=>{e.exports={en:["Paris"],cs:["Paříž"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],cs:["Vidle"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"],cs:["Cena"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"],cs:["Cenové rozpětí"]}},66123:e=>{e.exports={en:["Price format is invalid."]}},72926:e=>{e.exports={en:["Price line"],cs:["Hladina ceny"]}},59189:e=>{e.exports={en:["Primary"],cs:["Primární"]}},75747:e=>{e.exports={en:["Projection"],cs:["Promítání"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],cs:["Otočený obdélník"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"],cs:["Paprsek"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],cs:["Obdélník"]}},48236:e=>{e.exports={en:["Redo"],cs:["Opakovat"]}},2460:e=>{e.exports={en:["Regression Trend"],cs:["Regresní trend"]}},67410:e=>{e.exports={en:["Remove"],cs:["Odstranit"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={
|
||||
en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],cs:["Přejmenovat předlohy grafu"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],cs:["Reset Price Scale"]}},54170:e=>{e.exports={en:["Reset time scale"],cs:["Reset Time Scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"]}},5959:e=>{e.exports={en:["Warsaw"],cs:["Varšava"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],cs:["Tokio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],cs:["Teherán"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],cs:["The symbol available only on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"],cs:["Čas"]}},20909:e=>{e.exports={en:["Time zone"],cs:["Časové pásmo"]}},46852:e=>{e.exports={en:["Time Cycles"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"],cs:["Úhel trendu"]}},97339:e=>{e.exports={en:["Trend Line"],cs:["Trendová linie"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],cs:["Vývoj trhu založený na Fibonacciho rozšíření"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],cs:["Vývoj trhu založený na Fibonacciho období"]}
|
||||
},1671:e=>{e.exports={en:["Triangle"],cs:["Trojúhelník"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"],cs:["Trojúhelníkový model"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],cs:["Zpět"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"]}},99894:e=>{e.exports={en:["Unlock"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],cs:["Svislá linie"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],cs:["Visible on Mouse Over"]}},4077:e=>{e.exports={en:["Visual order"],cs:["Seřadit vizuálně"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],cs:["XABCD model"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={
|
||||
en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"],cs:["Change Resolution"]}},35400:e=>{e.exports={en:["change symbol"],cs:["Change symbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]
|
||||
}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],cs:["Hide Marks On Bars"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"],cs:["Invert Scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."],cs:["načítá se ..."]}},76104:e=>{e.exports={en:["lock {title}"]}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"],cs:["Pouye Měřítko Ceny na Grafu"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={
|
||||
en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"],cs:["Reset Time Scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"],cs:["Toggle Percentage Scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"],cs:["{count} Sloupcový graf"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={
|
||||
en:["Apple Inc"],cs:["APPLE INC"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],cs:["Australský Dolar/Kanadský Dolar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],cs:["Australský Dolar/Švýcarský Frank"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],cs:["Australský Dolar/Japonský Jen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],cs:["Australský Dolar/Japonský Jen"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],cs:["AUSTRALSKÝ DOLAR / RUSKÝ RUBL"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],cs:["Australský Dolar/Americký Dolar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],cs:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],cs:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],cs:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],cs:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],cs:["Brazilský Real / Japonský Jen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],cs:["Bitcoin / Kanadský Dolar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],cs:["Bitcoin / Čínský Jüan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],cs:["Bitcoin / Jihokorejský Won"]},e.exports["#BTCPLN-symbol-description"]={
|
||||
en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],cs:["Bitcoin / Dolar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],cs:["Kanadský Dolar/Japonský Jen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],cs:["Švýcarský Frank/Japonský Jen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},
|
||||
e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],cs:["Měď"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],cs:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],cs:["Euro Fx/Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],cs:["Euro Fx/Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={
|
||||
en:["Euro / Swiss Franc"],cs:["Euro Fx/Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],cs:["Euro Fx/British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],cs:["Euro Fx/Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],cs:["Euro Fx/New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],cs:["EURO / RUSSIAN RUBLE"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],cs:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],cs:["Euro Fx/Turkish New Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],cs:["Euro Fx/U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],cs:["Euro Stoxx 50 index of European listed shares"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],cs:["Britská Libra/Australský Dolar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],cs:["Britská Libra/Kanadský Dolar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],cs:["Britská Libra/Švýcarský Frank"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],cs:["POUND STERLING / EURO"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],cs:["Britská Libra/Japonský Jen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],cs:["Britská Libra/Novozélandský Dolar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],cs:["Britská Libra/Ruský Rubl"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],cs:["Britská Libra/Americký Dolar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],cs:["DAX index of German listed shares"]},e.exports["#GOOG-symbol-description"]={
|
||||
en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],cs:["GOOGLE INC"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],cs:["Nikkei 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],cs:["YEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],cs:["JEN / RUSKÝ RUBL"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],cs:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],cs:["NASDAQ 100 index of US listed shares"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={
|
||||
en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],cs:["Iteris Inc."]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],cs:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],cs:["ALIBABA GROUP HLDG LTD"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={
|
||||
en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],cs:["New Zealand Dollar/Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],cs:["New Zealand Dollar/U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],cs:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],cs:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],cs:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],cs:["S&P 500 index of US listed shares"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],cs:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]
|
||||
},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],cs:["U.S. Dollar Currency Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],cs:["India Government Bonds 10 yr"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],cs:["Italy Government Bonds 10 yr"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],cs:["NASDAQ Composite Index"]},
|
||||
e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],cs:["Japan Government Bonds 10 yr"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],cs:["NASDAQ 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],cs:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],cs:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],cs:["US Government Bonds 2 yr"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],cs:["US Government Bonds 5 yr"]},
|
||||
e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],cs:["US Government Bonds 10 yr"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],cs:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],cs:["Americký Dolar/Brazilský Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],cs:["Americký Dolar/Kanadský Dolar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],cs:["Americký Dolar/Švýcarský Frank"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],cs:["Americký Dolar/Yuan Renminbi"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],cs:["US DOLAR / DÁNSKÁ KORUNA"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],cs:["Americký Dolar/Hongkongský Dolar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],cs:["Americký Dolar / Rupie"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],cs:["Americký Dolar / Indická Rupie"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],cs:["Americký Dolar/Japonský Jen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],cs:["US DOLLAR / WON"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],cs:["Americký Dolar/Mexické Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],cs:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],cs:["US DOLLAR / RUSSIAN RUBLE"]},e.exports["#USDRUB_TOM-symbol-description"]={
|
||||
en:["U.S. Dollar / Russian Ruble TOM"],cs:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],cs:["U.S. Dollar/Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],cs:["US DOLLAR / SINGAPORE DOLLAR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],cs:["U.S. Dollar/Turkish New Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],cs:["Silver/U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],cs:["Zlato / Americký Dolar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],cs:["Platina/Americký Dolar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],cs:["Ripple / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],cs:["Ripple / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],cs:["Ripple / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
5
charting_library/bundles/cs.7458.068c610f8718bc62a766.js
Normal file
5
charting_library/bundles/cs.7458.068c610f8718bc62a766.js
Normal file
@@ -0,0 +1,5 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],cs:["(O+V+N+Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],cs:["(V+N+Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],cs:["(V+N)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],cs:["Barva svíček založená na základě předchozího uzavření ceny"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],cs:["Nitkový kříž"]}},81849:e=>{e.exports={en:["Currency"],cs:["Měna"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"],cs:["Upozornění"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],cs:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],cs:["Ohraničení"]}},79468:e=>{e.exports={en:["Background"],cs:["Pozadí"]}},10842:e=>{e.exports={en:["Bar change values"],cs:["Bar Change Values"]}},28975:e=>{e.exports={en:["Base level"],cs:["Base Level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"],cs:["Date Format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"],cs:["Standardní"]}},78734:e=>{e.exports={en:["Description"],cs:["Popis"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],cs:["Akce"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],cs:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],cs:["Fill Bottom Area"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],cs:["Indikátory"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"],
|
||||
cs:["No Overlapping Labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],cs:["Stupnice"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"],cs:["Procenta"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],cs:["Přesnost"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],cs:["Vodoznak"]}},32163:e=>{e.exports={en:["Wick"],cs:["Knot"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],cs:["Top Line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],cs:["Thin Bars"]}},70198:e=>{e.exports={en:["Title"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"],cs:["Časové pásmo"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"],cs:["Objem"]}},51514:e=>{e.exports={en:["Value"],cs:["Hodnota"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{
|
||||
e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{
|
||||
e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={
|
||||
en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"],cs:["Duté Svíčky"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],cs:["Renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],de:["#{count} (Preis, Bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],de:["Balken gemäß des vorherigen Schlusskurs färben"]}},78930:e=>{e.exports={en:["Coordinates"],de:["Koordinaten"]}},24197:e=>{e.exports={en:["Center"],de:["Zentrieren"]}},84831:e=>{e.exports={en:["Close line"],de:["Schlusskurslinie"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},27567:e=>{e.exports={en:["Bottom"],de:["Unten"]}},3159:e=>{e.exports={en:["Bottom line"],de:["Unterste Linie"]}},74406:e=>{e.exports={en:["Body"],de:["Körper"]}},333:e=>{e.exports={en:["Borders"],de:["Rahmen"]}},42398:e=>{e.exports={en:["Base"],de:["Basis"]}},28975:e=>{e.exports={en:["Base level"],de:["Grundwert"]}},71776:e=>{e.exports={en:["Down"],de:["Abwärts"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"],de:["Abwärts-Farbe"]}},48225:e=>{e.exports={en:["Data modification"],de:["Modifizierung der Daten"]}},72942:e=>{e.exports={en:["Days"],de:["Tage"]}},16564:e=>{e.exports={en:["Default"],de:["Standard"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],de:["Verschiebung (Preis, Balken)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],de:["Hintergrund der elektronischen Handelszeiten"]}},819:e=>{e.exports={en:["Extend lines"],de:["Linien verlängern"]}},41129:e=>{e.exports={en:["Fill"],de:["Füllen"]}},61112:e=>{e.exports={en:["Fill top area"],de:["Füllung oberer Bereich"]}},73185:e=>{e.exports={en:["Fill bottom area"],de:["Füllung unterer Bereich"]}},886:e=>{e.exports={en:["HLC bars"],de:["HLC-Balken"]}},56796:e=>{e.exports={en:["Hours"],de:["Stunden"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],de:["Höchstkurslinie"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],de:["Eingaben"]}},64075:e=>{e.exports={en:["Override min tick"],de:["Min Tick überschreiben"]}},34579:e=>{e.exports={en:["Low line"],de:["Tiefstkurslinie"]}},11626:e=>{e.exports={en:["Left"],de:["Links"]}},43154:e=>{e.exports={en:["Months"],de:["Monate"]}},68833:e=>{e.exports={en:["Middle"],de:["Mitte"]}},42562:e=>{e.exports={en:["Minutes"],de:["Minuten"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],de:["Hintergrund Vor-/Nachbörslich"]}},59766:e=>{e.exports={en:["Precision"],de:["Präzision"]}},84684:e=>{e.exports={en:["Price source"],de:["Preisquelle"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"],de:["Projektionsbalken"]}},88367:e=>{e.exports={
|
||||
en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],de:["Reale Preise auf der Preisskala (anstelle des Heikin-Ashi-Preises)"]}},50421:e=>{e.exports={en:["Right"],de:["Rechts"]}},835:e=>{e.exports={en:["Weeks"],de:["Wochen"]}},32163:e=>{e.exports={en:["Wick"],de:["Docht"]}},97118:e=>{e.exports={en:["Top"],de:["Oben"]}},89349:e=>{e.exports={en:["Top line"],de:["Oberste Linie"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],de:["Textausrichtung"]}},67781:e=>{e.exports={en:["Text orientation"],de:["Text Ausrichtung"]}},20215:e=>{e.exports={en:["Thin bars"],de:["Dünne Balken verwenden"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],de:["Zeitzone"]}},22691:e=>{e.exports={en:["Up"],de:["Aufwärts"]}},23091:e=>{e.exports={en:["Up color"],de:["Aufwärts-Farbe"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},69526:e=>{e.exports={en:["Vertical"],de:["Vertikal"]}},21105:e=>{e.exports={en:["candle"],de:["Kerze"]}},27068:e=>{e.exports={en:["change HLC bars"],de:["HLC-Balken ändern"]}},86866:e=>{e.exports={en:["change area fill color"],de:["Farbe der Flächenfüllung ändern"]}},89346:e=>{e.exports={en:["change area line width"],de:["Breite der Bereichslinie ändern"]}},29605:e=>{e.exports={en:["change area line color"],de:["Farbe der Bereichslinie ändern"]}},4640:e=>{e.exports={en:["change area price source"],de:["Bereich der Preisquelle ändern"]}},42190:e=>{e.exports={en:["change base level"],de:["Basiswert ändern"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],de:["Farbe der unteren Grundlinie ändern"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],de:["Grundlinienbreite der unteren Linie ändern"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],de:["Farbe der Basislinienfüllung im unteren Bereich ändern"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],de:["Farbe der Basislinienfüllung im oberen Bereich ändern"]}},68609:e=>{e.exports={en:["change baseline price source"],de:["Preisquelle der Grundlinie ändern"]}},69044:e=>{e.exports={en:["change baseline top line color"],de:["Farbe der oberen Zeile der Grundlinie ändern"]}},68197:e=>{e.exports={en:["change baseline top line width"],de:["Grundlinienbreite der oberen Linie ändern"]}},33464:e=>{e.exports={en:["change bar up color"],de:["Farbe der Bull-Candle ändern"]}},2066:e=>{e.exports={en:["change bar X coordinate"],de:["X-Koordinate des Balkens ändern"]}},59622:e=>{e.exports={en:["change bar down color"],de:["Farbe der Bear-Candle ändern"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],de:["Balken gemäß vorherigem Schlusskurs färben."]}},88324:e=>{e.exports={en:["change column up color"],de:["Farbe der Spalte oben ändern"]}},93890:e=>{e.exports={en:["change column down color"],de:["Farbe der Spalte unten ändern"]}},4727:e=>{e.exports={
|
||||
en:["change column price source"],de:["Spalte Preisquelle ändern"]}},82063:e=>{e.exports={en:["change decimal places"],de:["Dezimalstellen ändern"]}},44223:e=>{e.exports={en:["change extended hours color"],de:["Farbe der erweiterten Handelszeiten ändern"]}},47393:e=>{e.exports={en:["change electronic trading hours"],de:["Elektronische Handelszeiten ändern"]}},6026:e=>{e.exports={en:["change high-low body color"],de:["Farbe der Körper von Hochs/Tiefs ändern"]}},73021:e=>{e.exports={en:["change high-low body visibility"],de:["Sichtbarkeit der Körper von Hochs/Tiefs"]}},46844:e=>{e.exports={en:["change high-low border color"],de:["Randfarbe der Hochs/Tiefs ändern"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],de:["Sichtbarkeit des Rands von Hochs/Tiefs ändern"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],de:["Sichtbarkeit der Hoch/Tief-Labels ändern"]}},56961:e=>{e.exports={en:["change high-low labels color"],de:["Farbe der Hoch-Tief-Labels ändern"]}},88640:e=>{e.exports={en:["change line color"],de:["Linienfarbe ändern"]}},41837:e=>{e.exports={en:["change line price source"],de:["Ausgangspunkt der Preisline ändern"]}},48339:e=>{e.exports={en:["change line width"],de:["Linienbreite ändern"]}},38730:e=>{e.exports={en:["change post market color"],de:["Farbe des Post-Marktes ändern"]}},44371:e=>{e.exports={en:["change pre market color"],de:["Farbe des Pre-Markets ändern"]}},11737:e=>{e.exports={en:["change price Y coordinate"],de:["Y-Koordinate des Preises ändern"]}},16241:e=>{e.exports={en:["change range bars style"],de:["Stil der Reichweitenbalken ändern"]}},65821:e=>{e.exports={en:["change range thin bars"],de:["Bereich ändern auf dünne Balken"]}},75487:e=>{e.exports={en:["change renko wick down color"],de:["Farbe des Bear-Renko-Dochts ändern"]}},92277:e=>{e.exports={en:["change renko wick up color"],de:["Farbe des Bull-Renko-Dochts ändern"]}},79604:e=>{e.exports={en:["change renko wick visibility"],de:["Sichtbarkeit des Renko-Dochts ändern"]}},91109:e=>{e.exports={en:["change study overlay min tick"],de:["Overlay Studie in min tick ändern"]}},82924:e=>{e.exports={en:["change study overlay style"],de:["Overlay Stil ändern"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],de:["die Anzeige der realen Preise auf der Preisskala ändern (anstelle des Heiken-Ashi-Preises)"]}},60834:e=>{e.exports={en:["change thin bars"],de:["auf dünne Balken wechseln"]}},78509:e=>{e.exports={en:["change {title} base line color"],de:["{title} Farbe der Grundlinie ändern"]}},27864:e=>{e.exports={en:["change {title} base line style"],de:["{title} Stil der Grundlinie ändern"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],de:["{title} Sichtbarkeit der Grundlinie ändern"]}},17926:e=>{e.exports={en:["change {title} base line width"],de:["{title} Linienbreite der Grundlinie ändern"]}},41638:e=>{e.exports={en:["change {title} down line color"],de:["{title} Farbe der Abwärtslinie ändern"]}},51842:e=>{e.exports={
|
||||
en:["change {title} down line style"],de:["{title} Stil der Abwärtslinie ändern"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],de:["{title} Sichtbarkeit der Abwärtslinie ändern"]}},64615:e=>{e.exports={en:["change {title} down line width"],de:["{title} Breite der Abwärtslinie ändern"]}},96135:e=>{e.exports={en:["change {title} days to"],de:["ändere {title} von Tagen auf"]}},91201:e=>{e.exports={en:["change {title} days from"],de:["ändere {title} auf Tage von"]}},76295:e=>{e.exports={en:["change {title} extend lines"],de:["{title} Linienerweiterungen ändern"]}},8306:e=>{e.exports={en:["change {title} hours from"],de:["ändere {title} auf Stunden von"]}},67233:e=>{e.exports={en:["change {title} hours to"],de:["ändere {title} von Stunden auf"]}},99122:e=>{e.exports={en:["change {title} months from"],de:["ändere {title} auf Monate von"]}},10518:e=>{e.exports={en:["change {title} months to"],de:["ändere {title} von Monaten auf"]}},38011:e=>{e.exports={en:["change {title} minutes to"],de:["ändere {title} von Minuten auf"]}},59820:e=>{e.exports={en:["change {title} minutes from"],de:["ändere {title} auf Minuten von"]}},6573:e=>{e.exports={en:["change {title} seconds to"],de:["ändere {title} von Sekunden auf"]}},86780:e=>{e.exports={en:["change {title} seconds from"],de:["Sekunde von {title} ändern"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],de:["{title} Pearson's R anzeigen"]}},32481:e=>{e.exports={en:["change {title} weeks from"],de:["ändere {title} auf Wochen von"]}},18678:e=>{e.exports={en:["change {title} weeks to"],de:["ändere {title} von Wochen auf"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],de:["{title} Sichtbarkeit der Aufwärtslinie ändern"]}},63824:e=>{e.exports={en:["change {title} up line width"],de:["{title} Breite der Aufwärtslinie ändern"]}},89178:e=>{e.exports={en:["change {title} up line color"],de:["{title} Farbe der Aufwärtslinie ändern"]}},51188:e=>{e.exports={en:["change {title} up line style"],de:["{title} Stil der Aufwärtslinie ändern"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],de:["Sichtbarkeit von {title} in Ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],de:["Sichtbarkeit von {title} auf Wochen ändern"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],de:["{title} Sichtbarkeit auf {ranges} ändern"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],de:["Sichtbarkeit von {title} auf Tage ändern"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],de:["Sichtbarkeit von {title} auf Stunden ändern"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],de:["Sichtbarkeit von {title} auf Minuten ändern"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],de:["Sichtbarkeit von {title} auf Monate ändern"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],de:["Sichtbarkeit von {title} in Sekunden"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],de:["{candleType} obere Randfarbe ändern"]}},
|
||||
36697:e=>{e.exports={en:["change {candleType} up color"],de:["{candleType} Farbe für aufwärts ändern"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],de:["{candleType} Farbe des Abwärtsdochts ändern"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],de:["{candleType} Farbe des Aufwärtsdochts ändern"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],de:["{candleType} Sichtbarkeit der Dochte ändern"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],de:["Sichtbarkeit des {candleType} Körpers ändern"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],de:["{candleType} Sichtbarkeit des Rand ändern"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],de:["{candleType} untere Randfarbe ändern"]}},64571:e=>{e.exports={en:["change {candleType} down color"],de:["{candleType} Farbe für abwärts ändern"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],de:["{chartType} Farbe des Rand des Aufwärtsbalkens ändern"]}},5012:e=>{e.exports={en:["change {chartType} down color"],de:["{chartType} Farbe für Abwärts ändern"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],de:["{chartType} Farbe des Rands der Projektion des Abwärtsbalkens ändern"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],de:["{chartType} Farbe der Projektion des Aufwärtsbalkens ändern"]}},6970:e=>{e.exports={en:["change {chartType} up color"],de:["{chartType} Farbe für Aufwärts ändern"]}},66110:e=>{e.exports={en:["change {inputName} property"],de:["Eigenschaft von {inputName} ändern"]}},25167:e=>{e.exports={en:["change {propertyName} property"],de:["Eigenschaft {propertyName} ändern"]}},18077:e=>{e.exports={en:["adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},1433:e=>{e.exports={en:["adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},35813:e=>{e.exports={en:["days"],de:["Tage"]}},89919:e=>{e.exports={en:["days to"],de:["Tage bis"]}},59215:e=>{e.exports={en:["days from"],de:["Tage von"]}},2359:e=>{e.exports={en:["hours"],de:["Stunden"]}},82267:e=>{e.exports={en:["hours from"],de:["Stunden von"]}},15600:e=>{e.exports={en:["hours to"],de:["Stunden bis"]}},92598:e=>{e.exports={en:["hollow candles"],de:["Hollow Candles"]}},76261:e=>{e.exports={en:["move drawings"],de:["Zeichnungen verschieben"]}},95300:e=>{e.exports={en:["months"],de:["Monate"]}},17250:e=>{e.exports={en:["months from"],de:["Monate von"]}},2828:e=>{e.exports={en:["months to"],de:["Monate zu"]}},18726:e=>{e.exports={en:["minutes"],de:["Minuten"]}},67649:e=>{e.exports={en:["minutes to"],de:["Minuten bis"]}},22476:e=>{e.exports={en:["minutes from"],de:["Minuten von"]}},751:e=>{e.exports={en:["seconds"],
|
||||
de:["Sekunden"]}},73419:e=>{e.exports={en:["seconds to"],de:["Sekunden bis"]}},35801:e=>{e.exports={en:["seconds from"],de:["Sekunden von"]}},57243:e=>{e.exports={en:["range","ranges"],de:["Bereich","Bereiche"]}},70282:e=>{e.exports={en:["renko"],de:["Renko"]}},45537:e=>{e.exports={en:["weeks"],de:["Wochen"]}},92859:e=>{e.exports={en:["weeks from"],de:["Wochen von"]}},44127:e=>{e.exports={en:["weeks to"],de:["Wochen bis"]}},3539:e=>{e.exports={en:["ticks"],de:["Ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],de:["{value} Dezimale","{value} Dezimalen"]}}}]);
|
||||
6
charting_library/bundles/de.1341.1068954aa326300ef390.js
Normal file
6
charting_library/bundles/de.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],de:["#{count} (Preis, Bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],de:["Balken gemäß des vorherigen Schlusskurs färben"]}},78930:e=>{e.exports={en:["Coordinates"],de:["Koordinaten"]}},24197:e=>{e.exports={en:["Center"],de:["Zentrieren"]}},84831:e=>{e.exports={en:["Close line"],de:["Schlusskurslinie"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},27567:e=>{e.exports={en:["Bottom"],de:["Unten"]}},3159:e=>{e.exports={en:["Bottom line"],de:["Unterste Linie"]}},74406:e=>{e.exports={en:["Body"],de:["Körper"]}},333:e=>{e.exports={en:["Borders"],de:["Rahmen"]}},42398:e=>{e.exports={en:["Base"],de:["Basis"]}},28975:e=>{e.exports={en:["Base level"],de:["Grundwert"]}},71776:e=>{e.exports={en:["Down"],de:["Abwärts"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"],de:["Abwärts-Farbe"]}},48225:e=>{e.exports={en:["Data modification"],de:["Modifizierung der Daten"]}},72942:e=>{e.exports={en:["Days"],de:["Tage"]}},16564:e=>{e.exports={en:["Default"],de:["Standard"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],de:["Verschiebung (Preis, Balken)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],de:["Hintergrund der elektronischen Handelszeiten"]}},819:e=>{e.exports={en:["Extend lines"],de:["Linien verlängern"]}},41129:e=>{e.exports={en:["Fill"],de:["Füllen"]}},61112:e=>{e.exports={en:["Fill top area"],de:["Füllung oberer Bereich"]}},73185:e=>{e.exports={en:["Fill bottom area"],de:["Füllung unterer Bereich"]}},56796:e=>{e.exports={en:["Hours"],de:["Stunden"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],de:["Höchstkurslinie"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],de:["Eingaben"]}},64075:e=>{e.exports={en:["Override min tick"],de:["Min Tick überschreiben"]}},34579:e=>{e.exports={en:["Low line"],de:["Tiefstkurslinie"]}},11626:e=>{e.exports={en:["Left"],de:["Links"]}},43154:e=>{e.exports={en:["Months"],de:["Monate"]}},68833:e=>{e.exports={en:["Middle"],de:["Mitte"]}},42562:e=>{e.exports={en:["Minutes"],de:["Minuten"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],de:["Hintergrund Vor-/Nachbörslich"]}},59766:e=>{e.exports={en:["Precision"],de:["Präzision"]}},84684:e=>{e.exports={en:["Price source"],de:["Preisquelle"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"],de:["Projektionsbalken"]}},88367:e=>{
|
||||
e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],de:["Reale Preise auf der Preisskala (anstelle des Heikin-Ashi-Preises)"]}},50421:e=>{e.exports={en:["Right"],de:["Rechts"]}},835:e=>{e.exports={en:["Weeks"],de:["Wochen"]}},32163:e=>{e.exports={en:["Wick"],de:["Docht"]}},97118:e=>{e.exports={en:["Top"],de:["Oben"]}},89349:e=>{e.exports={en:["Top line"],de:["Oberste Linie"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],de:["Textausrichtung"]}},67781:e=>{e.exports={en:["Text orientation"],de:["Text Ausrichtung"]}},20215:e=>{e.exports={en:["Thin bars"],de:["Dünne Balken verwenden"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],de:["Zeitzone"]}},22691:e=>{e.exports={en:["Up"],de:["Aufwärts"]}},23091:e=>{e.exports={en:["Up color"],de:["Aufwärts-Farbe"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},69526:e=>{e.exports={en:["Vertical"],de:["Vertikal"]}},21105:e=>{e.exports={en:["candle"],de:["Kerze"]}},27068:e=>{e.exports={en:["change HLC bars"],de:["HLC-Balken ändern"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],de:["Farbe der Flächenfüllung ändern"]}},89346:e=>{e.exports={en:["change area line width"],de:["Breite der Bereichslinie ändern"]}},29605:e=>{e.exports={en:["change area line color"],de:["Farbe der Bereichslinie ändern"]}},4640:e=>{e.exports={en:["change area price source"],de:["Bereich der Preisquelle ändern"]}},42190:e=>{e.exports={en:["change base level"],de:["Basiswert ändern"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],de:["Farbe der unteren Grundlinie ändern"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],de:["Grundlinienbreite der unteren Linie ändern"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],de:["Farbe der Basislinienfüllung im unteren Bereich ändern"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],de:["Farbe der Basislinienfüllung im oberen Bereich ändern"]}},68609:e=>{e.exports={en:["change baseline price source"],de:["Preisquelle der Grundlinie ändern"]}},69044:e=>{e.exports={en:["change baseline top line color"],de:["Farbe der oberen Zeile der Grundlinie ändern"]}},68197:e=>{e.exports={en:["change baseline top line width"],de:["Grundlinienbreite der oberen Linie ändern"]}},33464:e=>{e.exports={en:["change bar up color"],de:["Farbe der Bull-Candle ändern"]}},2066:e=>{e.exports={en:["change bar X coordinate"],de:["X-Koordinate des Balkens ändern"]}},59622:e=>{e.exports={en:["change bar down color"],de:["Farbe der Bear-Candle ändern"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],de:["Balken gemäß vorherigem Schlusskurs färben."]}},88324:e=>{e.exports={en:["change column up color"],de:["Farbe der Spalte oben ändern"]}},93890:e=>{e.exports={en:["change column down color"],
|
||||
de:["Farbe der Spalte unten ändern"]}},4727:e=>{e.exports={en:["change column price source"],de:["Spalte Preisquelle ändern"]}},82063:e=>{e.exports={en:["change decimal places"],de:["Dezimalstellen ändern"]}},44223:e=>{e.exports={en:["change extended hours color"],de:["Farbe der erweiterten Handelszeiten ändern"]}},47393:e=>{e.exports={en:["change electronic trading hours"],de:["Elektronische Handelszeiten ändern"]}},6026:e=>{e.exports={en:["change high-low body color"],de:["Farbe der Körper von Hochs/Tiefs ändern"]}},73021:e=>{e.exports={en:["change high-low body visibility"],de:["Sichtbarkeit der Körper von Hochs/Tiefs"]}},46844:e=>{e.exports={en:["change high-low border color"],de:["Randfarbe der Hochs/Tiefs ändern"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],de:["Sichtbarkeit des Rands von Hochs/Tiefs ändern"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],de:["Sichtbarkeit der Hoch/Tief-Labels ändern"]}},56961:e=>{e.exports={en:["change high-low labels color"],de:["Farbe der Hoch-Tief-Labels ändern"]}},88640:e=>{e.exports={en:["change line color"],de:["Linienfarbe ändern"]}},41837:e=>{e.exports={en:["change line price source"],de:["Ausgangspunkt der Preisline ändern"]}},48339:e=>{e.exports={en:["change line width"],de:["Linienbreite ändern"]}},38730:e=>{e.exports={en:["change post market color"],de:["Farbe des Post-Marktes ändern"]}},44371:e=>{e.exports={en:["change pre market color"],de:["Farbe des Pre-Markets ändern"]}},11737:e=>{e.exports={en:["change price Y coordinate"],de:["Y-Koordinate des Preises ändern"]}},16241:e=>{e.exports={en:["change range bars style"],de:["Stil der Reichweitenbalken ändern"]}},65821:e=>{e.exports={en:["change range thin bars"],de:["Bereich ändern auf dünne Balken"]}},75487:e=>{e.exports={en:["change renko wick down color"],de:["Farbe des Bear-Renko-Dochts ändern"]}},92277:e=>{e.exports={en:["change renko wick up color"],de:["Farbe des Bull-Renko-Dochts ändern"]}},79604:e=>{e.exports={en:["change renko wick visibility"],de:["Sichtbarkeit des Renko-Dochts ändern"]}},91109:e=>{e.exports={en:["change study overlay min tick"],de:["Overlay Studie in min tick ändern"]}},82924:e=>{e.exports={en:["change study overlay style"],de:["Overlay Stil ändern"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],de:["die Anzeige der realen Preise auf der Preisskala ändern (anstelle des Heiken-Ashi-Preises)"]}},60834:e=>{e.exports={en:["change thin bars"],de:["auf dünne Balken wechseln"]}},78509:e=>{e.exports={en:["change {title} base line color"],de:["{title} Farbe der Grundlinie ändern"]}},27864:e=>{e.exports={en:["change {title} base line style"],de:["{title} Stil der Grundlinie ändern"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],de:["{title} Sichtbarkeit der Grundlinie ändern"]}},17926:e=>{e.exports={en:["change {title} base line width"],de:["{title} Linienbreite der Grundlinie ändern"]}},41638:e=>{e.exports={en:["change {title} down line color"],
|
||||
de:["{title} Farbe der Abwärtslinie ändern"]}},51842:e=>{e.exports={en:["change {title} down line style"],de:["{title} Stil der Abwärtslinie ändern"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],de:["{title} Sichtbarkeit der Abwärtslinie ändern"]}},64615:e=>{e.exports={en:["change {title} down line width"],de:["{title} Breite der Abwärtslinie ändern"]}},96135:e=>{e.exports={en:["change {title} days to"],de:["ändere {title} von Tagen auf"]}},91201:e=>{e.exports={en:["change {title} days from"],de:["ändere {title} auf Tage von"]}},76295:e=>{e.exports={en:["change {title} extend lines"],de:["{title} Linienerweiterungen ändern"]}},8306:e=>{e.exports={en:["change {title} hours from"],de:["ändere {title} auf Stunden von"]}},67233:e=>{e.exports={en:["change {title} hours to"],de:["ändere {title} von Stunden auf"]}},99122:e=>{e.exports={en:["change {title} months from"],de:["ändere {title} auf Monate von"]}},10518:e=>{e.exports={en:["change {title} months to"],de:["ändere {title} von Monaten auf"]}},38011:e=>{e.exports={en:["change {title} minutes to"],de:["ändere {title} von Minuten auf"]}},59820:e=>{e.exports={en:["change {title} minutes from"],de:["ändere {title} auf Minuten von"]}},6573:e=>{e.exports={en:["change {title} seconds to"],de:["ändere {title} von Sekunden auf"]}},86780:e=>{e.exports={en:["change {title} seconds from"],de:["Sekunde von {title} ändern"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],de:["{title} Pearson's R anzeigen"]}},32481:e=>{e.exports={en:["change {title} weeks from"],de:["ändere {title} auf Wochen von"]}},18678:e=>{e.exports={en:["change {title} weeks to"],de:["ändere {title} von Wochen auf"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],de:["{title} Sichtbarkeit der Aufwärtslinie ändern"]}},63824:e=>{e.exports={en:["change {title} up line width"],de:["{title} Breite der Aufwärtslinie ändern"]}},89178:e=>{e.exports={en:["change {title} up line color"],de:["{title} Farbe der Aufwärtslinie ändern"]}},51188:e=>{e.exports={en:["change {title} up line style"],de:["{title} Stil der Aufwärtslinie ändern"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],de:["Sichtbarkeit von {title} in Ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],de:["Sichtbarkeit von {title} auf Wochen ändern"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],de:["{title} Sichtbarkeit auf {ranges} ändern"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],de:["Sichtbarkeit von {title} auf Tage ändern"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],de:["Sichtbarkeit von {title} auf Stunden ändern"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],de:["Sichtbarkeit von {title} auf Minuten ändern"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],de:["Sichtbarkeit von {title} auf Monate ändern"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],de:["Sichtbarkeit von {title} in Sekunden"]}},17214:e=>{e.exports={
|
||||
en:["change {candleType} up border color"],de:["{candleType} obere Randfarbe ändern"]}},36697:e=>{e.exports={en:["change {candleType} up color"],de:["{candleType} Farbe für aufwärts ändern"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],de:["{candleType} Farbe des Abwärtsdochts ändern"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],de:["{candleType} Farbe des Aufwärtsdochts ändern"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],de:["{candleType} Sichtbarkeit der Dochte ändern"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],de:["Sichtbarkeit des {candleType} Körpers ändern"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],de:["{candleType} Sichtbarkeit des Rand ändern"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],de:["{candleType} untere Randfarbe ändern"]}},64571:e=>{e.exports={en:["change {candleType} down color"],de:["{candleType} Farbe für abwärts ändern"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],de:["{chartType} Farbe des Rand des Aufwärtsbalkens ändern"]}},5012:e=>{e.exports={en:["change {chartType} down color"],de:["{chartType} Farbe für Abwärts ändern"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],de:["{chartType} Farbe des Rands der Projektion des Abwärtsbalkens ändern"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],de:["{chartType} Farbe der Projektion des Aufwärtsbalkens ändern"]}},6970:e=>{e.exports={en:["change {chartType} up color"],de:["{chartType} Farbe für Aufwärts ändern"]}},66110:e=>{e.exports={en:["change {inputName} property"],de:["Eigenschaft von {inputName} ändern"]}},25167:e=>{e.exports={en:["change {propertyName} property"],de:["Eigenschaft {propertyName} ändern"]}},18077:e=>{e.exports={en:["adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},1433:e=>{e.exports={en:["adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},35813:e=>{e.exports={en:["days"],de:["Tage"]}},89919:e=>{e.exports={en:["days to"],de:["Tage bis"]}},59215:e=>{e.exports={en:["days from"],de:["Tage von"]}},2359:e=>{e.exports={en:["hours"],de:["Stunden"]}},82267:e=>{e.exports={en:["hours from"],de:["Stunden von"]}},15600:e=>{e.exports={en:["hours to"],de:["Stunden bis"]}},92598:e=>{e.exports={en:["hollow candles"],de:["Hollow Candles"]}},76261:e=>{e.exports={en:["move drawings"],de:["Zeichnungen verschieben"]}},95300:e=>{e.exports={en:["months"],de:["Monate"]}},17250:e=>{e.exports={en:["months from"],de:["Monate von"]}},2828:e=>{e.exports={en:["months to"],de:["Monate zu"]}},18726:e=>{e.exports={en:["minutes"],de:["Minuten"]}},67649:e=>{e.exports={en:["minutes to"],de:["Minuten bis"]}},22476:e=>{
|
||||
e.exports={en:["minutes from"],de:["Minuten von"]}},751:e=>{e.exports={en:["seconds"],de:["Sekunden"]}},73419:e=>{e.exports={en:["seconds to"],de:["Sekunden bis"]}},35801:e=>{e.exports={en:["seconds from"],de:["Sekunden von"]}},57243:e=>{e.exports={en:["range","ranges"],de:["Bereich","Bereiche"]}},70282:e=>{e.exports={en:["renko"],de:["Renko"]}},45537:e=>{e.exports={en:["weeks"],de:["Wochen"]}},92859:e=>{e.exports={en:["weeks from"],de:["Wochen von"]}},44127:e=>{e.exports={en:["weeks to"],de:["Wochen bis"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],de:["Ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],de:["{value} Dezimale","{value} Dezimalen"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],de:["Punkt"]}},41256:e=>{e.exports={en:["Back"],de:["Zurück"]}},53174:e=>{e.exports={en:["Right"],de:["Rechter"]}},57e3:e=>{e.exports={en:["Compare"],de:["Vergleichen"]}},93111:e=>{e.exports={en:["Content"],de:["Inhalt"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],de:["Link zum Chart-Bild kopieren"]}},4543:e=>{e.exports={en:["Cancel"],de:["Abbrechen"]}},59934:e=>{e.exports={en:["Channels"],de:["Kanäle"]}},63245:e=>{e.exports={en:["Change symbol"],de:["Symbol ändern"]}},56281:e=>{e.exports={en:["Chart style Columns"],de:["Chartstil Spalten"]}},64526:e=>{e.exports={en:["Chart style Candles"],de:["Chartstil Kerzen"]}},9537:e=>{e.exports={en:["Chart style Area"],de:["Chartstil Bereich"]}},19265:e=>{e.exports={en:["Chart style Bars"],de:["Chartstil Balken"]}},19579:e=>{e.exports={en:["Chart style Baseline"],de:["Chartstil Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"],de:["Chartstil Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],de:["Chartstil HLC-Bereich"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],de:["Chartstil hohle Kerzen"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],de:["Chartstil Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],de:["Chartstil Hoch-Tief"]}},92911:e=>{e.exports={en:["Chart style Line"],de:["Chartstil Linie"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],de:["Chartstil Linie mit Markierungen"]}},11604:e=>{e.exports={en:["Chart style Line break"],de:["Chartstil Line Break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],de:["Chartstil Session-Volumenprofil"]}},40447:e=>{e.exports={en:["Chart style Step line"],de:["Chartstil Step-Line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],de:["Chartstil Point & Figure"]}},49942:e=>{e.exports={en:["Chart style Range"],de:["Chartstil Range"]}},80082:e=>{e.exports={en:["Chart style Renko"],de:["Chartstil Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],de:["Chartstil Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],de:["Chartstil Volumenkerzen"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],de:["Chartstil Volumen-Fußabdruck"]}},53438:e=>{e.exports={en:["Chart template"],de:["Chartvorlage"]}},47742:e=>{e.exports={en:["Close menu"],de:["Menü schließen"]}},81578:e=>{e.exports={en:["Cursors"],de:["Mauszeiger"]}},77915:e=>{e.exports={en:["Cycles"],de:["Zyklen"]}},32064:e=>{e.exports={en:["Annotation tools"],de:["Text Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],de:["Zu Favoriten hinzufügen"]}},34040:e=>{e.exports={en:["All sources"],de:["Alle Quellen"]}},19147:e=>{e.exports={en:["Arrows"],de:["Pfeile"]}},42358:e=>{e.exports={en:["Bond"],de:["Anleihe"]}},65695:e=>{e.exports={en:["Brushes"],de:["Pinsel"]}},51494:e=>{e.exports={en:["Gann"],de:["Gann-Analysen"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],de:["Gann und Fibonacci Tools"]}},
|
||||
22145:e=>{e.exports={en:["Geometric shapes"],de:["Geometrische Formen"]}},57157:e=>{e.exports={en:["Dot"],de:["Punkt"]}},25848:e=>{e.exports={en:["Dark theme"],de:["Dunkles Thema"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],de:["Beschreibung"]}},74385:e=>{e.exports={en:["Drawings"],de:["Zeichnungen"]}},44255:e=>{e.exports={en:["Elliott waves"],de:["Elliott-Wellen"]}},8727:e=>{e.exports={en:["Eraser"],de:["Radierer"]}},93308:e=>{e.exports={en:["Extended session"],de:["Verlängerte Handelszeit"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],de:["Prognose-/ Messwerkzeuge"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],de:["Vollbildmodus"]}},83576:e=>{e.exports={en:["Function"],de:["Funktion"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],de:["{hotKey_0} für eine temporäre Zeichnung halten"]}},27077:e=>{e.exports={en:["Open Object Tree"],de:["Objektbaum öffnen"]}},7386:e=>{e.exports={en:["Open chart layout"],de:["Chart-Layout öffnen"]}},79451:e=>{e.exports={en:["Lock all drawings"],de:["Alle Zeichen-Tools fixieren"]}},35112:e=>{e.exports={en:["Move chart back"],de:["Chart nach hinten bewegen"]}},12754:e=>{e.exports={en:["Move chart forward"],de:["Chart nach vorne bewegen"]}},37117:e=>{e.exports={en:["More"],de:["Mehr"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],de:["Der Magnet-Modus zieht Zeichnungen, die in der Nähe von Preisbalken platziert sind, an den nächstgelegenen OHLC-Wert."]}},81031:e=>{e.exports={en:["Manage layout drawings"],de:["Zeichnungen des Layouts verwalten"]}},91563:e=>{e.exports={en:["Measure"],de:["Messen"]}},97050:e=>{e.exports={en:["Measurer"],de:["Vermesser"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],de:["Alle Skalen auf der linken Seite zusammenführen"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],de:["Alle Skalen nach rechts zusammenführen"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],de:["Keine Börsen entsprechen Ihren Kriterien"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],de:["Für Ihre Kriterien gibt es keine übereinstimmenden Symbole"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],de:["Nichts entspricht Ihren Kriterien"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],de:["Neue Zeichnungen werden in alle Charts im Layout repliziert und angezeigt wenn der gleiche Ticker ausgewählt ist."]}},3521:e=>{e.exports={en:["New drawings will sync globally"],de:["Neue Zeichnungen werden global synchronisiert"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],de:["Neue Zeichnungen werden im Layout synchronisiert"]}},28628:e=>{e.exports={en:["Sources"],de:["Quellen"]}},41569:e=>{e.exports={en:["Save chart layout"],de:["Chart-Layout speichern"]}},8573:e=>{e.exports={en:["Search"],de:["Suche"]}},79354:e=>{e.exports={
|
||||
en:["Search tool or function"],de:["Tool oder Funktion suchen"]}},57640:e=>{e.exports={en:["Select source"],de:["Quelle wählen"]}},65781:e=>{e.exports={en:["Shapes"],de:["Formen"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],de:["Versteckte Tools anzeigen"]}},85786:e=>{e.exports={en:["Show Object Tree"],de:["Objektbaum anzeigen"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],de:["Im Zeichenmodus bleiben"]}},94593:e=>{e.exports={en:["Strong Magnet"],de:["Starker Magnetmodus"]}},95481:e=>{e.exports={en:["Symbol"]}},74007:e=>{e.exports={en:["Symbol & description"],de:["Symbol & Beschreibung"]}},51165:e=>{e.exports={en:["Symbol Search"],de:["Symbol Suche"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],de:["Zeichen-Tools mit allen Charts synchronisieren"]}},46417:e=>{e.exports={en:["Patterns"],de:["Chartmuster"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"],de:["Preisline | Schlusskurs Vortag"]}},76753:e=>{e.exports={en:["Recent search"],de:["Letzte Suche"]}},28051:e=>{e.exports={en:["Regular session"],de:["Reguläre Handelszeit"]}},57118:e=>{e.exports={en:["Remove Drawings"],de:["Zeichnungen entfernen"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],de:["Alle Indikatoren und Zeichenwerkzeuge entfernen"]}},96374:e=>{e.exports={en:["Remove drawings"],de:["Zeichnungen entfernen"]}},85106:e=>{e.exports={en:["Remove from favorites"],de:["Aus Favoriten entfernen"]}},99984:e=>{e.exports={en:["Remove indicators"],de:["Indikatoren entfernen"]}},38206:e=>{e.exports={en:["Rename chart layout"],de:["Chart-Layout umbenennen"]}},31789:e=>{e.exports={en:["Reset chart"],de:["Chart zurücksetzen"]}},3519:e=>{e.exports={en:["Weak Magnet"],de:["Leichter Magnetmodus"]}},65831:e=>{e.exports={en:["Text & Notes"],de:["Text & Notizen"]}},48773:e=>{e.exports={en:["Trend line tools"],de:["Trendlinien Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],de:["Tippen Sie, um nach Zeichnungen, Funktionen und Einstellungen zu suchen"]}},69260:e=>{e.exports={en:["Volume-based"],de:["Volumenbezogen"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],de:["Sie ändern die Benutzeroberfläche zum {name} Thema. Möchten Sie auch das Thema der Chart-Vorlage ändern?"]}},55774:e=>{e.exports={en:["Zoom In"],de:["Vergrößern"]}},37310:e=>{e.exports={en:["Zoom Out"],de:["Verkleinern"]}},70932:e=>{e.exports={en:["commodity"],de:["Rohstoff"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],de:["Sichtbarkeit der Ideen auf dem Chart ändern"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],de:["Sichtbarkeit von Indikatoren- und Finanzdaten-Labels ändern"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],de:["Ändert die Sichtbarkeit des Labels für Werte der Indikatoren und Finanzkennzahlen"]}},91978:e=>{e.exports={
|
||||
en:["change pre/post market price lines visibility"],de:["Sichtbarkeit der Preislinie vorbörslich/nachbörslich ändern"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],de:["Wirtschaft"]}},17770:e=>{e.exports={en:["forex"],de:["Devisen"]}},4723:e=>{e.exports={en:["futures"],de:["Futures"]}},87464:e=>{e.exports={en:["index"],de:["Index"]}},90250:e=>{e.exports={en:["indices"],de:["Indizes"]}},76752:e=>{e.exports={en:["stock"],de:["Aktie"]}},94521:e=>{e.exports={en:["sync drawings"],de:["Zeichnungen synchronisieren"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],de:["{hotKey_0} + Klick auf das Chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],de:["{hotKey_0} — Kreis"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],de:["{hotKey_0} — Zeichnen einer geraden Linie im Winkel von 45°"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],de:["{hotKey_0} — feste Abstufungen"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],de:["{hotKey_0} — Quadrat"]}}}]);
|
||||
4
charting_library/bundles/de.4211.932ffa2dc04657916b72.js
Normal file
4
charting_library/bundles/de.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],de:["Punkt"]}},41256:e=>{e.exports={en:["Back"],de:["Zurück"]}},53174:e=>{e.exports={en:["Right"],de:["Rechter"]}},57e3:e=>{e.exports={en:["Compare"],de:["Vergleichen"]}},93111:e=>{e.exports={en:["Content"],de:["Inhalt"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],de:["Link zum Chart-Bild kopieren"]}},4543:e=>{e.exports={en:["Cancel"],de:["Abbrechen"]}},59934:e=>{e.exports={en:["Channels"],de:["Kanäle"]}},63245:e=>{e.exports={en:["Change symbol"],de:["Symbol ändern"]}},56281:e=>{e.exports={en:["Chart style Columns"],de:["Chartstil Spalten"]}},64526:e=>{e.exports={en:["Chart style Candles"],de:["Chartstil Kerzen"]}},9537:e=>{e.exports={en:["Chart style Area"],de:["Chartstil Bereich"]}},19265:e=>{e.exports={en:["Chart style Bars"],de:["Chartstil Balken"]}},19579:e=>{e.exports={en:["Chart style Baseline"],de:["Chartstil Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"],de:["Chartstil Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],de:["Chartstil HLC-Bereich"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],de:["Chartstil hohle Kerzen"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],de:["Chartstil Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],de:["Chartstil Hoch-Tief"]}},92911:e=>{e.exports={en:["Chart style Line"],de:["Chartstil Linie"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],de:["Chartstil Linie mit Markierungen"]}},11604:e=>{e.exports={en:["Chart style Line break"],de:["Chartstil Line Break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],de:["Chartstil Session-Volumenprofil"]}},40447:e=>{e.exports={en:["Chart style Step line"],de:["Chartstil Step-Line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],de:["Chartstil Point & Figure"]}},49942:e=>{e.exports={en:["Chart style Range"],de:["Chartstil Range"]}},80082:e=>{e.exports={en:["Chart style Renko"],de:["Chartstil Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],de:["Chartstil Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],de:["Chartstil Volumenkerzen"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],de:["Chartstil Volumen-Fußabdruck"]}},53438:e=>{e.exports={en:["Chart template"],de:["Chartvorlage"]}},47742:e=>{e.exports={en:["Close menu"],de:["Menü schließen"]}},81578:e=>{e.exports={en:["Cursors"],de:["Mauszeiger"]}},77915:e=>{e.exports={en:["Cycles"],de:["Zyklen"]}},32064:e=>{e.exports={en:["Annotation tools"],de:["Text Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],de:["Zu Favoriten hinzufügen"]}},34040:e=>{e.exports={en:["All sources"],de:["Alle Quellen"]}},19147:e=>{e.exports={en:["Arrows"],de:["Pfeile"]}},42358:e=>{e.exports={en:["Bond"],de:["Anleihe"]}},65695:e=>{e.exports={en:["Brushes"],de:["Pinsel"]}},51494:e=>{e.exports={en:["Gann"],de:["Gann-Analysen"]}},2654:e=>{e.exports={
|
||||
en:["Gann and Fibonacci tools"],de:["Gann und Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],de:["Geometrische Formen"]}},57157:e=>{e.exports={en:["Dot"],de:["Punkt"]}},25848:e=>{e.exports={en:["Dark theme"],de:["Dunkles Thema"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],de:["Beschreibung"]}},74385:e=>{e.exports={en:["Drawings"],de:["Zeichnungen"]}},44255:e=>{e.exports={en:["Elliott waves"],de:["Elliott-Wellen"]}},8727:e=>{e.exports={en:["Eraser"],de:["Radierer"]}},93308:e=>{e.exports={en:["Extended session"],de:["Verlängerte Handelszeit"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],de:["Prognose-/ Messwerkzeuge"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],de:["Vollbildmodus"]}},83576:e=>{e.exports={en:["Function"],de:["Funktion"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],de:["{hotKey_0} für eine temporäre Zeichnung halten"]}},27077:e=>{e.exports={en:["Open Object Tree"],de:["Objektbaum öffnen"]}},7386:e=>{e.exports={en:["Open chart layout"],de:["Chart-Layout öffnen"]}},79451:e=>{e.exports={en:["Lock all drawings"],de:["Alle Zeichen-Tools fixieren"]}},35112:e=>{e.exports={en:["Move chart back"],de:["Chart nach hinten bewegen"]}},12754:e=>{e.exports={en:["Move chart forward"],de:["Chart nach vorne bewegen"]}},37117:e=>{e.exports={en:["More"],de:["Mehr"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],de:["Der Magnet-Modus zieht Zeichnungen, die in der Nähe von Preisbalken platziert sind, an den nächstgelegenen OHLC-Wert."]}},81031:e=>{e.exports={en:["Manage layout drawings"],de:["Zeichnungen des Layouts verwalten"]}},91563:e=>{e.exports={en:["Measure"],de:["Messen"]}},97050:e=>{e.exports={en:["Measurer"],de:["Vermesser"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],de:["Alle Skalen auf der linken Seite zusammenführen"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],de:["Alle Skalen nach rechts zusammenführen"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],de:["Keine Börsen entsprechen Ihren Kriterien"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],de:["Für Ihre Kriterien gibt es keine übereinstimmenden Symbole"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],de:["Nichts entspricht Ihren Kriterien"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],de:["Neue Zeichnungen werden in alle Charts im Layout repliziert und angezeigt wenn der gleiche Ticker ausgewählt ist."]}},3521:e=>{e.exports={en:["New drawings will sync globally"],de:["Neue Zeichnungen werden global synchronisiert"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],de:["Neue Zeichnungen werden im Layout synchronisiert"]}},28628:e=>{e.exports={en:["Sources"],de:["Quellen"]}},41569:e=>{e.exports={en:["Save chart layout"],de:["Chart-Layout speichern"]}},
|
||||
8573:e=>{e.exports={en:["Search"],de:["Suche"]}},79354:e=>{e.exports={en:["Search tool or function"],de:["Tool oder Funktion suchen"]}},57640:e=>{e.exports={en:["Select source"],de:["Quelle wählen"]}},65781:e=>{e.exports={en:["Shapes"],de:["Formen"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],de:["Versteckte Tools anzeigen"]}},85786:e=>{e.exports={en:["Show Object Tree"],de:["Objektbaum anzeigen"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],de:["Im Zeichenmodus bleiben"]}},94593:e=>{e.exports={en:["Strong Magnet"],de:["Starker Magnetmodus"]}},95481:e=>{e.exports={en:["Symbol"]}},74007:e=>{e.exports={en:["Symbol & description"],de:["Symbol & Beschreibung"]}},51165:e=>{e.exports={en:["Symbol Search"],de:["Symbol Suche"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],de:["Zeichen-Tools mit allen Charts synchronisieren"]}},46417:e=>{e.exports={en:["Patterns"],de:["Chartmuster"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"],de:["Preisline | Schlusskurs Vortag"]}},76753:e=>{e.exports={en:["Recent search"],de:["Letzte Suche"]}},28051:e=>{e.exports={en:["Regular session"],de:["Reguläre Handelszeit"]}},57118:e=>{e.exports={en:["Remove Drawings"],de:["Zeichnungen entfernen"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],de:["Alle Indikatoren und Zeichenwerkzeuge entfernen"]}},96374:e=>{e.exports={en:["Remove drawings"],de:["Zeichnungen entfernen"]}},85106:e=>{e.exports={en:["Remove from favorites"],de:["Aus Favoriten entfernen"]}},99984:e=>{e.exports={en:["Remove indicators"],de:["Indikatoren entfernen"]}},38206:e=>{e.exports={en:["Rename chart layout"],de:["Chart-Layout umbenennen"]}},31789:e=>{e.exports={en:["Reset chart"],de:["Chart zurücksetzen"]}},3519:e=>{e.exports={en:["Weak Magnet"],de:["Leichter Magnetmodus"]}},65831:e=>{e.exports={en:["Text & Notes"],de:["Text & Notizen"]}},48773:e=>{e.exports={en:["Trend line tools"],de:["Trendlinien Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],de:["Tippen Sie, um nach Zeichnungen, Funktionen und Einstellungen zu suchen"]}},69260:e=>{e.exports={en:["Volume-based"],de:["Volumenbezogen"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],de:["Sie ändern die Benutzeroberfläche zum {name} Thema. Möchten Sie auch das Thema der Chart-Vorlage ändern?"]}},55774:e=>{e.exports={en:["Zoom In"],de:["Vergrößern"]}},37310:e=>{e.exports={en:["Zoom Out"],de:["Verkleinern"]}},70932:e=>{e.exports={en:["commodity"],de:["Rohstoff"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],de:["Sichtbarkeit der Ideen auf dem Chart ändern"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],de:["Sichtbarkeit von Indikatoren- und Finanzdaten-Labels ändern"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],
|
||||
de:["Ändert die Sichtbarkeit des Labels für Werte der Indikatoren und Finanzkennzahlen"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],de:["Sichtbarkeit der Preislinie vorbörslich/nachbörslich ändern"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],de:["Wirtschaft"]}},17770:e=>{e.exports={en:["forex"],de:["Devisen"]}},4723:e=>{e.exports={en:["futures"],de:["Futures"]}},87464:e=>{e.exports={en:["index"],de:["Index"]}},90250:e=>{e.exports={en:["indices"],de:["Indizes"]}},76752:e=>{e.exports={en:["stock"],de:["Aktie"]}},94521:e=>{e.exports={en:["sync drawings"],de:["Zeichnungen synchronisieren"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],de:["{hotKey_0} + Klick auf das Chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],de:["{hotKey_0} — Kreis"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],de:["{hotKey_0} — Zeichnen einer geraden Linie im Winkel von 45°"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],de:["{hotKey_0} — feste Abstufungen"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],de:["{hotKey_0} — Quadrat"]}}}]);
|
||||
@@ -1,7 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],de:["Balken"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"],de:["12-Stunden"]}},5797:e=>{e.exports={en:["24-hours"],de:["24-Stunden"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],de:["Balken gemäß des vorherigen Schlusskurs färben"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"],de:["Zentrieren"]}},15153:e=>{e.exports={en:["Chart basic styles"],de:["Grundtypen von Charts"]}},45639:e=>{e.exports={en:["Chart values"],de:["Chartwerte"]}},84831:e=>{e.exports={en:["Close line"],de:["Schlusskurslinie"]}},74622:e=>{e.exports={en:["Crosshair"],de:["Fadenkreuz"]}},81849:e=>{e.exports={en:["Currency"],de:["Währung"]}},3015:e=>{e.exports={en:["Currency and Unit"],de:["Währung und Einheit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},36620:e=>{e.exports={en:["Alerts"],de:["Alarme"]}},14119:e=>{e.exports={en:["Arguments"],de:["Argumente"]}},68650:e=>{e.exports={en:["Average close"],de:["Durchschnittlicher Schlusskurs"]}},27567:e=>{e.exports={en:["Bottom"],de:["Unten"]}},3159:e=>{e.exports={en:["Bottom line"],de:["Unterste Linie"]}},74406:e=>{e.exports={en:["Body"],de:["Körper"]}},333:e=>{e.exports={en:["Borders"],de:["Rahmen"]}},79468:e=>{e.exports={en:["Background"],de:["Hintergrund"]}},10842:e=>{e.exports={en:["Bar change values"],de:["Balken Änderungswerte"]}},28975:e=>{e.exports={en:["Base level"],de:["Grundwert"]}},76473:e=>{e.exports={en:["Bid and ask"],de:["Bid und Ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"],de:["Rasterlinien"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"],de:["Abwärts-Farbe"]}},48225:e=>{e.exports={en:["Data modification"],de:["Modifizierung der Daten"]}},84838:e=>{e.exports={en:["Date format"],de:["Datumsformat"]}},42357:e=>{e.exports={en:["Day of week on labels"],de:["Wochentag auf den Labels"]}},16564:e=>{e.exports={en:["Default"],de:["Standard"]}},78734:e=>{e.exports={en:["Description"],de:["Beschreibung"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],de:["Hintergrund der elektronischen Handelszeiten"]}},69808:e=>{e.exports={en:["Events"],de:["Ereignisse"]}},41129:e=>{e.exports={en:["Fill"],de:["Füllen"]}},61112:e=>{e.exports={en:["Fill top area"],de:["Füllung oberer Bereich"]}},73185:e=>{e.exports={en:["Fill bottom area"],de:["Füllung unterer Bereich"]}},886:e=>{e.exports={en:["HLC bars"],de:["HLC-Balken"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"],de:["Nur horiz."]}},14180:e=>{e.exports={en:["High and low"],de:["Hoch und Tief"]}},56359:e=>{e.exports={en:["High line"],de:["Höchstkurslinie"]}},47326:e=>{e.exports={
|
||||
en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],de:["Indikatoren"]}},78082:e=>{e.exports={en:["Indicators and financials"],de:["Indikatoren und Finanzdaten"]}},25765:e=>{e.exports={en:["Open market status"],de:["Markt-Öffnungs-Status anzeigen"]}},34579:e=>{e.exports={en:["Low line"],de:["Tiefstkurslinie"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],de:["Ausführliche Beschreibung"]}},72423:e=>{e.exports={en:["Last day change values"],de:["Werte von Veränderungen am letzten Handelstag"]}},11626:e=>{e.exports={en:["Left"],de:["Links"]}},8249:e=>{e.exports={en:["Money"],de:["Kapital"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"],de:["Mitte"]}},58589:e=>{e.exports={en:["No overlapping labels"],de:["Keine überlappenden Label"]}},60798:e=>{e.exports={en:["None"],de:["Keine"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],de:["Position des linken Chartrands bei einer Intervalländerung speichern"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],de:["Skalierungsmodus (A und L)"]}},93968:e=>{e.exports={en:["Scales"],de:["Skalierungen"]}},90275:e=>{e.exports={en:["Scales and lines"],de:["Skala und Linien"]}},30042:e=>{e.exports={en:["Scales placement"],de:["Skalen Platzierung"]}},28715:e=>{e.exports={en:["Status line"],de:["Status Zeile"]}},95481:e=>{e.exports={en:["Symbol"]}},53263:e=>{e.exports={en:["Pane"],de:["Bereich"]}},82894:e=>{e.exports={en:["Pane separators"],de:["Trennstreifen zwischen den Fenstern"]}},16207:e=>{e.exports={en:["Percentage"],de:["Prozentsatz"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],de:["Vor/nach der Hauptsitzung"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],de:["Hintergrund Vor-/Nachbörslich"]}},59766:e=>{e.exports={en:["Precision"],de:["Präzision"]}},83811:e=>{e.exports={en:["Previous day close"],de:["Schlusskurs Vortag"]}},35082:e=>{e.exports={en:["Price Scale"],de:["Preis-Skala"]}},27632:e=>{e.exports={en:["Price and percentage value"],de:["Preis und Prozentwert"]}},62142:e=>{e.exports={en:["Price labels & lines"],de:["Preis-Label & Linien"]}},84684:e=>{e.exports={en:["Price source"],de:["Preisquelle"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"],de:["Projektionsbalken"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],de:["Reale Preise auf der Preisskala (anstelle des Heikin-Ashi-Preises)"]}},50421:e=>{e.exports={en:["Right"],de:["Rechts"]}},62532:e=>{e.exports={en:["Right Margin"],de:["Rechter Seitenrand"]}},41571:e=>{e.exports={en:["Watermark"],de:["Wasserzeichen"]}},32163:e=>{e.exports={en:["Wick"],de:["Docht"]}},97118:e=>{e.exports={en:["Top"],de:["Oben"]}},89349:e=>{e.exports={en:["Top line"],de:["Oberste Linie"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],
|
||||
de:["Textausrichtung"]}},67781:e=>{e.exports={en:["Text orientation"],de:["Text Ausrichtung"]}},20215:e=>{e.exports={en:["Thin bars"],de:["Dünne Balken verwenden"]}},70198:e=>{e.exports={en:["Title"],de:["Titel"]}},29854:e=>{e.exports={en:["Titles"],de:["Titel"]}},5791:e=>{e.exports={en:["Ticker"],de:["Ticker, Name"]}},16816:e=>{e.exports={en:["Ticker and description"],de:["Ticker und Beschreibung"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"],de:["Zeit-Skala"]}},5591:e=>{e.exports={en:["Time hours format"],de:["Format der Uhrzeit"]}},77073:e=>{e.exports={en:["Timezone"],de:["Zeitzone"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],de:["Einheit"]}},23091:e=>{e.exports={en:["Up color"],de:["Aufwärts-Farbe"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},37644:e=>{e.exports={en:["Volume"],de:["Volumen"]}},51514:e=>{e.exports={en:["Value"],de:["Wert"]}},31218:e=>{e.exports={en:["Value according to scale"],de:["Wert laut Skala"]}},60092:e=>{e.exports={en:["Values"],de:["Werte"]}},83594:e=>{e.exports={en:["Vert and horz"],de:["Vert. und horiz."]}},8402:e=>{e.exports={en:["Vert only"],de:["Nur vert."]}},69526:e=>{e.exports={en:["Vertical"],de:["Vertikal"]}},21105:e=>{e.exports={en:["candle"],de:["Kerze"]}},27068:e=>{e.exports={en:["change HLC bars"],de:["HLC-Balken ändern"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],de:["Sichtbarkeit der Navigationsschaltflächen ändern"]}},96227:e=>{e.exports={en:["change open market status visibility"],de:["Sichtbarkeit des Marktstatus ändern"]}},43231:e=>{e.exports={en:["change average close price line width"],de:["Breite der durchschnittlichen Schlusskurslinie ändern"]}},47026:e=>{e.exports={en:["change average close price line color"],de:["Farbe der durchschnittlichen Schlusskurslinie ändern"]}},86866:e=>{e.exports={en:["change area fill color"],de:["Farbe der Flächenfüllung ändern"]}},89346:e=>{e.exports={en:["change area line width"],de:["Breite der Bereichslinie ändern"]}},29605:e=>{e.exports={en:["change area line color"],de:["Farbe der Bereichslinie ändern"]}},4640:e=>{e.exports={en:["change area price source"],de:["Bereich der Preisquelle ändern"]}},98407:e=>{e.exports={en:["change ask line color"],de:["Farbe der Ask-Linie ändern"]}},42190:e=>{e.exports={en:["change base level"],de:["Basiswert ändern"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],de:["Farbe der unteren Grundlinie ändern"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],de:["Grundlinienbreite der unteren Linie ändern"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],de:["Farbe der Basislinienfüllung im unteren Bereich ändern"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],de:["Farbe der Basislinienfüllung im oberen Bereich ändern"]}},68609:e=>{e.exports={en:["change baseline price source"],de:["Preisquelle der Grundlinie ändern"]}},
|
||||
69044:e=>{e.exports={en:["change baseline top line color"],de:["Farbe der oberen Zeile der Grundlinie ändern"]}},68197:e=>{e.exports={en:["change baseline top line width"],de:["Grundlinienbreite der oberen Linie ändern"]}},33464:e=>{e.exports={en:["change bar up color"],de:["Farbe der Bull-Candle ändern"]}},27426:e=>{e.exports={en:["change bar change visibility"],de:["Sichtbarkeit des Countdowns bei Balkenschluss ändern"]}},59622:e=>{e.exports={en:["change bar down color"],de:["Farbe der Bear-Candle ändern"]}},17919:e=>{e.exports={en:["change bid line color"],de:["Farbe der Bid-Linie ändern"]}},32094:e=>{e.exports={en:["change bottom margin"],de:["unteren Rand ändern"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],de:["Sichtbarkeit von Währungs- und Einheitenbeschriftungen ändern"]}},64003:e=>{e.exports={en:["change currency label visibility"],de:["Sichtbarkeit des Währungslabels ändern"]}},42803:e=>{e.exports={en:["change chart background color"],de:["Hintergrundfarbe der Chart ändern"]}},41382:e=>{e.exports={en:["change chart background type"],de:["Chart-Hintergrundtyp ändern"]}},79637:e=>{e.exports={en:["change chart values visibility"],de:["Sichtbarkeit der Chartwerte ändern"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],de:["Balken gemäß vorherigem Schlusskurs färben."]}},88324:e=>{e.exports={en:["change column up color"],de:["Farbe der Spalte oben ändern"]}},93890:e=>{e.exports={en:["change column down color"],de:["Farbe der Spalte unten ändern"]}},4727:e=>{e.exports={en:["change column price source"],de:["Spalte Preisquelle ändern"]}},50544:e=>{e.exports={en:["change crosshair width"],de:["Fadenkreuzbreite ändern"]}},92885:e=>{e.exports={en:["change crosshair color"],de:["Farbe des Fadenkreuzes ändern"]}},68418:e=>{e.exports={en:["change crosshair style"],de:["Fadenkreuzstil ändern"]}},43109:e=>{e.exports={en:["change date format"],de:["Datumsformat ändern"]}},30418:e=>{e.exports={en:["change day of week on labels"],de:["Wochentag auf den Labels ändern"]}},82063:e=>{e.exports={en:["change decimal places"],de:["Dezimalstellen ändern"]}},44223:e=>{e.exports={en:["change extended hours color"],de:["Farbe der erweiterten Handelszeiten ändern"]}},47393:e=>{e.exports={en:["change electronic trading hours"],de:["Elektronische Handelszeiten ändern"]}},73844:e=>{e.exports={en:["change grid lines visibility"],de:["Sichtbarkeit der Rasterlinien ändern"]}},61407:e=>{e.exports={en:["change high and low price line color"],de:["Farbe der Hoch- und Tiefstpreislinien ändern"]}},39581:e=>{e.exports={en:["change high and low price line width"],de:["Breite der Hoch- und Tiefstpreislinien ändern"]}},6026:e=>{e.exports={en:["change high-low body color"],de:["Farbe der Körper von Hochs/Tiefs ändern"]}},73021:e=>{e.exports={en:["change high-low body visibility"],de:["Sichtbarkeit der Körper von Hochs/Tiefs"]}},46844:e=>{e.exports={en:["change high-low border color"],de:["Randfarbe der Hochs/Tiefs ändern"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],
|
||||
de:["Sichtbarkeit des Rands von Hochs/Tiefs ändern"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],de:["Sichtbarkeit der Hoch/Tief-Labels ändern"]}},56961:e=>{e.exports={en:["change high-low labels color"],de:["Farbe der Hoch-Tief-Labels ändern"]}},21133:e=>{e.exports={en:["change horz grid lines color"],de:["Farbe der horizontalen Gitterlinien ändern"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],de:["Sichtbarkeit der Indikatortitel ändern"]}},49583:e=>{e.exports={en:["change indicator values visibility"],de:["Sichtbarkeit der Indikatorwerte ändern"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],de:["Sichtbarkeit der Indikatorargumente ändern"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],de:["Sichtbarkeit von Indikatoren- und Finanzdaten-Labels ändern"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],de:["Ändert die Sichtbarkeit des Labels für Werte der Indikatoren und Finanzkennzahlen"]}},66307:e=>{e.exports={en:["change last day change visibility"],de:["Sichtbarkeit von Veränderung am letzten Handelstag ändern"]}},91873:e=>{e.exports={en:["change legend background transparency"],de:["Hintergrundtransparenz der Legende ändern"]}},14246:e=>{e.exports={en:["change legend background visibility"],de:["Hintergrundsichtbarkeit der Legende ändern"]}},88640:e=>{e.exports={en:["change line color"],de:["Linienfarbe ändern"]}},41837:e=>{e.exports={en:["change line price source"],de:["Ausgangspunkt der Preisline ändern"]}},48339:e=>{e.exports={en:["change line width"],de:["Linienbreite ändern"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],de:["Sichtbarkeit der Schaltflächen des Fensters ändern"]}},52203:e=>{e.exports={en:["change pane separators color"],de:["Farbe der Trennstreifen im Fenster ändern"]}},38730:e=>{e.exports={en:["change post market color"],de:["Farbe des Post-Marktes ändern"]}},28075:e=>{e.exports={en:["change post market line color"],de:["Farbe der Post-Market-Linie ändern"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],de:["Sichtbarkeit der Preislinie vorbörslich/nachbörslich ändern"]}},44371:e=>{e.exports={en:["change pre market color"],de:["Farbe des Pre-Markets ändern"]}},96114:e=>{e.exports={en:["change pre market line color"],de:["Farbe der Pre-Market-Linie ändern"]}},69814:e=>{e.exports={en:["change previous close price line color"],de:["Farbe der Linie des vorherigen Schlusskurses ändern"]}},13660:e=>{e.exports={en:["change previous close price line width"],de:["Linienbreite des vorherigen Schlusskurses ändern"]}},87861:e=>{e.exports={en:["change price line color"],de:["Farbe der Preislinie ändern"]}},29353:e=>{e.exports={en:["change price line width"],de:["Preislinienbreite ändern"]}},16241:e=>{e.exports={en:["change range bars style"],de:["Stil der Reichweitenbalken ändern"]}},65821:e=>{e.exports={en:["change range thin bars"],de:["Bereich ändern auf dünne Balken"]}},75487:e=>{e.exports={
|
||||
en:["change renko wick down color"],de:["Farbe des Bear-Renko-Dochts ändern"]}},92277:e=>{e.exports={en:["change renko wick up color"],de:["Farbe des Bull-Renko-Dochts ändern"]}},79604:e=>{e.exports={en:["change renko wick visibility"],de:["Sichtbarkeit des Renko-Dochts ändern"]}},82946:e=>{e.exports={en:["change right margin"],de:["unteren Rand ändern"]}},79545:e=>{e.exports={en:["change right margin percentage"],de:["Prozentsatz des rechten Seitenrands ändern"]}},78995:e=>{e.exports={en:["change symbol watermark color"],de:["Farbe des Symbol-Wasserzeichens ändern"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],de:["Sichtbarkeit des Symbolwasserzeichens ändern"]}},88167:e=>{e.exports={en:["change symbol description visibility"],de:["Sichtbarkeit der Symbolbeschreibung ändern"]}},12050:e=>{e.exports={en:["change symbol field visibility"],de:["Die Sichtbarkeit des Symbolfelds verändern"]}},46066:e=>{e.exports={en:["change symbol last value mode"],de:["Anzeigemodus des letzten Wertes ändern"]}},902:e=>{e.exports={en:["change symbol legend format"],de:["Format der Symbollegende ändern"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],de:["Ändern: Position des linken Chartrands bei einer Intervalländerung speichern"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],de:["die Sichtbarkeit der Buttons für Skalierungsmodus ändern"]}},76131:e=>{e.exports={en:["change scales text color"],de:["Textfarbe der Skalen ändern"]}},27792:e=>{e.exports={en:["change scales font size"],de:["Schriftgröße der Skalen ändern"]}},94997:e=>{e.exports={en:["change scales lines color"],de:["Farbe der Skalenlinien ändern"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],de:["Sichtbarkeit der Session-Übergänge ändern"]}},28175:e=>{e.exports={en:["change sessions breaks width"],de:["Linienbreite der Sitzungs-Übergänge ändern"]}},33895:e=>{e.exports={en:["change sessions breaks color"],de:["Farbe der Sitzungs-Übergänge ändern"]}},21641:e=>{e.exports={en:["change sessions breaks style"],de:["Stil der Session-Übergänge ändern"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],de:["die Anzeige der realen Preise auf der Preisskala ändern (anstelle des Heiken-Ashi-Preises)"]}},60834:e=>{e.exports={en:["change thin bars"],de:["auf dünne Balken wechseln"]}},39754:e=>{e.exports={en:["change time hours format"],de:["Format der Uhrzeit ändern"]}},74883:e=>{e.exports={en:["change top margin"],de:["oberen Rand ändern"]}},51250:e=>{e.exports={en:["change unit label visibility"],de:["Sichtbarkeit des Einheitenlabels ändern"]}},71805:e=>{e.exports={en:["change vert grid lines color"],de:["Farbe der vertikalen Gitterlinien ändern"]}},96201:e=>{e.exports={en:["change volume values visibility"],de:["Sichtbarkeit der Volumenwerte ändern"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],de:["{candleType} obere Randfarbe ändern"]}},36697:e=>{e.exports={en:["change {candleType} up color"],
|
||||
de:["{candleType} Farbe für aufwärts ändern"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],de:["{candleType} Farbe des Abwärtsdochts ändern"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],de:["{candleType} Farbe des Aufwärtsdochts ändern"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],de:["{candleType} Sichtbarkeit der Dochte ändern"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],de:["Sichtbarkeit des {candleType} Körpers ändern"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],de:["{candleType} Sichtbarkeit des Rand ändern"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],de:["{candleType} untere Randfarbe ändern"]}},64571:e=>{e.exports={en:["change {candleType} down color"],de:["{candleType} Farbe für abwärts ändern"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],de:["{chartType} Farbe des Rand des Aufwärtsbalkens ändern"]}},5012:e=>{e.exports={en:["change {chartType} down color"],de:["{chartType} Farbe für Abwärts ändern"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],de:["{chartType} Farbe des Rands der Projektion des Abwärtsbalkens ändern"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],de:["{chartType} Farbe der Projektion des Aufwärtsbalkens ändern"]}},6970:e=>{e.exports={en:["change {chartType} up color"],de:["{chartType} Farbe für Aufwärts ändern"]}},66110:e=>{e.exports={en:["change {inputName} property"],de:["Eigenschaft von {inputName} ändern"]}},18077:e=>{e.exports={en:["adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},1433:e=>{e.exports={en:["adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},92598:e=>{e.exports={en:["hollow candles"],de:["Hollow Candles"]}},57243:e=>{e.exports={en:["range","ranges"],de:["Bereich","Bereiche"]}},70282:e=>{e.exports={en:["renko"],de:["Renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],de:["{value} Dezimale","{value} Dezimalen"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],de:["Dunkel"]}},96870:e=>{e.exports={en:["Light"],de:["Hell"]}},85886:e=>{e.exports={en:["d"],de:["t"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],de:["{title} Kopieren"]}},38691:e=>{e.exports={en:["D"],de:["T"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"],de:["Std."]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],de:["-0.236 Level Farbe"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],de:["-0.382 Level Farbe"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],de:["-0.618 Level Farbe"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],de:["-0.65 Level Farbe"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],de:["0 Level Farbe"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],de:["0.236 Level Farbe"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],de:["0.382 Level Farbe"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],de:["0.5 Level Farbe"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],de:["0.618 Level Farbe"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],de:["0.65 Level Farbe"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],de:["0.786 Level Farbe"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],de:["1 Level Farbe"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],de:["1.272 Level Farbe"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],de:["1.414 Level Farbe"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],de:["1.618 Level Farbe"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],de:["1.65 Level Farbe"]},e.exports["1st Period_input"]={en:["1st Period"],de:["Erste Periode"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],de:["2.618 Level Farbe"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],de:["2.65 Level Farbe"]},e.exports["2nd Period_input"]={en:["2nd Period"],de:["2te Periode"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],de:["3.618 Level Farbe"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],de:["3.65 Level Farbe"]},e.exports["3rd Period_input"]={en:["3rd Period"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],de:["Dunkel"]}},96870:e=>{e.exports={en:["Light"],de:["Hell"]}},85886:e=>{e.exports={en:["d"],de:["t"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],de:["{title} Kopieren"]}},38691:e=>{e.exports={en:["D"],de:["T"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"],de:["Std."]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],de:["-0.236 Level Farbe"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],de:["-0.382 Level Farbe"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],de:["-0.618 Level Farbe"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],de:["-0.65 Level Farbe"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],de:["0 Level Farbe"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],de:["0.236 Level Farbe"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],de:["0.382 Level Farbe"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],de:["0.5 Level Farbe"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],de:["0.618 Level Farbe"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],de:["0.65 Level Farbe"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],de:["0.786 Level Farbe"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],de:["1 Level Farbe"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],de:["1.272 Level Farbe"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],de:["1.414 Level Farbe"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],de:["1.618 Level Farbe"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],de:["1.65 Level Farbe"]},e.exports["1st Period_input"]={en:["1st Period"],de:["Erste Periode"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],de:["2.618 Level Farbe"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],de:["2.65 Level Farbe"]},e.exports["2nd Period_input"]={en:["2nd Period"],de:["2te Periode"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],de:["3.618 Level Farbe"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],de:["3.65 Level Farbe"]},e.exports["3rd Period_input"]={en:["3rd Period"],
|
||||
de:["3te Periode"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],de:["4.236 Level Farbe"]},e.exports["4th Period_input"]={en:["4th Period"],de:["4te Periode"]},e.exports["5th Period_input"]={en:["5th Period"],de:["5te Periode"]},e.exports["6th Period_input"]={en:["6th Period"],de:["6te Periode"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],de:["ADX Glättung"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],de:["ADX Glättung"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"],de:["ATR-Länge"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],de:["Akkumulation/Distribution"]},e.exports["All items_combobox_input"]={en:["All items"],de:["Alle Objekte"]},e.exports.All_input={en:["All"],de:["Alle"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],de:["Verankerungszeitraum"]},e.exports["Another symbol_input"]={en:["Another symbol"],de:["Weiteres Symbol"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"],de:["Durchschnitt"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],de:["Durchschnittsperioden"]},e.exports.Back_input={en:["Back"],de:["Zurück"]},e.exports["Bands style_input"]={en:["Bands style"],de:["Bänder-Stil"]},e.exports.Bar_input={en:["Bar"],de:["Balken"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"]},e.exports["Base Line_input"]={en:["Base Line"],de:["Grundlinie"]},e.exports.Basis_input={en:["Basis"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],de:["Bollinger Bands-Breite"]},e.exports.Borders_input={en:["Borders"],de:["Rahmen"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],de:["Zuweisungsmethode der Boxgrösse"]},e.exports["Box size_input"]={en:["Box size"],de:["Boxgröße"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"]},e.exports.Candles_input={en:["Candles"],de:["Kerzen"]},e.exports.Centered_input={en:["Centered"],de:["Zentriert"]},e.exports.Century_input={en:["Century"],de:["Jahrhundert"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],de:["Chaikin-Oszillator"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"]},e.exports["Color 0_input"]={en:["Color 0"],de:["Farbe 0"]},e.exports["Color 1_input"]={en:["Color 1"],de:["Farbe 1"]},e.exports["Color 2_input"]={en:["Color 2"],de:["Farbe 2"]},e.exports["Color 3_input"]={en:["Color 3"],de:["Farbe 3"]},e.exports["Color 4_input"]={en:["Color 4"],de:["Farbe 4"]},e.exports["Color 5_input"]={en:["Color 5"],de:["Farbe 5"]},e.exports["Color 6_input"]={en:["Color 6"],de:["Farbe 6"]},e.exports["Color 7_input"]={en:["Color 7"],de:["Farbe 7"]},
|
||||
e.exports["Color 8_input"]={en:["Color 8"],de:["Farbe 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],de:["Balken gemäß dem vorherigen Schließungspreis färben"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],de:["Farben basierend auf vorherigem Schlusskurs"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],de:["Conversion Line Perioden"]},e.exports["Conversion Line_input"]={en:["Conversion Line"]},e.exports.Correlation_input={en:["Correlation"],de:["Korrelation"]},e.exports.Count_input={en:["Count"],de:["Anzahl"]},e.exports.Crosses_input={en:["Crosses"],de:["Kreuzt"]},e.exports.Custom_input={en:["Custom"],de:["Benutzerdefiniert"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],de:["DI-Länge"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],de:["Tage"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],de:["Tage pro Jahr"]},e.exports.Decade_input={en:["Decade"],de:["Jahrzehnt"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"],de:["Tiefe"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"],de:["Detrended Price-Oszillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],de:["Entwicklung des Poc"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],de:["Abweichung (%)"]},e.exports.Deviation_input={en:["Deviation"],de:["Abweichung"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"],de:["Abwärts-Volumen"]},e.exports["Down bars_input"]={en:["Down bars"],de:["Down-Balken"]},e.exports["Down color_input"]={en:["Down color"],de:["Down-Farbe"]},e.exports["Down fractals_input"]={en:["Down fractals"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],de:["Jede (Vorbörslich, Hauptsitzung, Nachbörslich)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],de:["Elder's Force-Index"]},e.exports["Equality Line_input"]={en:["Equality Line"],de:["Gleichheitslinie"]},e.exports.Exponential_input={en:["Exponential"],de:["Exponentiell"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"]},e.exports["Extend Right_input"]={en:["Extend Right"],de:["Nach rechts erweitern"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],de:["VAH nach rechts erweitern"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],de:["VAL nach rechts erweitern"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"],de:["Erweitern bis zur letzten Bar"]},e.exports.Falling_input={en:["Falling"],de:["Fallend"]},e.exports["Fast Length_input"]={en:["Fast Length"],de:["Schnelle Periode"]},e.exports["Fast length_input"]={en:["Fast length"]},e.exports.Fill_input={en:["Fill"],de:["Füllen"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],de:["Steigend"]},e.exports["HLC bars_input"]={
|
||||
en:["HLC bars"],de:["HLC-Balken"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],de:["Histogram-Box"]},e.exports.Histogram_input={en:["Histogram"],de:["Histogramm"]},e.exports["Hull MA_input"]={en:["Hull MA"]},e.exports.Increment_input={en:["Increment"],de:["Schrittweite"]},e.exports.Indicator_input={en:["Indicator"],de:["Indikator"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],de:["Investor EMA 1 Länge"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],de:["Investor EMA 2 Länge"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],de:["Investor EMA 3 Länge"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],de:["Investor EMA 4 Länge"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],de:["Investor EMA 5 Länge"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],de:["Investor EMA 6 Länge"]},e.exports["Jaw Length_input"]={en:["Jaw Length"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],de:["Label Position"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],de:["Labels auf der Preisskala"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],de:["Lagging-Span-Perioden"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],de:["Die führenden Übergangsperioden"]},e.exports["Leading Span A_input"]={en:["Leading Span A"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],de:["Leading Span B"]},e.exports["Length EMA_input"]={en:["Length EMA"],de:["Länge EMA"]},e.exports["Length MA_input"]={en:["Length MA"],de:["Länge MA"]},e.exports.Length1_input={en:["Length1"]},e.exports.Length2_input={en:["Length2"]},e.exports.Length3_input={en:["Length3"]},e.exports.Length_input={en:["Length"],de:["Länge"]},e.exports.Level_input={en:["Level"]},e.exports["Levels Format_input"]={en:["Levels Format"],de:["Level Format"]},e.exports.Limit_input={en:["Limit"]},e.exports.Line_input={en:["Line"],de:["Linie"]},e.exports["Lips Length_input"]={en:["Lips Length"]},e.exports["Lips Offset_input"]={en:["Lips Offset"]},e.exports.Lips_input={en:["Lips"]},e.exports["Long Length_input"]={en:["Long Length"]},e.exports["Long RoC Length_input"]={en:["Long RoC Length"]},e.exports["Long length_input"]={en:["Long length"]},e.exports["Long period_input"]={en:["Long period"],de:["Long Periode"]},e.exports.Long_input={en:["Long"]},e.exports["Lower Band_input"]={en:["Lower Band"],de:["Unteres Band"]},e.exports["Lower Deviation_input"]={en:["Lower Deviation"],de:["Untere Abweichung"]},e.exports["Lower Percentage_input"]={en:["Lower Percentage"],
|
||||
@@ -27,30 +27,30 @@ en:["Volatility Index"]},e.exports["Volatility O-H-L-C_study"]={en:["Volatility
|
||||
70409:e=>{e.exports={en:["Casablanca"]}},37276:e=>{e.exports={en:["Change"],de:["Veränderung"]}},85124:e=>{e.exports={en:["Change Symbol"],de:["Symbol ändern"]}},2569:e=>{e.exports={en:["Change interval"],de:["Intervall ändern"]}},9687:e=>{e.exports={en:["Change interval. Press number or comma"],de:["Intervalländerung. Nummer oder Komma drücken"]}},36332:e=>{e.exports={en:["Change symbol. Start typing symbol name"],de:["Symbol ändern. Geben Sie den Symbolnamen ein"]}},48566:e=>{e.exports={en:["Change scale currency"],de:["Währungsskalierung ändern"]}},85110:e=>{e.exports={en:["Change scale unit"],de:["Maßeinheit ändern"]}},56275:e=>{e.exports={en:["Chart #{index}"]}},39950:e=>{e.exports={en:["Chart Properties"],de:["Chart Einstellungen"]}},98856:e=>{e.exports={en:["Chart by TradingView"],de:["Chart von TradingView"]}},1136:e=>{e.exports={en:["Chart for {symbol}, {interval}"],de:["Chart für {symbol}, {interval}"]}},69804:e=>{e.exports={en:["Chart image copied to clipboard {emoji}"],de:["Chart-Bild in Zwischenablage kopiert {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"],de:["Der Einbettungscode des Chart-Bilds wurde in die Zwischenablage kopiert {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"],de:["Chatham Inseln"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"],de:["Kreis"]}},14985:e=>{e.exports={en:["Click to set a point"],de:["Klicken Sie, um einen Punkt zu setzen"]}},12537:e=>{e.exports={en:["Clone"],de:["Duplizieren"]}},62578:e=>{e.exports={en:["Close"]}},264:e=>{e.exports={en:["Create limit order"],de:["Limit-Order erstellen"]}},6969:e=>{e.exports={en:["Cross"],de:["Fadenkreuz"]}},74334:e=>{e.exports={en:["Cross Line"],de:["Fadenkreuz"]}},59396:e=>{e.exports={en:["Currencies"],de:["Devisen"]}},20177:e=>{e.exports={en:["Current interval and above"],de:["Aktueller Intervall und darüber"]}},494:e=>{e.exports={en:["Current interval and below"],de:["Aktueller Intervall und darunter"]}},60668:e=>{e.exports={en:["Current interval only"],de:["Nur aktueller Intervall"]}},78609:e=>{e.exports={en:["Curve"],de:["Kurve"]}},87380:e=>{e.exports={en:["Cycle"]}},84031:e=>{e.exports={en:["Cyclic Lines"],de:["Zyklische Linien"]}},93191:e=>{e.exports={en:["Cypher Pattern"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],de:["Ein Layout mit diesem Namen existiert bereits"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],de:["Ein Layout mit diesem Namen existiert bereits. Möchten Sie es überschreiben?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],de:["ABCD Muster"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"],de:["Verankern"]}},42630:e=>{e.exports={en:["Anchorage"],de:["Verankerung"]}},42669:e=>{e.exports={en:["Anchored Text"],de:["Verankerter Text"]}},84541:e=>{e.exports={en:["Anchored VWAP"],de:["Verankerter VWAP"]}},77401:e=>{e.exports={en:["Access error"],de:["Zugriffsfehler"]}},46501:e=>{e.exports={
|
||||
en:["Add Symbol"],de:["Symbol hinzufügen"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],de:["Finanz-Metrik hinzufügen für {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],de:["Indikator / Strategie zu {studyTitle} hinzufügen"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],de:["Diese Finanzkennzahl zum gesamten Layout hinzufügen"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],de:["Diesen finanziellen Datenpunkt zu den Favoriten hinzufügen"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],de:["Den Indikator dem gesamten Layout hinzufügen"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],de:["Diesen Indikator zu den Favoriten hinzufügen"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],de:["Die Strategie dem gesamten Layout hinzufügen"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],de:["Das Symbol dem gesamten Layout hinzufügen"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],de:["Immer verborgen"]}},36299:e=>{e.exports={en:["Always visible"],de:["Immer sichtbar"]}},58026:e=>{e.exports={en:["All intervals"],de:["Alle Intervalle"]}},78358:e=>{e.exports={en:["Apply default"],de:["Standard anwenden"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],de:["Diese Indikatoren dem gesamten Layout hinzufügen"]}},27072:e=>{e.exports={en:["Apr"]}},59324:e=>{e.exports={en:["Arc"],de:["Bogen"]}},34456:e=>{e.exports={en:["Area"],de:["Fläche"]}},11858:e=>{e.exports={en:["Arrow"],de:["Pfeil"]}},34247:e=>{e.exports={en:["Arrow Down"],de:["Pfeil Abwärts"]}},36352:e=>{e.exports={en:["Arrow Marker"],de:["Pfeil-Markierung"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],de:["Pfeil nach unten"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],de:["Pfeil nach links"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],de:["Pfeil nach rechts"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],de:["Pfeil nach oben"]}},77231:e=>{e.exports={en:["Arrow Up"],de:["Pfeil Aufwärts"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],de:["Ashkhabad"]}},72445:e=>{e.exports={en:["At close"],de:["bei Schluß"]}},73702:e=>{e.exports={en:["Athens"],de:["Athen"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],de:["Auto (an Bildschirm anpassen)"]}},46450:e=>{e.exports={en:["Aug"]}},21841:e=>{e.exports={en:["Average close price label"],de:["Label für den durchschnittlichen Schlusskurs"]}},16138:e=>{e.exports={en:["Average close price line"],de:["Durchschnittlicher Schlusskurs Linie"]}},73025:e=>{e.exports={en:["Avg"],de:["Durchschn."]}},87580:e=>{e.exports={en:["Azores"],de:["Azoren"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"],de:["Sprechblase"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],
|
||||
de:["Die Balkenwiedergabe ist nicht für diesen Charttyp verfügbar. Möchten Sie die Balkenwiedergabe schließen?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],de:["Die Balkenwiedergabe ist nicht für dieses Symbol verfügbar. Möchten Sie die Balkenwiedergabe schließen?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],de:["Die Balkenwiedergabe ist nicht für dieses Zeitintervall verfügbar. Möchten Sie die Balkenwiedergabe schließen?"]}},27377:e=>{e.exports={en:["Bars"],de:["Balken"]}},81994:e=>{e.exports={en:["Bars Pattern"],de:["Balkenmuster"]}},59213:e=>{e.exports={en:["Baseline"],de:["Grundlinie"]}},71797:e=>{e.exports={en:["Belgrade"],de:["Belgrad"]}},64313:e=>{e.exports={en:["Berlin"]}},43539:e=>{e.exports={en:["Brush"],de:["Pinsel"]}},91499:e=>{e.exports={en:["Brussels"],de:["Brüssel"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],de:["Nach vorne bringen"]}},17293:e=>{e.exports={en:["Bring to front"],de:["Ganz nach vorne bringen"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"],de:["Bukarest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],de:["Von TradingView"]}},54280:e=>{e.exports={en:["Go to date"],de:["Gehe zu Datum"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],de:["Gehe zu {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],de:["Ich akzeptiere"]}},47460:e=>{e.exports={en:["Gann Box"],de:["Gann-Box"]}},48683:e=>{e.exports={en:["Gann Fan"],de:["Gann Fächer"]}},44763:e=>{e.exports={en:["Gann Square"],de:["Gann Square (Quadrat)"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],de:["Gann-Square fixiert"]}},46808:e=>{e.exports={en:["Ghost Feed"],de:["Ghost-Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"],de:["Grand Supercycle"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"],de:["Möchten Sie die Indikatorvorlage '{name}' wirklich löschen?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],de:["Möchten Sie wirklich diese Studie und ihre Ableger löschen?"]}},77125:e=>{e.exports={en:["Double Curve"],de:["Doppelkurve"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],de:["Doppelklicken Sie auf eine beliebige Kante, um das Layout-Raster zurückzusetzen."]}},75296:e=>{e.exports={en:["Double-click to finish Path"],de:["Doppelklicken um Pfad zu beenden"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],de:["Doppelklicken um Linienzug zu beenden"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"],de:["Wenn Sie das Layout-Raster zurücksetzen möchten, tippen Sie einen Rand zweimal an"]}},57131:e=>{e.exports={en:["Data Provided by"],de:["Daten werden bereitgestellt von"]}},22677:e=>{e.exports={en:["Date"],de:["Datum"]}},85444:e=>{e.exports={en:["Date Range"],de:["Datumsbereich"]}},47017:e=>{e.exports={
|
||||
en:["Date and Price Range"],de:["Daten- und Preisbereich"]}},32084:e=>{e.exports={en:["Dec"],de:["Dez"]}},23403:e=>{e.exports={en:["Degree"],de:["Grad"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],de:["Diamant"]}},91544:e=>{e.exports={en:["Disjoint Channel"],de:["Entkoppelter Kanal"]}},70132:e=>{e.exports={en:["Displacement"],de:["Verschiebung"]}},93864:e=>{e.exports={en:["Drawings toolbar"],de:["Zeichen-Werkzeugleiste"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],de:["Eine horizontale Linie bei {price} einzeichnen"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],de:["Chart Layout neu benennen"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],de:["Elliott Korrektur Welle (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],de:["Elliot Doppel Combo Welle (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],de:["Elliot Impuls Welle (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],de:["Elliot Dreiecks-Welle (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],de:["Elliot Dreifach-Combo-Welle (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"]}},52788:e=>{e.exports={en:["Extended Line"],de:["Verlängerte Linie"]}},86905:e=>{e.exports={en:["Exchange"],de:["Börse"]}},19271:e=>{e.exports={en:["Existing pane above"],de:["Vorhandener Bereich darüber"]}},46545:e=>{e.exports={en:["Existing pane below"],de:["Vorhandener Bereich unterhalb"]}},20138:e=>{e.exports={en:["Forecast"],de:["Prognose"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],de:["Fib Kanal"]}},82330:e=>{e.exports={en:["Fib Circles"],de:["Fib Kreise"]}},55986:e=>{e.exports={en:["Fib Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],de:["Fib Speed Resistance Arcs (Bögen)"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],de:["Fib Speed Resistance Fan (Fächer)"]}},39014:e=>{e.exports={en:["Fib Spiral"],de:["Fib Spirale"]}},30622:e=>{e.exports={en:["Fib Time Zone"],de:["Fib Zeitzonen"]}},85042:e=>{e.exports={en:["Fib Wedge"],de:["Fib Keil"]}},33885:e=>{e.exports={en:["Flag"],de:["Flagge"]}},14600:e=>{e.exports={en:["Flag Mark"],de:["Flagge"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],de:["Dieser Teil ist ungültig"]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],de:["Grundlegende Studien sind auf Charts nicht länger verfügbar"]}},31561:e=>{e.exports={en:["Kolkata"],de:["Kalkutta"]}},54533:e=>{e.exports={en:["Kathmandu"],de:["Katmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],de:["HLC-Bereich"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],
|
||||
de:["Hollow Candles"]}},48861:e=>{e.exports={en:["Hong Kong"],de:["Hongkong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],de:["Horizontale Linie"]}},25487:e=>{e.exports={en:["Horizontal Ray"],de:["Unterstützung-/Widerstandslinie"]}},21928:e=>{e.exports={en:["Head and Shoulders"],de:["Kopf und Schultern"]}},63876:e=>{e.exports={en:["Heikin Ashi"],de:["HeikinAshi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],de:["Verbergen"]}},47074:e=>{e.exports={en:["Hide all"],de:["Alles ausblenden"]}},52563:e=>{e.exports={en:["Hide all drawings"],de:["Alle Zeichentools verbergen"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],de:["Alle Zeichnungen und Indikatoren verbergen"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],de:["Alle Zeichnungen, Indikatoren, Positionen und Orders verbergen"]}},78525:e=>{e.exports={en:["Hide all indicators"],de:["Alle Indikatoren verbergen"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],de:["Alle Positionen und Orders ausblenden"]}},3217:e=>{e.exports={en:["Hide drawings"],de:["Zeichnungen verbergen"]}},97878:e=>{e.exports={en:["Hide events on chart"],de:["Ereignisse im Chart ausblenden"]}},72351:e=>{e.exports={en:["Hide indicators"],de:["Indikatoren verbergen"]}},28345:e=>{e.exports={en:["Hide marks on bars"],de:["Markierungen auf Balken verbergen"]}},92226:e=>{e.exports={en:["Hide positions & orders"],de:["Positionen und Orders ausblenden"]}},78254:e=>{e.exports={en:["High"],de:["Hoch"]}},98236:e=>{e.exports={en:["High-low"],de:["High-Low"]}},99479:e=>{e.exports={en:["High and low price labels"],de:["Preislabel | Hoch/Tief"]}},33766:e=>{e.exports={en:["High and low price lines"],de:["Preislinien | Hoch/Tief"]}},69476:e=>{e.exports={en:["Highlighter"],de:["Text Marker"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],de:["Das Histogramm ist zu groß. Erhöhen Sie bitte die {boldHighlightStart}Zeilengröße{boldHighlightEnd} im Einstellungsfenster."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],de:["Das Histogramm ist zu groß. Erhöhen Sie bitte die {boldHighlightStart}Ticks pro Zeile{boldHighlightEnd} im Einstellungsfenster."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],de:["Das Histogramm ist zu groß. Verringern Sie bitte die {boldHighlightStart}Zeilengröße{boldHighlightEnd} im Einstellungsfenster."]}},68065:e=>{e.exports={en:["Image"],de:["Bild"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],de:["Intervalle von weniger als {resolution} werden nicht für {ticker} unterstützt."]}},10268:e=>{e.exports={en:["Intermediate"]}},14285:e=>{e.exports={en:["Invalid Symbol"],de:["Ungültiges Symbol"]}},52969:e=>{e.exports={en:["Invalid symbol"],
|
||||
de:["Ungültiges Symbol"]}},37189:e=>{e.exports={en:["Invert scale"],de:["Skala invertieren"]}},89999:e=>{e.exports={en:["Indexed to 100"],de:["Auf 100 indexiert"]}},46850:e=>{e.exports={en:["Indicators value labels"],de:["Label der Indikatorenwerte"]}},54418:e=>{e.exports={en:["Indicators name labels"],de:["Namenslabel des Indikators"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],de:["Indikatoren, Metriken und Strategien. Schrägstrich drücken"]}},15992:e=>{e.exports={en:["Info Line"],de:["Info Linie"]}},87829:e=>{e.exports={en:["Insert indicator"],de:["Indikator einfügen"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],de:["Innerhalb der Pitchfork"]}},37913:e=>{e.exports={en:["Icon"],de:["Symbol"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],de:["Auf der Linken Seite"]}},55813:e=>{e.exports={en:["On the right"],de:["Auf der Rechten Seite"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],de:["Nur {availableResolutions} Intervalle werden für {ticker} unterstützt."]}},21064:e=>{e.exports={en:["Oops!"],de:["Huch!"]}},51221:e=>{e.exports={en:["Object Tree"],de:["Objektbaum"]}},12179:e=>{e.exports={en:["Oct"],de:["Okt"]}},16610:e=>{e.exports={en:["Open"],de:["Eröffnung"]}},27884:e=>{e.exports={en:["Open layout. Press period"],de:["Layout öffnen. Punkt drücken"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],de:["Tief"]}},51077:e=>{e.exports={en:["Lock"],de:["Fixieren"]}},79777:e=>{e.exports={en:["Lock/unlock"],de:["Fixieren / Lösen"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],de:["Vertikale Cursorlinie auf Zeitachse fixieren"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],de:["Kurs zu Balken Verhältnis fixieren"]}},16170:e=>{e.exports={en:["Logarithmic"],de:["Logarithmisch"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"],de:["Long-Position"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],de:["Label Abwärts"]}},52402:e=>{e.exports={en:["Label Up"],de:["Label Aufwärts"]}},5119:e=>{e.exports={en:["Labels"],de:["Beschriftungen"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],de:["Veränderung am letzten Handelstag"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],de:["Linie"]}},9394:e=>{e.exports={en:["Line with markers"],de:["Linie mit Markierungen"]}},43588:e=>{e.exports={en:["Line break"],de:["Line Break"]}},56982:e=>{e.exports={en:["Lines"],de:["Linien"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],de:["Link zu dem in die Zwischenablage kopierten Chart-Bild {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],de:["Lissabon"]}},81038:e=>{e.exports={
|
||||
en:["Luxembourg"],de:["Luxemburg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],de:["Bewegen Sie den Punkt, um den Anker zu positionieren, und tappen Sie dann um ihn zu platzieren."]}},35049:e=>{e.exports={en:["Move to"],de:["Bewegen nach"]}},26493:e=>{e.exports={en:["Move scale to left"],de:["Skala nach links bewegen"]}},40789:e=>{e.exports={en:["Move scale to right"],de:["Skala nach rechts bewegen"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],de:["Modifizierte Schiff-Pitchfork"]}},93907:e=>{e.exports={en:["More settings"],de:["Weitere Einstellungen"]}},64039:e=>{e.exports={en:["Moscow"],de:["Moskau"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],de:["Mrz"]}},73332:e=>{e.exports={en:["Mexico City"],de:["Mexiko City"]}},88314:e=>{e.exports={en:["Merge all scales into one"],de:["Alle Skalen zu einer einzigen zusammenfügen"]}},54215:e=>{e.exports={en:["Mixed"],de:["Gemischt"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"],de:["Muskat"]}},96935:e=>{e.exports={en:["N/A"],de:["Nicht verfügbar"]}},36252:e=>{e.exports={en:["No data here"],de:["Keine Daten vorhanden"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],de:["Keine Skalierung (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"],de:["Keine Synchronisation"]}},50910:e=>{e.exports={en:["No volume data"],de:["Keine Volumendaten"]}},99024:e=>{e.exports={en:["No, keep them"],de:["Nein, nicht entfernen"]}},94389:e=>{e.exports={en:["Note"],de:["Anmerkung"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],de:["Neuseeland"]}},15512:e=>{e.exports={en:["New pane above"],de:["Neuer Bereich oberhalb"]}},52160:e=>{e.exports={en:["New pane below"],de:["Neuer Bereich unterhalb"]}},94600:e=>{e.exports={en:["Nicosia"],de:["Nikosia"]}},73013:e=>{e.exports={en:["Something went wrong"],de:["Etwas ist schiefgelaufen"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],de:["Etwas ist bei der Erstellung des Indikators schiefgegangen."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],de:["Es ist etwas schief gelaufen. Bitte versuchen Sie es erneut"]}},43047:e=>{e.exports={en:["Save New Chart Layout"],de:["Neues Chart-Layout speichern"]}},76266:e=>{e.exports={en:["Save as"],de:["Speichern unter"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],de:["Währung skalieren"]}},43758:e=>{e.exports={en:["Scale price chart only"],de:["Nur den Preis-Chart vergrößern"]}},40012:e=>{e.exports={en:["Scale unit"],de:["Maßeinheit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],
|
||||
de:["Schiff-Pitchfork"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],de:["Das Skript wird möglicherweise nicht aktualisiert, wenn Sie die Seite verlassen."]}},32514:e=>{e.exports={en:["Settings"],de:["Einstellungen"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],de:["Zweiter Bruchteil ungültig"]}},75594:e=>{e.exports={en:["Security info"],de:["Wertpapierinformationen"]}},21973:e=>{e.exports={en:["Send to back"],de:["Ganz nach hinten verschieben"]}},71179:e=>{e.exports={en:["Send backward"],de:["Eins nach hinten verschieben"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"],de:["Sitzung"]}},83298:e=>{e.exports={en:["Session volume profile"],de:["Session-Volumenprofil"]}},66707:e=>{e.exports={en:["Session breaks"],de:["Session-Wechsel"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],de:["Short-Position"]}},98334:e=>{e.exports={en:["Show"],de:["Anzeigen"]}},85891:e=>{e.exports={en:["Show all drawings"],de:["Alle Zeichnungen anzeigen"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],de:["Alle Zeichnungen und Indikatoren anzeigen"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],de:["Alle Zeichnungen, Indikatoren, Positionen und Orders anzeigen"]}},98753:e=>{e.exports={en:["Show all indicators"],de:["Alle Indikatoren anzeigen"]}},55418:e=>{e.exports={en:["Show all ideas"],de:["Alle Ideen anzeigen"]}},20506:e=>{e.exports={en:["Show all positions & orders"],de:["Alle Positionen und Orders anzeigen"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],de:["Kontinuierlichen Kontraktwechsel anzeigen"]}},81465:e=>{e.exports={en:["Show contract expiration"],de:["Kontraktablauf anzeigen"]}},29449:e=>{e.exports={en:["Show dividends"],de:["Dividenden anzeigen"]}},37113:e=>{e.exports={en:["Show earnings"],de:["Earnings anzeigen"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],de:["Ideen von Usern denen ich folge anzeigen"]}},62986:e=>{e.exports={en:["Show latest news"],de:["Die neuesten News anzeigen"]}},44020:e=>{e.exports={en:["Show my ideas only"],de:["Nur meine Ideen anzeigen"]}},50849:e=>{e.exports={en:["Show splits"],de:["Splits anzeigen"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],de:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"],de:["Sinuslinie"]}},66205:e=>{e.exports={en:["Square"],de:["Rechteck"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],de:["Studien Limit erreicht: {number} Studien pro Layout.\nBitte entfernen Sie einige Studien."]}},92516:e=>{e.exports={en:["Style"],de:["Stil"]}},61507:e=>{e.exports={en:["Stack on the left"],de:["Links sammeln"]}},97800:e=>{e.exports={en:["Stack on the right"],de:["Rechts sammeln"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],de:["Verwenden Sie den Modus Tastaturnavigation. {shortcut} drücken"]}},4035:e=>{e.exports={
|
||||
en:["Stay in drawing mode"],de:["Im Zeichenmodus bleiben"]}},69217:e=>{e.exports={en:["Step line"],de:["Step-Line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],de:["Auf {resolution} umschalten"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],de:["Symbol Fehler"]}},32390:e=>{e.exports={en:["Symbol name label"],de:["Name des Symbols"]}},10127:e=>{e.exports={en:["Symbol last price label"],de:["Letzter Wert des Symbols"]}},39079:e=>{e.exports={en:["Sync globally"],de:["Global synchronisieren"]}},46607:e=>{e.exports={en:["Sync in layout"],de:["Auf alle Charts anwenden"]}},76519:e=>{e.exports={en:["Point & figure"],de:["Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"],de:["Linienzug"]}},371:e=>{e.exports={en:["Path"],de:["Pfad"]}},59256:e=>{e.exports={en:["Parallel Channel"],de:["Paralleler Kanal"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"],de:["Einfügen"]}},6919:e=>{e.exports={en:["Percent"],de:["Prozent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"],de:["Stecknadel"]}},33110:e=>{e.exports={en:["Pin to new left scale"],de:["An neue linke Skala anheften"]}},28280:e=>{e.exports={en:["Pin to new right scale"],de:["An neue rechte Skala anheften"]}},14115:e=>{e.exports={en:["Pin to left scale"],de:["An linke Skala anheften"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],de:["An linke Skala anheften (verborgen)"]}},81054:e=>{e.exports={en:["Pin to right scale"],de:["An rechte Skala anheften"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],de:["An rechte Skala anheften (verborgen)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],de:["An Skala anheften (Jetzt links)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],de:["An Skala anheften (Jetzt keine Skala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],de:["An Skala anheften (Jetzt rechts)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],de:["An Skala anheften (Jetzt {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],de:["An Skala angeheftet {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],de:["An Skala anheften {label} (verborgen)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],de:["An linke Skala angeheftet"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],de:["An linke Skala angeheftet (verborgen)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],de:["An rechte Skala angeheftet"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],de:["An rechte Skala anheften (verborgen)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],
|
||||
en:["Date and Price Range"],de:["Daten- und Preisbereich"]}},32084:e=>{e.exports={en:["Dec"],de:["Dez"]}},23403:e=>{e.exports={en:["Degree"],de:["Grad"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],de:["Diamant"]}},91544:e=>{e.exports={en:["Disjoint Channel"],de:["Entkoppelter Kanal"]}},70132:e=>{e.exports={en:["Displacement"],de:["Verschiebung"]}},93864:e=>{e.exports={en:["Drawings toolbar"],de:["Zeichen-Werkzeugleiste"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],de:["Eine horizontale Linie bei {price} einzeichnen"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],de:["Chart Layout neu benennen"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],de:["Elliott Korrektur Welle (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],de:["Elliot Doppel Combo Welle (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],de:["Elliot Impuls Welle (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],de:["Elliot Dreiecks-Welle (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],de:["Elliot Dreifach-Combo-Welle (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"]}},52788:e=>{e.exports={en:["Extended Line"],de:["Verlängerte Linie"]}},86905:e=>{e.exports={en:["Exchange"],de:["Börse"]}},19271:e=>{e.exports={en:["Existing pane above"],de:["Vorhandener Bereich darüber"]}},46545:e=>{e.exports={en:["Existing pane below"],de:["Vorhandener Bereich unterhalb"]}},20138:e=>{e.exports={en:["Forecast"],de:["Prognose"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],de:["Fib Kanal"]}},82330:e=>{e.exports={en:["Fib Circles"],de:["Fib Kreise"]}},55986:e=>{e.exports={en:["Fib Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],de:["Fib Speed Resistance Arcs (Bögen)"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],de:["Fib Speed Resistance Fan (Fächer)"]}},39014:e=>{e.exports={en:["Fib Spiral"],de:["Fib Spirale"]}},30622:e=>{e.exports={en:["Fib Time Zone"],de:["Fib Zeitzonen"]}},85042:e=>{e.exports={en:["Fib Wedge"],de:["Fib Keil"]}},33885:e=>{e.exports={en:["Flag"],de:["Flagge"]}},14600:e=>{e.exports={en:["Flag Mark"],de:["Flagge"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],de:["Dieser Teil ist ungültig"]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],de:["Grundlegende Studien sind auf Charts nicht länger verfügbar"]}},31561:e=>{e.exports={en:["Kolkata"],de:["Kalkutta"]}},54533:e=>{e.exports={en:["Kathmandu"],de:["Katmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],de:["HLC-Bereich"]}},886:e=>{e.exports={en:["HLC bars"],de:["HLC-Balken"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},
|
||||
13459:e=>{e.exports={en:["Hollow candles"],de:["Hollow Candles"]}},48861:e=>{e.exports={en:["Hong Kong"],de:["Hongkong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],de:["Horizontale Linie"]}},25487:e=>{e.exports={en:["Horizontal Ray"],de:["Unterstützung-/Widerstandslinie"]}},21928:e=>{e.exports={en:["Head and Shoulders"],de:["Kopf und Schultern"]}},63876:e=>{e.exports={en:["Heikin Ashi"],de:["HeikinAshi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],de:["Verbergen"]}},47074:e=>{e.exports={en:["Hide all"],de:["Alles ausblenden"]}},52563:e=>{e.exports={en:["Hide all drawings"],de:["Alle Zeichentools verbergen"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],de:["Alle Zeichnungen und Indikatoren verbergen"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],de:["Alle Zeichnungen, Indikatoren, Positionen und Orders verbergen"]}},78525:e=>{e.exports={en:["Hide all indicators"],de:["Alle Indikatoren verbergen"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],de:["Alle Positionen und Orders ausblenden"]}},3217:e=>{e.exports={en:["Hide drawings"],de:["Zeichnungen verbergen"]}},97878:e=>{e.exports={en:["Hide events on chart"],de:["Ereignisse im Chart ausblenden"]}},72351:e=>{e.exports={en:["Hide indicators"],de:["Indikatoren verbergen"]}},28345:e=>{e.exports={en:["Hide marks on bars"],de:["Markierungen auf Balken verbergen"]}},92226:e=>{e.exports={en:["Hide positions & orders"],de:["Positionen und Orders ausblenden"]}},78254:e=>{e.exports={en:["High"],de:["Hoch"]}},98236:e=>{e.exports={en:["High-low"],de:["High-Low"]}},99479:e=>{e.exports={en:["High and low price labels"],de:["Preislabel | Hoch/Tief"]}},33766:e=>{e.exports={en:["High and low price lines"],de:["Preislinien | Hoch/Tief"]}},69476:e=>{e.exports={en:["Highlighter"],de:["Text Marker"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],de:["Das Histogramm ist zu groß. Erhöhen Sie bitte die {boldHighlightStart}Zeilengröße{boldHighlightEnd} im Einstellungsfenster."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],de:["Das Histogramm ist zu groß. Erhöhen Sie bitte die {boldHighlightStart}Ticks pro Zeile{boldHighlightEnd} im Einstellungsfenster."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],de:["Das Histogramm ist zu groß. Verringern Sie bitte die {boldHighlightStart}Zeilengröße{boldHighlightEnd} im Einstellungsfenster."]}},68065:e=>{e.exports={en:["Image"],de:["Bild"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],de:["Intervalle von weniger als {resolution} werden nicht für {ticker} unterstützt."]}},10268:e=>{e.exports={en:["Intermediate"]}},14285:e=>{e.exports={en:["Invalid Symbol"],de:["Ungültiges Symbol"]}},52969:e=>{
|
||||
e.exports={en:["Invalid symbol"],de:["Ungültiges Symbol"]}},37189:e=>{e.exports={en:["Invert scale"],de:["Skala invertieren"]}},89999:e=>{e.exports={en:["Indexed to 100"],de:["Auf 100 indexiert"]}},46850:e=>{e.exports={en:["Indicators value labels"],de:["Label der Indikatorenwerte"]}},54418:e=>{e.exports={en:["Indicators name labels"],de:["Namenslabel des Indikators"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],de:["Indikatoren, Metriken und Strategien. Schrägstrich drücken"]}},15992:e=>{e.exports={en:["Info Line"],de:["Info Linie"]}},87829:e=>{e.exports={en:["Insert indicator"],de:["Indikator einfügen"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],de:["Innerhalb der Pitchfork"]}},37913:e=>{e.exports={en:["Icon"],de:["Symbol"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],de:["Auf der Linken Seite"]}},55813:e=>{e.exports={en:["On the right"],de:["Auf der Rechten Seite"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],de:["Nur {availableResolutions} Intervalle werden für {ticker} unterstützt."]}},21064:e=>{e.exports={en:["Oops!"],de:["Huch!"]}},51221:e=>{e.exports={en:["Object Tree"],de:["Objektbaum"]}},12179:e=>{e.exports={en:["Oct"],de:["Okt"]}},16610:e=>{e.exports={en:["Open"],de:["Eröffnung"]}},27884:e=>{e.exports={en:["Open layout. Press period"],de:["Layout öffnen. Punkt drücken"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],de:["Tief"]}},51077:e=>{e.exports={en:["Lock"],de:["Fixieren"]}},79777:e=>{e.exports={en:["Lock/unlock"],de:["Fixieren / Lösen"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],de:["Vertikale Cursorlinie auf Zeitachse fixieren"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],de:["Kurs zu Balken Verhältnis fixieren"]}},16170:e=>{e.exports={en:["Logarithmic"],de:["Logarithmisch"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"],de:["Long-Position"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],de:["Label Abwärts"]}},52402:e=>{e.exports={en:["Label Up"],de:["Label Aufwärts"]}},5119:e=>{e.exports={en:["Labels"],de:["Beschriftungen"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],de:["Veränderung am letzten Handelstag"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],de:["Linie"]}},9394:e=>{e.exports={en:["Line with markers"],de:["Linie mit Markierungen"]}},43588:e=>{e.exports={en:["Line break"],de:["Line Break"]}},56982:e=>{e.exports={en:["Lines"],de:["Linien"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],de:["Link zu dem in die Zwischenablage kopierten Chart-Bild {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],
|
||||
de:["Lissabon"]}},81038:e=>{e.exports={en:["Luxembourg"],de:["Luxemburg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],de:["Bewegen Sie den Punkt, um den Anker zu positionieren, und tappen Sie dann um ihn zu platzieren."]}},35049:e=>{e.exports={en:["Move to"],de:["Bewegen nach"]}},26493:e=>{e.exports={en:["Move scale to left"],de:["Skala nach links bewegen"]}},40789:e=>{e.exports={en:["Move scale to right"],de:["Skala nach rechts bewegen"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],de:["Modifizierte Schiff-Pitchfork"]}},93907:e=>{e.exports={en:["More settings"],de:["Weitere Einstellungen"]}},64039:e=>{e.exports={en:["Moscow"],de:["Moskau"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],de:["Mrz"]}},73332:e=>{e.exports={en:["Mexico City"],de:["Mexiko City"]}},88314:e=>{e.exports={en:["Merge all scales into one"],de:["Alle Skalen zu einer einzigen zusammenfügen"]}},54215:e=>{e.exports={en:["Mixed"],de:["Gemischt"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"],de:["Muskat"]}},96935:e=>{e.exports={en:["N/A"],de:["Nicht verfügbar"]}},36252:e=>{e.exports={en:["No data here"],de:["Keine Daten vorhanden"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],de:["Keine Skalierung (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"],de:["Keine Synchronisation"]}},50910:e=>{e.exports={en:["No volume data"],de:["Keine Volumendaten"]}},99024:e=>{e.exports={en:["No, keep them"],de:["Nein, nicht entfernen"]}},94389:e=>{e.exports={en:["Note"],de:["Anmerkung"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],de:["Neuseeland"]}},15512:e=>{e.exports={en:["New pane above"],de:["Neuer Bereich oberhalb"]}},52160:e=>{e.exports={en:["New pane below"],de:["Neuer Bereich unterhalb"]}},94600:e=>{e.exports={en:["Nicosia"],de:["Nikosia"]}},73013:e=>{e.exports={en:["Something went wrong"],de:["Etwas ist schiefgelaufen"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],de:["Etwas ist bei der Erstellung des Indikators schiefgegangen."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],de:["Es ist etwas schief gelaufen. Bitte versuchen Sie es erneut"]}},43047:e=>{e.exports={en:["Save New Chart Layout"],de:["Neues Chart-Layout speichern"]}},76266:e=>{e.exports={en:["Save as"],de:["Speichern unter"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],de:["Währung skalieren"]}},43758:e=>{e.exports={en:["Scale price chart only"],de:["Nur den Preis-Chart vergrößern"]}},40012:e=>{e.exports={en:["Scale unit"],de:["Maßeinheit"]}},42608:e=>{e.exports={
|
||||
en:["Schiff Pitchfork"],de:["Schiff-Pitchfork"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],de:["Das Skript wird möglicherweise nicht aktualisiert, wenn Sie die Seite verlassen."]}},32514:e=>{e.exports={en:["Settings"],de:["Einstellungen"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],de:["Zweiter Bruchteil ungültig"]}},75594:e=>{e.exports={en:["Security info"],de:["Wertpapierinformationen"]}},21973:e=>{e.exports={en:["Send to back"],de:["Ganz nach hinten verschieben"]}},71179:e=>{e.exports={en:["Send backward"],de:["Eins nach hinten verschieben"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"],de:["Sitzung"]}},83298:e=>{e.exports={en:["Session volume profile"],de:["Session-Volumenprofil"]}},66707:e=>{e.exports={en:["Session breaks"],de:["Session-Wechsel"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],de:["Short-Position"]}},98334:e=>{e.exports={en:["Show"],de:["Anzeigen"]}},85891:e=>{e.exports={en:["Show all drawings"],de:["Alle Zeichnungen anzeigen"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],de:["Alle Zeichnungen und Indikatoren anzeigen"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],de:["Alle Zeichnungen, Indikatoren, Positionen und Orders anzeigen"]}},98753:e=>{e.exports={en:["Show all indicators"],de:["Alle Indikatoren anzeigen"]}},55418:e=>{e.exports={en:["Show all ideas"],de:["Alle Ideen anzeigen"]}},20506:e=>{e.exports={en:["Show all positions & orders"],de:["Alle Positionen und Orders anzeigen"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],de:["Kontinuierlichen Kontraktwechsel anzeigen"]}},81465:e=>{e.exports={en:["Show contract expiration"],de:["Kontraktablauf anzeigen"]}},29449:e=>{e.exports={en:["Show dividends"],de:["Dividenden anzeigen"]}},37113:e=>{e.exports={en:["Show earnings"],de:["Earnings anzeigen"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],de:["Ideen von Usern denen ich folge anzeigen"]}},62986:e=>{e.exports={en:["Show latest news"],de:["Die neuesten News anzeigen"]}},44020:e=>{e.exports={en:["Show my ideas only"],de:["Nur meine Ideen anzeigen"]}},50849:e=>{e.exports={en:["Show splits"],de:["Splits anzeigen"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],de:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"],de:["Sinuslinie"]}},66205:e=>{e.exports={en:["Square"],de:["Rechteck"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],de:["Studien Limit erreicht: {number} Studien pro Layout.\nBitte entfernen Sie einige Studien."]}},92516:e=>{e.exports={en:["Style"],de:["Stil"]}},61507:e=>{e.exports={en:["Stack on the left"],de:["Links sammeln"]}},97800:e=>{e.exports={en:["Stack on the right"],de:["Rechts sammeln"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],de:["Verwenden Sie den Modus Tastaturnavigation. {shortcut} drücken"]}},
|
||||
4035:e=>{e.exports={en:["Stay in drawing mode"],de:["Im Zeichenmodus bleiben"]}},69217:e=>{e.exports={en:["Step line"],de:["Step-Line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],de:["Auf {resolution} umschalten"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],de:["Symbol Fehler"]}},32390:e=>{e.exports={en:["Symbol name label"],de:["Name des Symbols"]}},10127:e=>{e.exports={en:["Symbol last price label"],de:["Letzter Wert des Symbols"]}},39079:e=>{e.exports={en:["Sync globally"],de:["Global synchronisieren"]}},46607:e=>{e.exports={en:["Sync in layout"],de:["Auf alle Charts anwenden"]}},76519:e=>{e.exports={en:["Point & figure"],de:["Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"],de:["Linienzug"]}},371:e=>{e.exports={en:["Path"],de:["Pfad"]}},59256:e=>{e.exports={en:["Parallel Channel"],de:["Paralleler Kanal"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"],de:["Einfügen"]}},6919:e=>{e.exports={en:["Percent"],de:["Prozent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"],de:["Stecknadel"]}},33110:e=>{e.exports={en:["Pin to new left scale"],de:["An neue linke Skala anheften"]}},28280:e=>{e.exports={en:["Pin to new right scale"],de:["An neue rechte Skala anheften"]}},14115:e=>{e.exports={en:["Pin to left scale"],de:["An linke Skala anheften"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],de:["An linke Skala anheften (verborgen)"]}},81054:e=>{e.exports={en:["Pin to right scale"],de:["An rechte Skala anheften"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],de:["An rechte Skala anheften (verborgen)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],de:["An Skala anheften (Jetzt links)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],de:["An Skala anheften (Jetzt keine Skala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],de:["An Skala anheften (Jetzt rechts)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],de:["An Skala anheften (Jetzt {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],de:["An Skala angeheftet {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],de:["An Skala anheften {label} (verborgen)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],de:["An linke Skala angeheftet"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],de:["An linke Skala angeheftet (verborgen)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],de:["An rechte Skala angeheftet"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],de:["An rechte Skala anheften (verborgen)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],
|
||||
de:["An Skala angeheftet {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],de:["An Skala angeheftet {label} (verborgen)"]}},71566:e=>{e.exports={en:["Plus button"],de:["Skala + Plustaste für Ordermanagement"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],de:["Bitte erteilen Sie uns eine Schreibberechtigung für die Zwischenablage in Ihrem Browser oder drücken Sie {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],de:["Prag"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],de:["Drücken und halten Sie {key} beim Zoomen, um die Chartposition bei zu behalten"]}},91282:e=>{e.exports={en:["Price Label"],de:["Preis-Label"]}},97512:e=>{e.exports={en:["Price Note"],de:["Kurs Notiz"]}},68941:e=>{e.exports={en:["Price Range"],de:["Preisspanne"]}},66123:e=>{e.exports={en:["Price format is invalid."],de:["Preisformat ist ungültig."]}},72926:e=>{e.exports={en:["Price line"],de:["Preislinie"]}},59189:e=>{e.exports={en:["Primary"]}},75747:e=>{e.exports={en:["Projection"],de:["Projektion"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],de:["Veröffentlicht von {customer},{date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"],de:["Katar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],de:["Schnellsuche. {shortcut} drücken"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],de:["Drehbares Rechteck"]}},52961:e=>{e.exports={en:["Rome"],de:["Rom"]}},50318:e=>{e.exports={en:["Ray"],de:["Strahl"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],de:["Rechteck"]}},48236:e=>{e.exports={en:["Redo"],de:["Wiederherstellen"]}},2460:e=>{e.exports={en:["Regression Trend"],de:["Regressionstrend"]}},67410:e=>{e.exports={en:["Remove"],de:["Entfernen"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],de:["Diesen finanziellen Datenpunkt aus den Favoriten entfernen"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],de:["Diesen Indikator aus den Favoriten entfernen"]}},86285:e=>{e.exports={en:["Remove {drawings}"],de:["{drawings} entfernen"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],de:["{drawings} & {indicators} entfernen"]}},87797:e=>{e.exports={en:["Remove {indicators}"],de:["{indicators} entfernen"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],de:["Chart-Layout umbenennen"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],de:["Chartansicht zurücksetzen"]}},88853:e=>{e.exports={en:["Reset points"],de:["Punkte zurücksetzen"]}},15332:e=>{e.exports={en:["Reset price scale"],de:["Kursskala zurücksetzen"]}},54170:e=>{e.exports={en:["Reset time scale"],de:["Zeitachse zurücksetzen"]}},37974:e=>{e.exports={en:["Riyadh"],de:["Riad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],
|
||||
de:["Laufzeitfehler"]}},66719:e=>{e.exports={en:["Warning"],de:["Warnung"]}},5959:e=>{e.exports={en:["Warsaw"],de:["Warschau"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],de:["Tokio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],de:["Tabelle"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"],de:["Vorlage"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],de:["Der Datenlieferant stellt keine Volumendaten für dieses Symbol zur Verfügung."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],de:["Die Veröffentlichungsvorschau konnte nicht geladen werden. Bitte deaktivieren Sie Ihre Browser-Erweiterungen und versuchen Sie es erneut."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],de:["Die Verarbeitungsdauer der Anfrage war zu lange. Stellen Sie bitte sicher, dass Sie über eine stabile Internetverbindung verfügen. Wenn der Fehler bestehen bleibt, dann verkürzen Sie die Länge des angefragten Zeitintervalls."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],de:["Es gibt keine Daten für den von Ihnen gewählten Zeitraum und Chart-Zeitrahmen."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],de:["Die Datei ist zu groß. Die max. Dateigröße beträgt {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],de:["Dieser Indikator kann nicht auf einen anderen Indikator angewandt werden"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],de:["Dieses Script enthält einen Fehler. Kontaktieren Sie bitte den Autor."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],de:["Dieses Skript ist nur auf Einladung verfügbar. Um Zugang zu erhalten, wenden Sie sich bitte an den jeweiligen Autor."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],de:["Das, nur auf {linkStart}Tradingview{linkEnd} verfügbare, Symbol."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],de:["Three-Drives-Muster"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],de:["Intervalle auf Tick-Basis sind nicht für {ticker} erhältlich."]}},12806:e=>{e.exports={en:["Time"],de:["Zeit"]}},20909:e=>{e.exports={en:["Time zone"],de:["Zeitzone"]}},46852:e=>{e.exports={en:["Time Cycles"],de:["Zeitzyklen"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],
|
||||
de:["TradingView ist interaktiv und verfügt über Steuerbefehle, die mit einem Screenreader verwendet werden können. Es folgt eine Liste von Tastatureingaben, die für die Interaktion mit der Plattform verwendet werden können"]}},35757:e=>{e.exports={en:["Trend Angle"],de:["Trendwinkel"]}},97339:e=>{e.exports={en:["Trend Line"],de:["Trendlinie"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],de:["Trendbasierte Fib-Extension"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],de:["Trendbasierte Fib-Zeit"]}},1671:e=>{e.exports={en:["Triangle"],de:["Dreieck"]}},76152:e=>{e.exports={en:["Triangle Down"],de:["Dreieck Abwärts"]}},90148:e=>{e.exports={en:["Triangle Pattern"],de:["Dreiecksmuster"]}},21236:e=>{e.exports={en:["Triangle Up"],de:["Dreieck Aufwärts"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],de:["Rückgängig"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],de:["Unerwarteter Fehler im Modus Deep Backtesting. Kontaktieren Sie den Kundendienst für weitere Informationen."]}},15432:e=>{e.exports={en:["Units"],de:["Einheiten"]}},11768:e=>{e.exports={en:["Unknown error"],de:["Unbekannter Fehler"]}},99894:e=>{e.exports={en:["Unlock"],de:["Entsperren"]}},75546:e=>{e.exports={en:["Unsupported interval"],de:["Nicht unterstütztes Intervall"]}},8580:e=>{e.exports={en:["User-defined error"],de:["Benutzerdefinierter Fehler"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],de:["Der Volumenprofil-Indikator ist nur in unseren leistungsstarken Abonnements verfügbar."]}},93722:e=>{e.exports={en:["Volume candles"],de:["Volumenkerzen"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],de:["Volumendaten sind nicht im BIST MIXED Daten-Abonnement enthalten."]}},92763:e=>{e.exports={en:["Volume footprint"],de:["Volumen-Fußabdruck"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],de:["Vertikale Linie"]}},23160:e=>{e.exports={en:["Vienna"],de:["Wien"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],de:["Sichtbarkeit"]}},54853:e=>{e.exports={en:["Visibility on intervals"],de:["Sichtbarkeit der Intervalle"]}},58302:e=>{e.exports={en:["Visible on tap"],de:["Sichtbar bei Antippen"]}},10309:e=>{e.exports={en:["Visible on mouse over"],de:["Sichtbar, wenn der Mauszeiger darüber bewegt wird"]}},4077:e=>{e.exports={en:["Visual order"],de:["Visuelle Reihenfolge"]}},11316:e=>{e.exports={en:["X Cross"],de:["X Kreuz"]}},42231:e=>{e.exports={en:["XABCD Pattern"],de:["XABCD-Muster"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],de:["Sie können dieses Pivot-Zeitfenster nicht mit dieser Auflösung sehen."]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],
|
||||
de:["Sie haben gesperrte Zeichnungen für dieses Symbol. Möchten Sie auch die Zeichnungen entfernen?"]}},53168:e=>{e.exports={en:["Yangon"],de:["Rangun"]}},93123:e=>{e.exports={en:["Yes, remove them"],de:["Ja, entfernen"]}},62859:e=>{e.exports={en:["Zurich"],de:["Zürich"]}},47977:e=>{e.exports={en:["change Elliott degree"],de:["Elliott-Grad ändern"]}},61557:e=>{e.exports={en:["change no overlapping labels"],de:["überlappenden Labels anpassen"]}},76852:e=>{e.exports={en:["change average close price label visibility"],de:["Sichtbarkeit des Labels für den durchschnittlichen Schlusskurs ändern"]}},1022:e=>{e.exports={en:["change average close price line visibility"],de:["Sichtbarkeit der Linie für den durchschnittlichen Schlusskurs ändern"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],de:["Sichtbarkeit der Bid- und Ask-Labels ändern"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],de:["Sichtbarkeit der Bid- und Ask-Linien ändern"]}},32302:e=>{e.exports={en:["change currency"],de:["Währung ändern"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],de:["Chart-Layout ändern zu {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],de:["Änderung des kontinuierlichen Kontrakts unterbricht die Sichtbarkeit"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],de:["Sichtbarkeit des Countdowns bei Balkenschluss ändern"]}},16979:e=>{e.exports={en:["change date range"],de:["Datumsbereich ändern"]}},53929:e=>{e.exports={en:["change dividends visibility"],de:["Sichtbarkeit der Dividenden ändern"]}},6119:e=>{e.exports={en:["change events visibility on chart"],de:["Sichtbarkeit von Events auf dem Chart ändern"]}},6819:e=>{e.exports={en:["change earnings visibility"],de:["Sichtbarkeit der Earnings ändern"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],de:["Die Ablaufsichtbarkeit des Terminkontrakts ändern"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],de:["Sichtbarkeit von Hoch und Tief Preislabels ändern"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],de:["Sichtbarkeit von Hoch und Tief Preislinien ändern"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],de:["ändert die Sichtbarkeit des Namenslabels der Indikatoren"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],de:["Ändert die Sichtbarkeit des Labels für Indikatorenwerte"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],de:["Sichtbarkeit der neuesten Updates ändern"]}},88849:e=>{e.exports={en:["change linking group"],de:["Verknüpfungsgruppe ändern"]}},14691:e=>{e.exports={en:["change pane height"],de:["Höhe des Fensters ändern"]}},96379:e=>{e.exports={en:["change plus button visibility"],de:["Sichtbarkeit der Plustaste ändern"]}},76660:e=>{e.exports={en:["change point"],de:["Punkt ändern"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],de:["Sichtbarkeit des Preislabels vorbörslich/nachbörslich ändern"]
|
||||
}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],de:["Sichtbarkeit der Preislinie vorbörslich/nachbörslich ändern"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],de:["Sichtbarkeit der Linie des vorherigen Schlusskurses ändern"]}},8662:e=>{e.exports={en:["change price line visibility"],de:["Kurslinie ändern"]}},2509:e=>{e.exports={en:["change price to bar ratio"],de:["Verhältnis von Preis zu Balken ändern"]}},32829:e=>{e.exports={en:["change resolution"],de:["Auflösung ändern"]}},35400:e=>{e.exports={en:["change symbol"],de:["Symbol ändern"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],de:["Sichtbarkeit der Symbolbeschriftungen ändern"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],de:["Sichtbarkeit des letzten Wertes des Symbols ändern"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],de:["Sichtbarkeit des Symbols für den vorherigen Schlusswert ändern"]}},87041:e=>{e.exports={en:["change session"],de:["Session ändern"]}},38413:e=>{e.exports={en:["change session breaks visibility"],de:["Sichtbarkeit der Session-Übergänge ändern"]}},49965:e=>{e.exports={en:["change series style"],de:["Reihen-Stil ändern"]}},47474:e=>{e.exports={en:["change splits visibility"],de:["Sichtbarkeit der Splits ändern"]}},20137:e=>{e.exports={en:["change timezone"],de:["Zeitzone ändern"]}},85975:e=>{e.exports={en:["change unit"],de:["Einheit ändern"]}},1924:e=>{e.exports={en:["change visibility"],de:["Sichtbarkeit ändern"]}},84331:e=>{e.exports={en:["change visibility at current interval"],de:["Sichtbarkeit im aktuellen Intervall ändern"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],de:["Sichtbarkeit im aktuellen Intervall und darüber ändern"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],de:["Sichtbarkeit im aktuellen Intervall und darunter ändern"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],de:["Sichtbarkeit in allen Intervallen ändern"]}},94566:e=>{e.exports={en:["charts by TradingView"],de:["Charts von TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],de:["Linien-Klon Werkzeug"]}},46219:e=>{e.exports={en:["create line tools group"],de:["Linien-Tool-Gruppe erstellen"]}},95394:e=>{e.exports={en:["create line tools group from selection"],de:["Linien-Tool-Gruppe aus Auswahl erstellen"]}},12898:e=>{e.exports={en:["create {tool}"],de:["{tool} erstellen"]}},94227:e=>{e.exports={en:["cut sources"],de:["Quellen ausschneiden"]}},11500:e=>{e.exports={en:["cut {title}"],de:["{title} ausschneiden"]}},63869:e=>{e.exports={en:["anchor objects"],de:["Objekte verankern"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],de:["Linien Tool {lineTool} zu Gruppe {name} hinzufügen"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],de:["Linienwerkzeug(e) zur Gruppe {group} hinzufügen"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],
|
||||
de:["Diese Finanzkennzahl zum gesamten Layout hinzufügen"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],de:["Den Indikator dem gesamten Layout hinzufügen"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],de:["Die Strategie dem gesamten Layout hinzufügen"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],de:["Das Symbol dem gesamten Layout hinzufügen"]}},4128:e=>{e.exports={en:["align to 45 degrees"],de:["auf 45 Grad ausrichten"]}},68231:e=>{e.exports={en:["apply chart theme"],de:["Chart-Thema anwenden"]}},99551:e=>{e.exports={en:["apply all chart properties"],de:["alle Chart-Eigenschaften anwenden"]}},89720:e=>{e.exports={en:["apply drawing template"],de:["Zeichenvorlage verwenden"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],de:["Werkseinstellungen auf ausgewählte Quellen anwenden"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],de:["Indikatoren auf das gesamte Layout anwenden"]}},69604:e=>{e.exports={en:["apply study template {template}"],de:["Studienvorlage anwenden {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],de:["Thema auf Symbolleisten anwenden"]}},1979:e=>{e.exports={en:["bring group {title} forward"],de:["Gruppe {title} nach vorne bringen"]}},53159:e=>{e.exports={en:["bring {title} to front"],de:["{title} nach vorne bringen"]}},41966:e=>{e.exports={en:["bring {title} forward"],de:["{title} nach vorne bewegen"]}},44676:e=>{e.exports={en:["by TradingView"],de:["von TradingView"]}},58850:e=>{e.exports={en:["date range lock"],de:["Sperre für Datumsbereich"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],de:["Linien-Tools aus Gruppe {group} ausschliessen"]}},13017:e=>{e.exports={en:["hide {title}"],de:["Verberge {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],de:["Markierungen auf Balken verbergen"]}},56558:e=>{e.exports={en:["interval lock"],de:["Intervall verriegeln"]}},6830:e=>{e.exports={en:["invert scale"],de:["Skala invertieren"]}},48818:e=>{e.exports={en:["insert {title}"],de:["{title} einfügen"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],de:["{title} nach {targetTitle} einfügen"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],de:["{title} einfügen nach {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],de:["{title} vor {target} einfügen"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],de:["{title} vor {targetTitle} einfügen"]}},43364:e=>{e.exports={en:["load default drawing template"],de:["Standard-Zeichnungsvorlage laden"]}},62011:e=>{e.exports={en:["loading..."],de:["lade..."]}},76104:e=>{e.exports={en:["lock {title}"],de:["Fixiere {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],de:["Gruppe {group} fixieren"]}},18942:e=>{e.exports={en:["lock objects"],de:["Objekte verriegeln"]}},98277:e=>{e.exports={en:["move"],de:["bewegen"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],de:["{title} zu neuer Kursskala, links, bewegen"]}},77482:e=>{e.exports={
|
||||
en:["move {title} to new right scale"],de:["bewege {title} zu neuer rechter Skala"]}},64077:e=>{e.exports={en:["move all scales to left"],de:["Alle Skalen nach links bewegen"]}},19013:e=>{e.exports={en:["move all scales to right"],de:["Alle Skalen nach rechts bewegen"]}},52510:e=>{e.exports={en:["move drawing(s)"],de:["Zeichnung(en) bewegen"]}},79209:e=>{e.exports={en:["move left"],de:["nach links bewegen"]}},60114:e=>{e.exports={en:["move right"],de:["nach rechts bewegen"]}},44854:e=>{e.exports={en:["move scale"],de:["Skala bewegen"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],de:["Skalierung für {title} aufheben (Vollbild)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],de:["Gruppe {group} unsichtbar machen"]}},45987:e=>{e.exports={en:["make group {group} visible"],de:["Gruppe {group} sichtbar machen"]}},78055:e=>{e.exports={en:["merge down"],de:["nach unten zusammenführen"]}},41866:e=>{e.exports={en:["merge to pane"],de:["zum Fensterbereich zusammenfassen"]}},52458:e=>{e.exports={en:["merge up"],de:["nach oben zusammenführen"]}},90091:e=>{e.exports={en:["n/a"],de:["keine Angabe"]}},94981:e=>{e.exports={en:["scale price"],de:["Preisskala"]}},63796:e=>{e.exports={en:["scale price chart only"],de:["Nur den Preis-Chart vergrößern"]}},70771:e=>{e.exports={en:["scale time"],de:["Skalenzeit"]}},42070:e=>{e.exports={en:["scroll"],de:["scrollen"]}},87840:e=>{e.exports={en:["scroll time"],de:["Zeitachse scrollen"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],de:["Auswahlstrategie der Preisskala auf {title} setzen"]}},40962:e=>{e.exports={en:["send {title} backward"],de:["{title} nach hinten bewegen"]}},5005:e=>{e.exports={en:["send {title} to back"],de:["{title} nach hinten verschieben"]}},69546:e=>{e.exports={en:["send group {title} backward"],de:["Gruppe {title} nach hinten verschieben"]}},63934:e=>{e.exports={en:["share line tools globally"],de:["Linientools global teilen"]}},90221:e=>{e.exports={en:["share line tools in layout"],de:["Linienwerkzeuge im Layout freigeben"]}},13336:e=>{e.exports={en:["show all ideas"],de:["alle Ideen anzeigen"]}},91395:e=>{e.exports={en:["show ideas of followed users"],de:["Ideen von Usern denen ich folge anzeigen"]}},57460:e=>{e.exports={en:["show my ideas only"],de:["nur meine Ideen anzeigen"]}},4114:e=>{e.exports={en:["stay in drawing mode"],de:["im Zeichenmodus bleiben"]}},3350:e=>{e.exports={en:["stop syncing drawing"],de:["Zeichnung nicht mehr synchronisieren"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],de:["Synchronisierung der Linienwerkzeuge beenden"]}},53278:e=>{e.exports={en:["symbol lock"],de:["Symbol verriegeln"]}},91677:e=>{e.exports={en:["sync time"],de:["Uhrzeit synchronisieren"]}},3140:e=>{e.exports={en:["powered by"],de:["unterstützt von"]}},92800:e=>{e.exports={en:["powered by TradingView"],de:["unterstützt von TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],de:["Zeichnung einfügen"]}},1064:e=>{e.exports={en:["paste indicator"],de:["Indikator einfügen"]}},57010:e=>{e.exports={
|
||||
en:["paste {title}"],de:["{title} einfügen"]}},78690:e=>{e.exports={en:["pin to left scale"],de:["an linke Skala anheften"]}},7495:e=>{e.exports={en:["pin to right scale"],de:["An rechte Skala anheften"]}},81566:e=>{e.exports={en:["pin to scale {label}"],de:["an Skala anheften {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],de:["Ebenen neu anordnen"]}},60806:e=>{e.exports={en:["remove all indicators"],de:["alle Indikatoren entfernen"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],de:["alle Indikatoren und Zeichentools entfernen"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],de:["Entfernung deaktivierter Leerzeilen-Werkzeuge"]}},30538:e=>{e.exports={en:["remove drawings"],de:["Zeichnungen entfernen"]}},1193:e=>{e.exports={en:["remove drawings group"],de:["Zeichnungen der Gruppe entfernen"]}},38199:e=>{e.exports={en:["remove line data sources"],de:["Datenquellen entfernen"]}},93333:e=>{e.exports={en:["remove pane"],de:["Ebene entfernen"]}},94543:e=>{e.exports={en:["remove {title}"],de:["{title} entfernen"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],de:["Linienwerkzeuge der Gruppe {name} entfernen"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],de:["Gruppe {group} zu {newName} umbenennen"]}},85366:e=>{e.exports={en:["reset layout sizes"],de:["Layoutgröße zurücksetzen"]}},3323:e=>{e.exports={en:["reset scales"],de:["Skalen zurücksetzen"]}},17336:e=>{e.exports={en:["reset time scale"],de:["Zeitachse zurücksetzen"]}},47418:e=>{e.exports={en:["resize layout"],de:["Größe des Layouts ändern"]}},85815:e=>{e.exports={en:["restore defaults"],de:["Standardeinstellungen wiederherstellen"]}},96881:e=>{e.exports={en:["restore study defaults"],de:["Analysenstandard wiederherstellen"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],de:["Maximierten Fensterstatus umschalten"]}},42240:e=>{e.exports={en:["toggle auto scale"],de:["auf automatische Skalierung umschalten"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],de:["Minimierten Fensterstatus umschalten"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],de:["auf 100 indexiert"]}},49695:e=>{e.exports={en:["toggle lock scale"],de:["Skala verriegeln"]}},49403:e=>{e.exports={en:["toggle log scale"],de:["auf logarithmische Skalierung umschalten"]}},98994:e=>{e.exports={en:["toggle percentage scale"],de:["Prozentskala umschalten"]}},80688:e=>{e.exports={en:["toggle regular scale"],de:["reguläre Skala"]}},46807:e=>{e.exports={en:["track time"],de:["Uhrzeit verfolgen"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],de:["Freigabe von Linientools ausschalten"]}},99234:e=>{e.exports={en:["unanchor objects"],de:["Verankerung von Objekten lösen"]}},23230:e=>{e.exports={en:["unlock objects"],de:["Objekte entriegeln"]}},74590:e=>{e.exports={en:["unlock group {group}"],de:["Gruppe {group} Fixierung aufheben"]}},12525:e=>{e.exports={en:["unlock {title}"],de:["{title} entriegeln"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],
|
||||
de:["zum neuen unteren Fenster anheften"]}},79443:e=>{e.exports={en:["unmerge up"],de:["Obere Zusammenführung lösen"]}},46453:e=>{e.exports={en:["unmerge down"],de:["Untere Zusammenführung lösen"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],de:["Oh nein! Der Charttyp {chartStyle} ist zurzeit nicht für Intervalle auf Tick-Basis erhältlich."]}},41643:e=>{e.exports={en:["{count} bars"],de:["{count} Balken"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],de:["{symbol} Finanzdaten von TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],de:["{userName} freigegeben für {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"],de:["vergrößern"]}},49856:e=>{e.exports={en:["zoom in"],de:["Vergrößern"]}},73638:e=>{e.exports={en:["zoom out"],de:["Verkleinern"]}},41807:e=>{e.exports={en:["day","days"],de:["Tag","Tage"]}},42328:e=>{e.exports={en:["hour","hours"],de:["Stunde","Stunden"]}},98393:e=>{e.exports={en:["month","months"],de:["Monat","Monate"]}},78318:e=>{e.exports={en:["minute","minutes"],de:["Minute","Minuten"]}},33232:e=>{e.exports={en:["second","seconds"],de:["Sekunde","Sekunden"]}},89937:e=>{e.exports={en:["range","ranges"],de:["Bereich","Bereiche"]}},48898:e=>{e.exports={en:["week","weeks"],de:["Woche","Wochen"]}},11913:e=>{e.exports={en:["tick","ticks"],de:["Tick","Ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],de:["{amount} Zeichnung","{amount} Zeichnungen"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],de:["{amount} Indikator","{amount} Indikatoren"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],de:["{count} M.","{count} M."]}},47801:e=>{e.exports={en:["{count}d","{count}d"],de:["{count} T.","{count} T."]}},46766:e=>{e.exports={en:["{count}y","{count}y"],de:["{count} J.","{count} J."]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],de:["Australischer Dollar/Kanadischer Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],de:["Australischer Dollar/Schweizer Franken"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],de:["Australischer Dollar/Japanischer Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],de:["Australischer Dollar/Neuseeländischer Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],de:["Australischer Dollar/Russischer Rubel"]},
|
||||
e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],de:["Australischer Dollar/U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],de:["Bitcoin Cash / Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],de:["Brasilianischer Real / Japanischer Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],de:["Bitcoin / Brasilianischer Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],de:["Bitcoin / Kanadischer Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],de:["Bitcoin / Chinesischer Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],de:["Bitcoin / Britisches Pfund"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],de:["Bitcoin / Japanischer Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],de:["Bitcoin / Südkoreanischer Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],de:["Bitcoin / Polnischer Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],de:["Bitcoin / Russischer Rubel"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],de:["Bitcoin / Thailändischer Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],de:["Bitcoin / Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],de:["Kanadischer Dollar/Japanischer Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],de:["Kanadischer Dollar / US-Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},
|
||||
e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],de:["Mais Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],de:["Sojabohnen Mehl Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],de:["10 Jahres T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],de:["Hafer Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],de:["30 Tages Federal Funds Zinsraten Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],de:["Reis Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],de:["Sojabohnen Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],de:["Weizen Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],de:["Sojabohnen Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],de:["Weizen Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],de:["E-MINI DOW JONES ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],de:["Schweizer Franken/Japanischer Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],de:["Schweizer Franken / US-Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],de:["Butter Futures-Cash (Continuous: aktueller vorne)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],de:["Mastrind Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],de:["Mager-Schwein Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],de:["Lebendvieh Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],de:["Japanischer Jen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],de:["NASDAQ 100 E-MINI Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],de:["Europäische Premium Aluminium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],de:["Kupfer Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],de:["Silber Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],de:["E-mini Kupfer Futures"]},
|
||||
e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],de:["Silber (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],de:["Kupfer CFD's"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],de:["CFDs auf Mais"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],de:["CFDs auf Baumwolle"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],de:["Total Krypto Marktkapitalisierung, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],de:["Dow Jones Industrial Average"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],de:["Ethereum Classic / Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],de:["Ethereum / Britisches Pfund"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],de:["Ethereum / Japanischer Jen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],de:["Ethereum / Südkoreanischer Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],de:["Ethereum / Thailändischer Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],de:["Ethereum / Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],de:["Euro / Australischer Dollar"]},
|
||||
e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],de:["Euro / Brasilianischer Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],de:["Euro / Kanadischer Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],de:["Euro / Schweizer Franken"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],de:["Euro / Britisches Pfund"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],de:["Euro / Japanischer Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],de:["Euro / Norwegische Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],de:["Euro / Neuseeländischer Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],de:["EURO / RUSSISCHER RUBEL"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],de:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],de:["Euro / Schwedische Krone"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],de:["Euro / Neue Türkische Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],de:["Euro / US-Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],de:["Bruttoinlandsprodukt, 1-Dezimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],de:["Gesamtbevölkerung: alle Altersgruppen einschließlich der Streitkräfte im Ausland"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],de:["Arbeitslosenquote Zivil"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],de:["Britisches Pfund / Australischer Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],de:["Britisches Pfund / Kanadischer Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],de:["Britisches Pfund / Schweizer Franken"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],de:["PFUND STERLING / EURO"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],de:["Britisches Pfund / Japanischer Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],
|
||||
de:["Britisches Pfund / Neuseeländischer Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],de:["Britisches Pfund / Polnischer Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],de:["Pfund Sterling / Russischer Rubel"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],de:["Britisches Pfund / US-Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],de:["Hang Seng Chinenischer Leitindex"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],de:["Japanischer Yen / Südkoreanischer Won"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],de:["Japanischer Yen / Russischer Rubel"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],de:["Japanischer Yen / US-Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],de:["Litecoin / Brasilianischer Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],de:["Litecoin / Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},
|
||||
e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],de:["Ishares 7-10 Year Treasury BondETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."],de:["#NASDAQ:LCID-Symbolbeschreibung"]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],de:["Erdgas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],de:["Kaffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],de:["Platin Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},
|
||||
e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],de:["Baumwoll-Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],de:["E-mini Erdgas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],de:["E-mini Leicht-Rohöl Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],de:["E-mini Benzin Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],de:["Neuseeländischer Dollar / Japanischer Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],de:["Neuseeländischer Dollar / US-Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],de:["S&P/NZX ALL Index ( Capital Index )"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],de:["S&P / NZX 50 Index"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],de:["Erdgas CFD's"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],de:["Kupfer CFD's (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],de:["Russischer RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={
|
||||
en:["CFDs on Soybeans"],de:["CFDs auf Sojabohnen"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],de:["CFDs auf Zucker"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."],de:["#TADAWUL:2370-Symbolbeschreibung"]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],de:["Tadawul Aktienindex"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],de:["TA -35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],de:["Australische Staatsanleihe 10-Jahre"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],de:["Australische Staatsanleihen 10-Jahre"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],de:["Australischer-Dollar Währungsindex"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],de:["Britischer-Pfund Währungsindex"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],de:["Kanadische Staatsanleihen, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],de:["Kanadische Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],de:["Chinesische Staatsanleihe 10-Jahre"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],de:["Chinesische Staatsanleihen 10-Jahre"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],de:["Kanadischer-Dollar Währungsindex"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],de:["Deutsche Staatsanleihen 10-Jahre"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],de:["Deutsche Staatsanleihen 10-Jahre"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],de:["US-Dollar Währungsindex"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],de:["Spanische Staatsanleihe 10-Jahre"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],de:["Spanische Staatsanleihen 10-Jahre"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},
|
||||
e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],de:["Euro Währungsindex"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],de:["Französiche Staatsanleihe 10-Jahre"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],de:["Französiche Staatsanleihen 10-Jahre"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],de:["UK Staatsanleihe 2-Jahre"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],de:["UK Staatsanleihe 10-Jahre"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],de:["Britische Staatsanleihen 10-Jahre"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],de:["GOLD CFD's (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],de:["Indonesische Staatsanleihe 3-Jahre"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],de:["Indonesische Staatsanleihe 10-Jahre"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],de:["Indonesien Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],de:["India Staatsanleihe 10-Jahre"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],de:["Indische Staatsanleihen 10 Jahre"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],de:["Italienische Staatsanleihe 10-Jahre"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],de:["Italienische Staatsanleihen 10 Jahre"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],de:["Japanische Staatsanleihe 10-Jahre"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],de:["Japanische Staatsanleihen 10 Jahre"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],de:["Japanischer-Yen Währungsindex"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],de:["Koreanische Staatsanleihe 10-Jahre"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],de:["Koreanische Staatsanleihen 10-Jahre"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],de:["Malaysische Staatsanleihen 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],de:["Malaysische Staatsanleihen 10 Jahre"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"]},
|
||||
e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],de:["Niederländische Staatsanleihen, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],de:["Niederländische Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],de:["Neuseeländische Staatsanleihen, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],de:["Neuseeländische Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],de:["Palladium CFD's (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],de:["Polnische Staatsanleihen 5 Jahre"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],de:["Polnische Staatsanleihen 10 Jahre"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],de:["CFDs auf Platin (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],de:["Portugiesische Staatsanleihe 10-Jahre"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],de:["Portugiesische Staatsanleihen 10-Jahre"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],de:["Silber CFD's (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],de:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],de:["Schweizer Marktindex"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],de:["Schweizer Franken Währungsindex"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],de:["Türkei Staatsanleihe 10-Jahre"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],de:["Türkische Staatsanleihen 10 Jahre"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],de:["Brent Rohöl CFD's"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],de:["US Staatsanleihe 2-Jahre"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],de:["US Staatsanleihen 2 Jahre"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],de:["US Staatsanleihe 5-Jahre"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],de:["US Staatsanleihen 5 Jahre"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],de:["US Staatsanleihe 10-Jahre"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],
|
||||
de:["US Staatsanleihen 10 Jahre"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],de:["US-Staatsanleihen 30 Jahre"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],de:["WTI Rohöl CFD's"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],de:["Volatilitätsindex S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],de:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],de:["FTSE 100 Englischer Leitindex"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],de:["Rohöl CFD's (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],de:["US-Dollar / Australischer Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],de:["US Dollar / Brasilianischer Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],de:["US-Dollar / Kanadischer Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],de:["US-Dollar / Schweizer Franken"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],de:["US DOLLAR / YUAN RENMINBI"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],de:["US DOLLAR / DÄNISCHE KRONE"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],de:["US-Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],de:["US-Dollar / Pfund Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],de:["U.S.-Dollar/Hongkong-Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],de:["U.S. Dollar / Ungarischer Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],de:["US Dollar / Rupie"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],de:["U.S. Dollar / Israelischer Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],de:["US-Dollar / Indische Rupie"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],de:["US-Dollar / Japanischer Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],de:["U.S. Dollar / Südkorea"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],de:["U.S. Dollar/Mexikanischer Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],de:["US Dollar / Neuseeland Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],de:["US Dollar / Philippinischer Peso"]},
|
||||
e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],de:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],de:["U.S. Dollar / Russischer Rubel"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],de:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],de:["US-Dollar / Schwedische Krone"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],de:["US-DOLLAR / SINGAPUR-DOLLAR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],de:["US-Dollar / Türkische Neue Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],de:["U.S. Dollar / Süd Afrikanischer Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],de:["Rohöl CFD's (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],de:["CFDs auf Weizen"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],de:["Silber / US-Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],de:["Bitcoin / Kanadischer Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],de:["Palladium CFD's"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],de:["Platinum / US-Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],de:["XRP / US Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],de:["Zach / U.S. Dollar"]}}}]);
|
||||
de:["Laufzeitfehler"]}},66719:e=>{e.exports={en:["Warning"],de:["Warnung"]}},5959:e=>{e.exports={en:["Warsaw"],de:["Warschau"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],de:["Tokio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],de:["Tabelle"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"],de:["Vorlage"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],de:["Der Datenlieferant stellt keine Volumendaten für dieses Symbol zur Verfügung."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],de:["Die Veröffentlichungsvorschau konnte nicht geladen werden. Bitte deaktivieren Sie Ihre Browser-Erweiterungen und versuchen Sie es erneut."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],de:["Die Verarbeitungsdauer der Anfrage war zu lange. Stellen Sie bitte sicher, dass Sie über eine stabile Internetverbindung verfügen. Wenn der Fehler bestehen bleibt, dann verkürzen Sie die Länge des angefragten Zeitintervalls."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],de:["Es gibt keine Daten für den von Ihnen gewählten Zeitraum und Chart-Zeitrahmen."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],de:["Die Datei ist zu groß. Die max. Dateigröße beträgt {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],de:["Dieser Indikator kann nicht auf einen anderen Indikator angewandt werden"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],de:["Dieses Script enthält einen Fehler. Kontaktieren Sie bitte den Autor."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],de:["Dieses Skript ist nur auf Einladung verfügbar. Um Zugang zu erhalten, wenden Sie sich bitte an den jeweiligen Autor."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],de:["Das, nur auf {linkStart}Tradingview{linkEnd} verfügbare, Symbol."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],de:["Three-Drives-Muster"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],de:["Intervalle auf Tick-Basis sind nicht für {ticker} erhältlich."]}},12806:e=>{e.exports={en:["Time"],de:["Zeit"]}},20909:e=>{e.exports={en:["Time zone"],de:["Zeitzone"]}},46852:e=>{e.exports={en:["Time Cycles"],de:["Zeitzyklen"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={
|
||||
en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],de:["TradingView ist interaktiv und verfügt über Steuerbefehle, die mit einem Screenreader verwendet werden können. Es folgt eine Liste von Tastatureingaben, die für die Interaktion mit der Plattform verwendet werden können"]}},35757:e=>{e.exports={en:["Trend Angle"],de:["Trendwinkel"]}},97339:e=>{e.exports={en:["Trend Line"],de:["Trendlinie"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],de:["Trendbasierte Fib-Extension"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],de:["Trendbasierte Fib-Zeit"]}},1671:e=>{e.exports={en:["Triangle"],de:["Dreieck"]}},76152:e=>{e.exports={en:["Triangle Down"],de:["Dreieck Abwärts"]}},90148:e=>{e.exports={en:["Triangle Pattern"],de:["Dreiecksmuster"]}},21236:e=>{e.exports={en:["Triangle Up"],de:["Dreieck Aufwärts"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],de:["Rückgängig"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],de:["Unerwarteter Fehler im Modus Deep Backtesting. Kontaktieren Sie den Kundendienst für weitere Informationen."]}},15432:e=>{e.exports={en:["Units"],de:["Einheiten"]}},11768:e=>{e.exports={en:["Unknown error"],de:["Unbekannter Fehler"]}},99894:e=>{e.exports={en:["Unlock"],de:["Entsperren"]}},75546:e=>{e.exports={en:["Unsupported interval"],de:["Nicht unterstütztes Intervall"]}},8580:e=>{e.exports={en:["User-defined error"],de:["Benutzerdefinierter Fehler"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],de:["Der Volumenprofil-Indikator ist nur in unseren leistungsstarken Abonnements verfügbar."]}},93722:e=>{e.exports={en:["Volume candles"],de:["Volumenkerzen"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],de:["Volumendaten sind nicht im BIST MIXED Daten-Abonnement enthalten."]}},92763:e=>{e.exports={en:["Volume footprint"],de:["Volumen-Fußabdruck"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],de:["Vertikale Linie"]}},23160:e=>{e.exports={en:["Vienna"],de:["Wien"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],de:["Sichtbarkeit"]}},54853:e=>{e.exports={en:["Visibility on intervals"],de:["Sichtbarkeit der Intervalle"]}},58302:e=>{e.exports={en:["Visible on tap"],de:["Sichtbar bei Antippen"]}},10309:e=>{e.exports={en:["Visible on mouse over"],de:["Sichtbar, wenn der Mauszeiger darüber bewegt wird"]}},4077:e=>{e.exports={en:["Visual order"],de:["Visuelle Reihenfolge"]}},11316:e=>{e.exports={en:["X Cross"],de:["X Kreuz"]}},42231:e=>{e.exports={en:["XABCD Pattern"],de:["XABCD-Muster"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],
|
||||
de:["Sie können dieses Pivot-Zeitfenster nicht mit dieser Auflösung sehen."]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],de:["Sie haben gesperrte Zeichnungen für dieses Symbol. Möchten Sie auch die Zeichnungen entfernen?"]}},53168:e=>{e.exports={en:["Yangon"],de:["Rangun"]}},93123:e=>{e.exports={en:["Yes, remove them"],de:["Ja, entfernen"]}},62859:e=>{e.exports={en:["Zurich"],de:["Zürich"]}},47977:e=>{e.exports={en:["change Elliott degree"],de:["Elliott-Grad ändern"]}},61557:e=>{e.exports={en:["change no overlapping labels"],de:["überlappenden Labels anpassen"]}},76852:e=>{e.exports={en:["change average close price label visibility"],de:["Sichtbarkeit des Labels für den durchschnittlichen Schlusskurs ändern"]}},1022:e=>{e.exports={en:["change average close price line visibility"],de:["Sichtbarkeit der Linie für den durchschnittlichen Schlusskurs ändern"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],de:["Sichtbarkeit der Bid- und Ask-Labels ändern"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],de:["Sichtbarkeit der Bid- und Ask-Linien ändern"]}},32302:e=>{e.exports={en:["change currency"],de:["Währung ändern"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],de:["Chart-Layout ändern zu {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],de:["Änderung des kontinuierlichen Kontrakts unterbricht die Sichtbarkeit"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],de:["Sichtbarkeit des Countdowns bei Balkenschluss ändern"]}},16979:e=>{e.exports={en:["change date range"],de:["Datumsbereich ändern"]}},53929:e=>{e.exports={en:["change dividends visibility"],de:["Sichtbarkeit der Dividenden ändern"]}},6119:e=>{e.exports={en:["change events visibility on chart"],de:["Sichtbarkeit von Events auf dem Chart ändern"]}},6819:e=>{e.exports={en:["change earnings visibility"],de:["Sichtbarkeit der Earnings ändern"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],de:["Die Ablaufsichtbarkeit des Terminkontrakts ändern"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],de:["Sichtbarkeit von Hoch und Tief Preislabels ändern"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],de:["Sichtbarkeit von Hoch und Tief Preislinien ändern"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],de:["ändert die Sichtbarkeit des Namenslabels der Indikatoren"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],de:["Ändert die Sichtbarkeit des Labels für Indikatorenwerte"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],de:["Sichtbarkeit der neuesten Updates ändern"]}},88849:e=>{e.exports={en:["change linking group"],de:["Verknüpfungsgruppe ändern"]}},14691:e=>{e.exports={en:["change pane height"],de:["Höhe des Fensters ändern"]}},96379:e=>{e.exports={en:["change plus button visibility"],de:["Sichtbarkeit der Plustaste ändern"]}},
|
||||
76660:e=>{e.exports={en:["change point"],de:["Punkt ändern"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],de:["Sichtbarkeit des Preislabels vorbörslich/nachbörslich ändern"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],de:["Sichtbarkeit der Preislinie vorbörslich/nachbörslich ändern"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],de:["Sichtbarkeit der Linie des vorherigen Schlusskurses ändern"]}},8662:e=>{e.exports={en:["change price line visibility"],de:["Kurslinie ändern"]}},2509:e=>{e.exports={en:["change price to bar ratio"],de:["Verhältnis von Preis zu Balken ändern"]}},32829:e=>{e.exports={en:["change resolution"],de:["Auflösung ändern"]}},35400:e=>{e.exports={en:["change symbol"],de:["Symbol ändern"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],de:["Sichtbarkeit der Symbolbeschriftungen ändern"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],de:["Sichtbarkeit des letzten Wertes des Symbols ändern"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],de:["Sichtbarkeit des Symbols für den vorherigen Schlusswert ändern"]}},87041:e=>{e.exports={en:["change session"],de:["Session ändern"]}},38413:e=>{e.exports={en:["change session breaks visibility"],de:["Sichtbarkeit der Session-Übergänge ändern"]}},49965:e=>{e.exports={en:["change series style"],de:["Reihen-Stil ändern"]}},47474:e=>{e.exports={en:["change splits visibility"],de:["Sichtbarkeit der Splits ändern"]}},20137:e=>{e.exports={en:["change timezone"],de:["Zeitzone ändern"]}},85975:e=>{e.exports={en:["change unit"],de:["Einheit ändern"]}},1924:e=>{e.exports={en:["change visibility"],de:["Sichtbarkeit ändern"]}},84331:e=>{e.exports={en:["change visibility at current interval"],de:["Sichtbarkeit im aktuellen Intervall ändern"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],de:["Sichtbarkeit im aktuellen Intervall und darüber ändern"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],de:["Sichtbarkeit im aktuellen Intervall und darunter ändern"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],de:["Sichtbarkeit in allen Intervallen ändern"]}},94566:e=>{e.exports={en:["charts by TradingView"],de:["Charts von TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],de:["Linien-Klon Werkzeug"]}},46219:e=>{e.exports={en:["create line tools group"],de:["Linien-Tool-Gruppe erstellen"]}},95394:e=>{e.exports={en:["create line tools group from selection"],de:["Linien-Tool-Gruppe aus Auswahl erstellen"]}},12898:e=>{e.exports={en:["create {tool}"],de:["{tool} erstellen"]}},94227:e=>{e.exports={en:["cut sources"],de:["Quellen ausschneiden"]}},11500:e=>{e.exports={en:["cut {title}"],de:["{title} ausschneiden"]}},63869:e=>{e.exports={en:["anchor objects"],de:["Objekte verankern"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],de:["Linien Tool {lineTool} zu Gruppe {name} hinzufügen"]}},21162:e=>{e.exports={
|
||||
en:["add line tool(s) to group {group}"],de:["Linienwerkzeug(e) zur Gruppe {group} hinzufügen"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],de:["Diese Finanzkennzahl zum gesamten Layout hinzufügen"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],de:["Den Indikator dem gesamten Layout hinzufügen"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],de:["Die Strategie dem gesamten Layout hinzufügen"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],de:["Das Symbol dem gesamten Layout hinzufügen"]}},4128:e=>{e.exports={en:["align to 45 degrees"],de:["auf 45 Grad ausrichten"]}},68231:e=>{e.exports={en:["apply chart theme"],de:["Chart-Thema anwenden"]}},99551:e=>{e.exports={en:["apply all chart properties"],de:["alle Chart-Eigenschaften anwenden"]}},89720:e=>{e.exports={en:["apply drawing template"],de:["Zeichenvorlage verwenden"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],de:["Werkseinstellungen auf ausgewählte Quellen anwenden"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],de:["Indikatoren auf das gesamte Layout anwenden"]}},69604:e=>{e.exports={en:["apply study template {template}"],de:["Studienvorlage anwenden {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],de:["Thema auf Symbolleisten anwenden"]}},1979:e=>{e.exports={en:["bring group {title} forward"],de:["Gruppe {title} nach vorne bringen"]}},53159:e=>{e.exports={en:["bring {title} to front"],de:["{title} nach vorne bringen"]}},41966:e=>{e.exports={en:["bring {title} forward"],de:["{title} nach vorne bewegen"]}},44676:e=>{e.exports={en:["by TradingView"],de:["von TradingView"]}},58850:e=>{e.exports={en:["date range lock"],de:["Sperre für Datumsbereich"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],de:["Linien-Tools aus Gruppe {group} ausschliessen"]}},13017:e=>{e.exports={en:["hide {title}"],de:["Verberge {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],de:["Markierungen auf Balken verbergen"]}},56558:e=>{e.exports={en:["interval lock"],de:["Intervall verriegeln"]}},6830:e=>{e.exports={en:["invert scale"],de:["Skala invertieren"]}},48818:e=>{e.exports={en:["insert {title}"],de:["{title} einfügen"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],de:["{title} nach {targetTitle} einfügen"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],de:["{title} einfügen nach {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],de:["{title} vor {target} einfügen"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],de:["{title} vor {targetTitle} einfügen"]}},43364:e=>{e.exports={en:["load default drawing template"],de:["Standard-Zeichnungsvorlage laden"]}},62011:e=>{e.exports={en:["loading..."],de:["lade..."]}},76104:e=>{e.exports={en:["lock {title}"],de:["Fixiere {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],de:["Gruppe {group} fixieren"]}},18942:e=>{e.exports={en:["lock objects"],de:["Objekte verriegeln"]}},98277:e=>{e.exports={
|
||||
en:["move"],de:["bewegen"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],de:["{title} zu neuer Kursskala, links, bewegen"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],de:["bewege {title} zu neuer rechter Skala"]}},64077:e=>{e.exports={en:["move all scales to left"],de:["Alle Skalen nach links bewegen"]}},19013:e=>{e.exports={en:["move all scales to right"],de:["Alle Skalen nach rechts bewegen"]}},52510:e=>{e.exports={en:["move drawing(s)"],de:["Zeichnung(en) bewegen"]}},79209:e=>{e.exports={en:["move left"],de:["nach links bewegen"]}},60114:e=>{e.exports={en:["move right"],de:["nach rechts bewegen"]}},44854:e=>{e.exports={en:["move scale"],de:["Skala bewegen"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],de:["Skalierung für {title} aufheben (Vollbild)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],de:["Gruppe {group} unsichtbar machen"]}},45987:e=>{e.exports={en:["make group {group} visible"],de:["Gruppe {group} sichtbar machen"]}},78055:e=>{e.exports={en:["merge down"],de:["nach unten zusammenführen"]}},41866:e=>{e.exports={en:["merge to pane"],de:["zum Fensterbereich zusammenfassen"]}},52458:e=>{e.exports={en:["merge up"],de:["nach oben zusammenführen"]}},90091:e=>{e.exports={en:["n/a"],de:["keine Angabe"]}},94981:e=>{e.exports={en:["scale price"],de:["Preisskala"]}},63796:e=>{e.exports={en:["scale price chart only"],de:["Nur den Preis-Chart vergrößern"]}},70771:e=>{e.exports={en:["scale time"],de:["Skalenzeit"]}},42070:e=>{e.exports={en:["scroll"],de:["scrollen"]}},87840:e=>{e.exports={en:["scroll time"],de:["Zeitachse scrollen"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],de:["Auswahlstrategie der Preisskala auf {title} setzen"]}},40962:e=>{e.exports={en:["send {title} backward"],de:["{title} nach hinten bewegen"]}},5005:e=>{e.exports={en:["send {title} to back"],de:["{title} nach hinten verschieben"]}},69546:e=>{e.exports={en:["send group {title} backward"],de:["Gruppe {title} nach hinten verschieben"]}},63934:e=>{e.exports={en:["share line tools globally"],de:["Linientools global teilen"]}},90221:e=>{e.exports={en:["share line tools in layout"],de:["Linienwerkzeuge im Layout freigeben"]}},13336:e=>{e.exports={en:["show all ideas"],de:["alle Ideen anzeigen"]}},91395:e=>{e.exports={en:["show ideas of followed users"],de:["Ideen von Usern denen ich folge anzeigen"]}},57460:e=>{e.exports={en:["show my ideas only"],de:["nur meine Ideen anzeigen"]}},4114:e=>{e.exports={en:["stay in drawing mode"],de:["im Zeichenmodus bleiben"]}},3350:e=>{e.exports={en:["stop syncing drawing"],de:["Zeichnung nicht mehr synchronisieren"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],de:["Synchronisierung der Linienwerkzeuge beenden"]}},53278:e=>{e.exports={en:["symbol lock"],de:["Symbol verriegeln"]}},91677:e=>{e.exports={en:["sync time"],de:["Uhrzeit synchronisieren"]}},3140:e=>{e.exports={en:["powered by"],de:["unterstützt von"]}},92800:e=>{e.exports={
|
||||
en:["powered by TradingView"],de:["unterstützt von TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],de:["Zeichnung einfügen"]}},1064:e=>{e.exports={en:["paste indicator"],de:["Indikator einfügen"]}},57010:e=>{e.exports={en:["paste {title}"],de:["{title} einfügen"]}},78690:e=>{e.exports={en:["pin to left scale"],de:["an linke Skala anheften"]}},7495:e=>{e.exports={en:["pin to right scale"],de:["An rechte Skala anheften"]}},81566:e=>{e.exports={en:["pin to scale {label}"],de:["an Skala anheften {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],de:["Ebenen neu anordnen"]}},60806:e=>{e.exports={en:["remove all indicators"],de:["alle Indikatoren entfernen"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],de:["alle Indikatoren und Zeichentools entfernen"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],de:["Entfernung deaktivierter Leerzeilen-Werkzeuge"]}},30538:e=>{e.exports={en:["remove drawings"],de:["Zeichnungen entfernen"]}},1193:e=>{e.exports={en:["remove drawings group"],de:["Zeichnungen der Gruppe entfernen"]}},38199:e=>{e.exports={en:["remove line data sources"],de:["Datenquellen entfernen"]}},93333:e=>{e.exports={en:["remove pane"],de:["Ebene entfernen"]}},94543:e=>{e.exports={en:["remove {title}"],de:["{title} entfernen"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],de:["Linienwerkzeuge der Gruppe {name} entfernen"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],de:["Gruppe {group} zu {newName} umbenennen"]}},85366:e=>{e.exports={en:["reset layout sizes"],de:["Layoutgröße zurücksetzen"]}},3323:e=>{e.exports={en:["reset scales"],de:["Skalen zurücksetzen"]}},17336:e=>{e.exports={en:["reset time scale"],de:["Zeitachse zurücksetzen"]}},47418:e=>{e.exports={en:["resize layout"],de:["Größe des Layouts ändern"]}},85815:e=>{e.exports={en:["restore defaults"],de:["Standardeinstellungen wiederherstellen"]}},96881:e=>{e.exports={en:["restore study defaults"],de:["Analysenstandard wiederherstellen"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],de:["Maximierten Fensterstatus umschalten"]}},42240:e=>{e.exports={en:["toggle auto scale"],de:["auf automatische Skalierung umschalten"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],de:["Minimierten Fensterstatus umschalten"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],de:["auf 100 indexiert"]}},49695:e=>{e.exports={en:["toggle lock scale"],de:["Skala verriegeln"]}},49403:e=>{e.exports={en:["toggle log scale"],de:["auf logarithmische Skalierung umschalten"]}},98994:e=>{e.exports={en:["toggle percentage scale"],de:["Prozentskala umschalten"]}},80688:e=>{e.exports={en:["toggle regular scale"],de:["reguläre Skala"]}},46807:e=>{e.exports={en:["track time"],de:["Uhrzeit verfolgen"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],de:["Freigabe von Linientools ausschalten"]}},99234:e=>{e.exports={en:["unanchor objects"],de:["Verankerung von Objekten lösen"]}},23230:e=>{e.exports={en:["unlock objects"],de:["Objekte entriegeln"]}},74590:e=>{e.exports={
|
||||
en:["unlock group {group}"],de:["Gruppe {group} Fixierung aufheben"]}},12525:e=>{e.exports={en:["unlock {title}"],de:["{title} entriegeln"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],de:["zum neuen unteren Fenster anheften"]}},79443:e=>{e.exports={en:["unmerge up"],de:["Obere Zusammenführung lösen"]}},46453:e=>{e.exports={en:["unmerge down"],de:["Untere Zusammenführung lösen"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],de:["Oh nein! Der Charttyp {chartStyle} ist zurzeit nicht für Intervalle auf Tick-Basis erhältlich."]}},41643:e=>{e.exports={en:["{count} bars"],de:["{count} Balken"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],de:["{symbol} Finanzdaten von TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],de:["{userName} freigegeben für {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"],de:["vergrößern"]}},49856:e=>{e.exports={en:["zoom in"],de:["Vergrößern"]}},73638:e=>{e.exports={en:["zoom out"],de:["Verkleinern"]}},41807:e=>{e.exports={en:["day","days"],de:["Tag","Tage"]}},42328:e=>{e.exports={en:["hour","hours"],de:["Stunde","Stunden"]}},98393:e=>{e.exports={en:["month","months"],de:["Monat","Monate"]}},78318:e=>{e.exports={en:["minute","minutes"],de:["Minute","Minuten"]}},33232:e=>{e.exports={en:["second","seconds"],de:["Sekunde","Sekunden"]}},89937:e=>{e.exports={en:["range","ranges"],de:["Bereich","Bereiche"]}},48898:e=>{e.exports={en:["week","weeks"],de:["Woche","Wochen"]}},11913:e=>{e.exports={en:["tick","ticks"],de:["Tick","Ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],de:["{amount} Zeichnung","{amount} Zeichnungen"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],de:["{amount} Indikator","{amount} Indikatoren"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],de:["{count} M.","{count} M."]}},47801:e=>{e.exports={en:["{count}d","{count}d"],de:["{count} T.","{count} T."]}},46766:e=>{e.exports={en:["{count}y","{count}y"],de:["{count} J.","{count} J."]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],de:["Australischer Dollar/Kanadischer Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],de:["Australischer Dollar/Schweizer Franken"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],de:["Australischer Dollar/Japanischer Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],
|
||||
de:["Australischer Dollar/Neuseeländischer Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],de:["Australischer Dollar/Russischer Rubel"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],de:["Australischer Dollar/U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],de:["Bitcoin Cash / Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],de:["Brasilianischer Real / Japanischer Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],de:["Bitcoin / Brasilianischer Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],de:["Bitcoin / Kanadischer Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],de:["Bitcoin / Chinesischer Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],de:["Bitcoin / Britisches Pfund"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],de:["Bitcoin / Japanischer Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],de:["Bitcoin / Südkoreanischer Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],de:["Bitcoin / Polnischer Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],de:["Bitcoin / Russischer Rubel"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],de:["Bitcoin / Thailändischer Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],de:["Bitcoin / Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],de:["Kanadischer Dollar/Japanischer Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],
|
||||
de:["Kanadischer Dollar / US-Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],de:["Mais Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],de:["Sojabohnen Mehl Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],de:["10 Jahres T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],de:["Hafer Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],de:["30 Tages Federal Funds Zinsraten Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],de:["Reis Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],de:["Sojabohnen Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],de:["Weizen Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],de:["Sojabohnen Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],de:["Weizen Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],de:["E-MINI DOW JONES ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],de:["Schweizer Franken/Japanischer Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],de:["Schweizer Franken / US-Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],de:["Butter Futures-Cash (Continuous: aktueller vorne)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],de:["Mastrind Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],de:["Mager-Schwein Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],de:["Lebendvieh Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],de:["Japanischer Jen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],de:["NASDAQ 100 E-MINI Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],de:["Europäische Premium Aluminium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],de:["Kupfer Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={
|
||||
en:["Silver Futures"],de:["Silber Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],de:["E-mini Kupfer Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],de:["Silber (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],de:["Kupfer CFD's"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],de:["CFDs auf Mais"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],de:["CFDs auf Baumwolle"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],de:["Total Krypto Marktkapitalisierung, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],de:["Dow Jones Industrial Average"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],de:["Ethereum Classic / Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],de:["Ethereum / Britisches Pfund"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],de:["Ethereum / Japanischer Jen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],de:["Ethereum / Südkoreanischer Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],de:["Ethereum / Thailändischer Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],de:["Ethereum / Dollar"]},e.exports["#EUBUND-symbol-description"]={
|
||||
en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],de:["Euro / Australischer Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],de:["Euro / Brasilianischer Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],de:["Euro / Kanadischer Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],de:["Euro / Schweizer Franken"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],de:["Euro / Britisches Pfund"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],de:["Euro / Japanischer Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],de:["Euro / Norwegische Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],de:["Euro / Neuseeländischer Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],de:["EURO / RUSSISCHER RUBEL"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],de:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],de:["Euro / Schwedische Krone"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],de:["Euro / Neue Türkische Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],de:["Euro / US-Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],de:["Bruttoinlandsprodukt, 1-Dezimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],de:["Gesamtbevölkerung: alle Altersgruppen einschließlich der Streitkräfte im Ausland"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],de:["Arbeitslosenquote Zivil"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],de:["Britisches Pfund / Australischer Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],de:["Britisches Pfund / Kanadischer Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],de:["Britisches Pfund / Schweizer Franken"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],de:["PFUND STERLING / EURO"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],
|
||||
de:["Britisches Pfund / Japanischer Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],de:["Britisches Pfund / Neuseeländischer Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],de:["Britisches Pfund / Polnischer Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],de:["Pfund Sterling / Russischer Rubel"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],de:["Britisches Pfund / US-Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],de:["Hang Seng Chinenischer Leitindex"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],de:["Japanischer Yen / Südkoreanischer Won"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],de:["Japanischer Yen / Russischer Rubel"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],de:["Japanischer Yen / US-Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],de:["Litecoin / Brasilianischer Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],de:["Litecoin / Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},
|
||||
e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],de:["Ishares 7-10 Year Treasury BondETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."],de:["#NASDAQ:LCID-Symbolbeschreibung"]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],de:["Erdgas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],de:["Kaffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={
|
||||
en:["Platinum Futures"],de:["Platin Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],de:["Baumwoll-Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],de:["E-mini Erdgas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],de:["E-mini Leicht-Rohöl Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],de:["E-mini Benzin Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],de:["Neuseeländischer Dollar / Japanischer Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],de:["Neuseeländischer Dollar / US-Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],de:["S&P/NZX ALL Index ( Capital Index )"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],de:["S&P / NZX 50 Index"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],de:["Erdgas CFD's"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],de:["Kupfer CFD's (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],de:["Russischer RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]
|
||||
},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],de:["CFDs auf Sojabohnen"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],de:["CFDs auf Zucker"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."],de:["#TADAWUL:2370-Symbolbeschreibung"]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],de:["Tadawul Aktienindex"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],de:["TA -35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],de:["Australische Staatsanleihe 10-Jahre"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],de:["Australische Staatsanleihen 10-Jahre"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],de:["Australischer-Dollar Währungsindex"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],de:["Britischer-Pfund Währungsindex"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],de:["Kanadische Staatsanleihen, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],de:["Kanadische Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],de:["Chinesische Staatsanleihe 10-Jahre"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],de:["Chinesische Staatsanleihen 10-Jahre"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],de:["Kanadischer-Dollar Währungsindex"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],de:["Deutsche Staatsanleihen 10-Jahre"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],de:["Deutsche Staatsanleihen 10-Jahre"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],de:["US-Dollar Währungsindex"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],de:["Spanische Staatsanleihe 10-Jahre"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],
|
||||
de:["Spanische Staatsanleihen 10-Jahre"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],de:["Euro Währungsindex"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],de:["Französiche Staatsanleihe 10-Jahre"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],de:["Französiche Staatsanleihen 10-Jahre"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],de:["UK Staatsanleihe 2-Jahre"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],de:["UK Staatsanleihe 10-Jahre"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],de:["Britische Staatsanleihen 10-Jahre"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],de:["GOLD CFD's (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],de:["Indonesische Staatsanleihe 3-Jahre"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],de:["Indonesische Staatsanleihe 10-Jahre"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],de:["Indonesien Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],de:["India Staatsanleihe 10-Jahre"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],de:["Indische Staatsanleihen 10 Jahre"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],de:["Italienische Staatsanleihe 10-Jahre"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],de:["Italienische Staatsanleihen 10 Jahre"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],de:["Japanische Staatsanleihe 10-Jahre"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],de:["Japanische Staatsanleihen 10 Jahre"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],de:["Japanischer-Yen Währungsindex"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],de:["Koreanische Staatsanleihe 10-Jahre"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],de:["Koreanische Staatsanleihen 10-Jahre"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],de:["Malaysische Staatsanleihen 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],de:["Malaysische Staatsanleihen 10 Jahre"]},e.exports["#TVC:NDX-symbol-description"]={
|
||||
en:["US 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],de:["Niederländische Staatsanleihen, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],de:["Niederländische Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],de:["Neuseeländische Staatsanleihen, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],de:["Neuseeländische Staatsanleihen 10 YR Rendite"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],de:["Palladium CFD's (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],de:["Polnische Staatsanleihen 5 Jahre"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],de:["Polnische Staatsanleihen 10 Jahre"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],de:["CFDs auf Platin (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],de:["Portugiesische Staatsanleihe 10-Jahre"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],de:["Portugiesische Staatsanleihen 10-Jahre"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],de:["Silber CFD's (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],de:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],de:["Schweizer Marktindex"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],de:["Schweizer Franken Währungsindex"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],de:["Türkei Staatsanleihe 10-Jahre"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],de:["Türkische Staatsanleihen 10 Jahre"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],de:["Brent Rohöl CFD's"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],de:["US Staatsanleihe 2-Jahre"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],de:["US Staatsanleihen 2 Jahre"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],de:["US Staatsanleihe 5-Jahre"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],de:["US Staatsanleihen 5 Jahre"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],de:["US Staatsanleihe 10-Jahre"]},
|
||||
e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],de:["US Staatsanleihen 10 Jahre"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],de:["US-Staatsanleihen 30 Jahre"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],de:["WTI Rohöl CFD's"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],de:["Volatilitätsindex S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],de:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],de:["FTSE 100 Englischer Leitindex"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],de:["Rohöl CFD's (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],de:["US-Dollar / Australischer Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],de:["US Dollar / Brasilianischer Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],de:["US-Dollar / Kanadischer Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],de:["US-Dollar / Schweizer Franken"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],de:["US DOLLAR / YUAN RENMINBI"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],de:["US DOLLAR / DÄNISCHE KRONE"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],de:["US-Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],de:["US-Dollar / Pfund Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],de:["U.S.-Dollar/Hongkong-Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],de:["U.S. Dollar / Ungarischer Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],de:["US Dollar / Rupie"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],de:["U.S. Dollar / Israelischer Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],de:["US-Dollar / Indische Rupie"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],de:["US-Dollar / Japanischer Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],de:["U.S. Dollar / Südkorea"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],de:["U.S. Dollar/Mexikanischer Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],de:["US Dollar / Neuseeland Dollar"]},e.exports["#USDPHP-symbol-description"]={
|
||||
en:["U.S. Dollar / Philippine peso"],de:["US Dollar / Philippinischer Peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],de:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],de:["U.S. Dollar / Russischer Rubel"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],de:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],de:["US-Dollar / Schwedische Krone"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],de:["US-DOLLAR / SINGAPUR-DOLLAR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],de:["US-Dollar / Türkische Neue Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],de:["U.S. Dollar / Süd Afrikanischer Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],de:["Rohöl CFD's (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],de:["CFDs auf Weizen"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],de:["Silber / US-Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],de:["Bitcoin / Kanadischer Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],de:["Palladium CFD's"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],de:["Platinum / US-Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],de:["XRP / US Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],de:["Zach / U.S. Dollar"]}}}]);
|
||||
7
charting_library/bundles/de.7458.068c610f8718bc62a766.js
Normal file
7
charting_library/bundles/de.7458.068c610f8718bc62a766.js
Normal file
@@ -0,0 +1,7 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],de:["Balken"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"],de:["12-Stunden"]}},5797:e=>{e.exports={en:["24-hours"],de:["24-Stunden"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],de:["Balken gemäß des vorherigen Schlusskurs färben"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"],de:["Zentrieren"]}},15153:e=>{e.exports={en:["Chart basic styles"],de:["Grundtypen von Charts"]}},45639:e=>{e.exports={en:["Chart values"],de:["Chartwerte"]}},84831:e=>{e.exports={en:["Close line"],de:["Schlusskurslinie"]}},74622:e=>{e.exports={en:["Crosshair"],de:["Fadenkreuz"]}},81849:e=>{e.exports={en:["Currency"],de:["Währung"]}},3015:e=>{e.exports={en:["Currency and Unit"],de:["Währung und Einheit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},36620:e=>{e.exports={en:["Alerts"],de:["Alarme"]}},14119:e=>{e.exports={en:["Arguments"],de:["Argumente"]}},68650:e=>{e.exports={en:["Average close"],de:["Durchschnittlicher Schlusskurs"]}},27567:e=>{e.exports={en:["Bottom"],de:["Unten"]}},3159:e=>{e.exports={en:["Bottom line"],de:["Unterste Linie"]}},74406:e=>{e.exports={en:["Body"],de:["Körper"]}},333:e=>{e.exports={en:["Borders"],de:["Rahmen"]}},79468:e=>{e.exports={en:["Background"],de:["Hintergrund"]}},10842:e=>{e.exports={en:["Bar change values"],de:["Balken Änderungswerte"]}},28975:e=>{e.exports={en:["Base level"],de:["Grundwert"]}},76473:e=>{e.exports={en:["Bid and ask"],de:["Bid und Ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"],de:["Rasterlinien"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"],de:["Abwärts-Farbe"]}},48225:e=>{e.exports={en:["Data modification"],de:["Modifizierung der Daten"]}},84838:e=>{e.exports={en:["Date format"],de:["Datumsformat"]}},42357:e=>{e.exports={en:["Day of week on labels"],de:["Wochentag auf den Labels"]}},16564:e=>{e.exports={en:["Default"],de:["Standard"]}},78734:e=>{e.exports={en:["Description"],de:["Beschreibung"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],de:["Hintergrund der elektronischen Handelszeiten"]}},69808:e=>{e.exports={en:["Events"],de:["Ereignisse"]}},41129:e=>{e.exports={en:["Fill"],de:["Füllen"]}},61112:e=>{e.exports={en:["Fill top area"],de:["Füllung oberer Bereich"]}},73185:e=>{e.exports={en:["Fill bottom area"],de:["Füllung unterer Bereich"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"],de:["Nur horiz."]}},14180:e=>{e.exports={en:["High and low"],de:["Hoch und Tief"]}},56359:e=>{e.exports={en:["High line"],de:["Höchstkurslinie"]}},47326:e=>{e.exports={
|
||||
en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],de:["Indikatoren"]}},78082:e=>{e.exports={en:["Indicators and financials"],de:["Indikatoren und Finanzdaten"]}},25765:e=>{e.exports={en:["Open market status"],de:["Markt-Öffnungs-Status anzeigen"]}},34579:e=>{e.exports={en:["Low line"],de:["Tiefstkurslinie"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],de:["Ausführliche Beschreibung"]}},72423:e=>{e.exports={en:["Last day change values"],de:["Werte von Veränderungen am letzten Handelstag"]}},11626:e=>{e.exports={en:["Left"],de:["Links"]}},8249:e=>{e.exports={en:["Money"],de:["Kapital"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"],de:["Mitte"]}},58589:e=>{e.exports={en:["No overlapping labels"],de:["Keine überlappenden Label"]}},60798:e=>{e.exports={en:["None"],de:["Keine"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],de:["Position des linken Chartrands bei einer Intervalländerung speichern"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],de:["Skalierungsmodus (A und L)"]}},93968:e=>{e.exports={en:["Scales"],de:["Skalierungen"]}},90275:e=>{e.exports={en:["Scales and lines"],de:["Skala und Linien"]}},30042:e=>{e.exports={en:["Scales placement"],de:["Skalen Platzierung"]}},28715:e=>{e.exports={en:["Status line"],de:["Status Zeile"]}},95481:e=>{e.exports={en:["Symbol"]}},53263:e=>{e.exports={en:["Pane"],de:["Bereich"]}},82894:e=>{e.exports={en:["Pane separators"],de:["Trennstreifen zwischen den Fenstern"]}},16207:e=>{e.exports={en:["Percentage"],de:["Prozentsatz"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],de:["Vor/nach der Hauptsitzung"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],de:["Hintergrund Vor-/Nachbörslich"]}},59766:e=>{e.exports={en:["Precision"],de:["Präzision"]}},83811:e=>{e.exports={en:["Previous day close"],de:["Schlusskurs Vortag"]}},35082:e=>{e.exports={en:["Price Scale"],de:["Preis-Skala"]}},27632:e=>{e.exports={en:["Price and percentage value"],de:["Preis und Prozentwert"]}},62142:e=>{e.exports={en:["Price labels & lines"],de:["Preis-Label & Linien"]}},84684:e=>{e.exports={en:["Price source"],de:["Preisquelle"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"],de:["Projektionsbalken"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],de:["Reale Preise auf der Preisskala (anstelle des Heikin-Ashi-Preises)"]}},50421:e=>{e.exports={en:["Right"],de:["Rechts"]}},62532:e=>{e.exports={en:["Right Margin"],de:["Rechter Seitenrand"]}},41571:e=>{e.exports={en:["Watermark"],de:["Wasserzeichen"]}},32163:e=>{e.exports={en:["Wick"],de:["Docht"]}},97118:e=>{e.exports={en:["Top"],de:["Oben"]}},89349:e=>{e.exports={en:["Top line"],de:["Oberste Linie"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"],
|
||||
de:["Textausrichtung"]}},67781:e=>{e.exports={en:["Text orientation"],de:["Text Ausrichtung"]}},20215:e=>{e.exports={en:["Thin bars"],de:["Dünne Balken verwenden"]}},70198:e=>{e.exports={en:["Title"],de:["Titel"]}},29854:e=>{e.exports={en:["Titles"],de:["Titel"]}},5791:e=>{e.exports={en:["Ticker"],de:["Ticker, Name"]}},16816:e=>{e.exports={en:["Ticker and description"],de:["Ticker und Beschreibung"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"],de:["Zeit-Skala"]}},5591:e=>{e.exports={en:["Time hours format"],de:["Format der Uhrzeit"]}},77073:e=>{e.exports={en:["Timezone"],de:["Zeitzone"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],de:["Einheit"]}},23091:e=>{e.exports={en:["Up color"],de:["Aufwärts-Farbe"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},37644:e=>{e.exports={en:["Volume"],de:["Volumen"]}},51514:e=>{e.exports={en:["Value"],de:["Wert"]}},31218:e=>{e.exports={en:["Value according to scale"],de:["Wert laut Skala"]}},60092:e=>{e.exports={en:["Values"],de:["Werte"]}},83594:e=>{e.exports={en:["Vert and horz"],de:["Vert. und horiz."]}},8402:e=>{e.exports={en:["Vert only"],de:["Nur vert."]}},69526:e=>{e.exports={en:["Vertical"],de:["Vertikal"]}},21105:e=>{e.exports={en:["candle"],de:["Kerze"]}},27068:e=>{e.exports={en:["change HLC bars"],de:["HLC-Balken ändern"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],de:["Sichtbarkeit der Navigationsschaltflächen ändern"]}},96227:e=>{e.exports={en:["change open market status visibility"],de:["Sichtbarkeit des Marktstatus ändern"]}},43231:e=>{e.exports={en:["change average close price line width"],de:["Breite der durchschnittlichen Schlusskurslinie ändern"]}},47026:e=>{e.exports={en:["change average close price line color"],de:["Farbe der durchschnittlichen Schlusskurslinie ändern"]}},86866:e=>{e.exports={en:["change area fill color"],de:["Farbe der Flächenfüllung ändern"]}},89346:e=>{e.exports={en:["change area line width"],de:["Breite der Bereichslinie ändern"]}},29605:e=>{e.exports={en:["change area line color"],de:["Farbe der Bereichslinie ändern"]}},4640:e=>{e.exports={en:["change area price source"],de:["Bereich der Preisquelle ändern"]}},98407:e=>{e.exports={en:["change ask line color"],de:["Farbe der Ask-Linie ändern"]}},42190:e=>{e.exports={en:["change base level"],de:["Basiswert ändern"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],de:["Farbe der unteren Grundlinie ändern"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],de:["Grundlinienbreite der unteren Linie ändern"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],de:["Farbe der Basislinienfüllung im unteren Bereich ändern"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],de:["Farbe der Basislinienfüllung im oberen Bereich ändern"]}},68609:e=>{e.exports={
|
||||
en:["change baseline price source"],de:["Preisquelle der Grundlinie ändern"]}},69044:e=>{e.exports={en:["change baseline top line color"],de:["Farbe der oberen Zeile der Grundlinie ändern"]}},68197:e=>{e.exports={en:["change baseline top line width"],de:["Grundlinienbreite der oberen Linie ändern"]}},33464:e=>{e.exports={en:["change bar up color"],de:["Farbe der Bull-Candle ändern"]}},27426:e=>{e.exports={en:["change bar change visibility"],de:["Sichtbarkeit des Countdowns bei Balkenschluss ändern"]}},59622:e=>{e.exports={en:["change bar down color"],de:["Farbe der Bear-Candle ändern"]}},17919:e=>{e.exports={en:["change bid line color"],de:["Farbe der Bid-Linie ändern"]}},32094:e=>{e.exports={en:["change bottom margin"],de:["unteren Rand ändern"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],de:["Sichtbarkeit von Währungs- und Einheitenbeschriftungen ändern"]}},64003:e=>{e.exports={en:["change currency label visibility"],de:["Sichtbarkeit des Währungslabels ändern"]}},42803:e=>{e.exports={en:["change chart background color"],de:["Hintergrundfarbe der Chart ändern"]}},41382:e=>{e.exports={en:["change chart background type"],de:["Chart-Hintergrundtyp ändern"]}},79637:e=>{e.exports={en:["change chart values visibility"],de:["Sichtbarkeit der Chartwerte ändern"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],de:["Balken gemäß vorherigem Schlusskurs färben."]}},88324:e=>{e.exports={en:["change column up color"],de:["Farbe der Spalte oben ändern"]}},93890:e=>{e.exports={en:["change column down color"],de:["Farbe der Spalte unten ändern"]}},4727:e=>{e.exports={en:["change column price source"],de:["Spalte Preisquelle ändern"]}},50544:e=>{e.exports={en:["change crosshair width"],de:["Fadenkreuzbreite ändern"]}},92885:e=>{e.exports={en:["change crosshair color"],de:["Farbe des Fadenkreuzes ändern"]}},68418:e=>{e.exports={en:["change crosshair style"],de:["Fadenkreuzstil ändern"]}},43109:e=>{e.exports={en:["change date format"],de:["Datumsformat ändern"]}},30418:e=>{e.exports={en:["change day of week on labels"],de:["Wochentag auf den Labels ändern"]}},82063:e=>{e.exports={en:["change decimal places"],de:["Dezimalstellen ändern"]}},44223:e=>{e.exports={en:["change extended hours color"],de:["Farbe der erweiterten Handelszeiten ändern"]}},47393:e=>{e.exports={en:["change electronic trading hours"],de:["Elektronische Handelszeiten ändern"]}},73844:e=>{e.exports={en:["change grid lines visibility"],de:["Sichtbarkeit der Rasterlinien ändern"]}},61407:e=>{e.exports={en:["change high and low price line color"],de:["Farbe der Hoch- und Tiefstpreislinien ändern"]}},39581:e=>{e.exports={en:["change high and low price line width"],de:["Breite der Hoch- und Tiefstpreislinien ändern"]}},6026:e=>{e.exports={en:["change high-low body color"],de:["Farbe der Körper von Hochs/Tiefs ändern"]}},73021:e=>{e.exports={en:["change high-low body visibility"],de:["Sichtbarkeit der Körper von Hochs/Tiefs"]}},46844:e=>{e.exports={en:["change high-low border color"],
|
||||
de:["Randfarbe der Hochs/Tiefs ändern"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],de:["Sichtbarkeit des Rands von Hochs/Tiefs ändern"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],de:["Sichtbarkeit der Hoch/Tief-Labels ändern"]}},56961:e=>{e.exports={en:["change high-low labels color"],de:["Farbe der Hoch-Tief-Labels ändern"]}},21133:e=>{e.exports={en:["change horz grid lines color"],de:["Farbe der horizontalen Gitterlinien ändern"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],de:["Sichtbarkeit der Indikatortitel ändern"]}},49583:e=>{e.exports={en:["change indicator values visibility"],de:["Sichtbarkeit der Indikatorwerte ändern"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],de:["Sichtbarkeit der Indikatorargumente ändern"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],de:["Sichtbarkeit von Indikatoren- und Finanzdaten-Labels ändern"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],de:["Ändert die Sichtbarkeit des Labels für Werte der Indikatoren und Finanzkennzahlen"]}},66307:e=>{e.exports={en:["change last day change visibility"],de:["Sichtbarkeit von Veränderung am letzten Handelstag ändern"]}},91873:e=>{e.exports={en:["change legend background transparency"],de:["Hintergrundtransparenz der Legende ändern"]}},14246:e=>{e.exports={en:["change legend background visibility"],de:["Hintergrundsichtbarkeit der Legende ändern"]}},88640:e=>{e.exports={en:["change line color"],de:["Linienfarbe ändern"]}},41837:e=>{e.exports={en:["change line price source"],de:["Ausgangspunkt der Preisline ändern"]}},48339:e=>{e.exports={en:["change line width"],de:["Linienbreite ändern"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],de:["Sichtbarkeit der Schaltflächen des Fensters ändern"]}},52203:e=>{e.exports={en:["change pane separators color"],de:["Farbe der Trennstreifen im Fenster ändern"]}},38730:e=>{e.exports={en:["change post market color"],de:["Farbe des Post-Marktes ändern"]}},28075:e=>{e.exports={en:["change post market line color"],de:["Farbe der Post-Market-Linie ändern"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],de:["Sichtbarkeit der Preislinie vorbörslich/nachbörslich ändern"]}},44371:e=>{e.exports={en:["change pre market color"],de:["Farbe des Pre-Markets ändern"]}},96114:e=>{e.exports={en:["change pre market line color"],de:["Farbe der Pre-Market-Linie ändern"]}},69814:e=>{e.exports={en:["change previous close price line color"],de:["Farbe der Linie des vorherigen Schlusskurses ändern"]}},13660:e=>{e.exports={en:["change previous close price line width"],de:["Linienbreite des vorherigen Schlusskurses ändern"]}},87861:e=>{e.exports={en:["change price line color"],de:["Farbe der Preislinie ändern"]}},29353:e=>{e.exports={en:["change price line width"],de:["Preislinienbreite ändern"]}},16241:e=>{e.exports={en:["change range bars style"],de:["Stil der Reichweitenbalken ändern"]}},65821:e=>{e.exports={
|
||||
en:["change range thin bars"],de:["Bereich ändern auf dünne Balken"]}},75487:e=>{e.exports={en:["change renko wick down color"],de:["Farbe des Bear-Renko-Dochts ändern"]}},92277:e=>{e.exports={en:["change renko wick up color"],de:["Farbe des Bull-Renko-Dochts ändern"]}},79604:e=>{e.exports={en:["change renko wick visibility"],de:["Sichtbarkeit des Renko-Dochts ändern"]}},82946:e=>{e.exports={en:["change right margin"],de:["unteren Rand ändern"]}},79545:e=>{e.exports={en:["change right margin percentage"],de:["Prozentsatz des rechten Seitenrands ändern"]}},78995:e=>{e.exports={en:["change symbol watermark color"],de:["Farbe des Symbol-Wasserzeichens ändern"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],de:["Sichtbarkeit des Symbolwasserzeichens ändern"]}},88167:e=>{e.exports={en:["change symbol description visibility"],de:["Sichtbarkeit der Symbolbeschreibung ändern"]}},12050:e=>{e.exports={en:["change symbol field visibility"],de:["Die Sichtbarkeit des Symbolfelds verändern"]}},46066:e=>{e.exports={en:["change symbol last value mode"],de:["Anzeigemodus des letzten Wertes ändern"]}},902:e=>{e.exports={en:["change symbol legend format"],de:["Format der Symbollegende ändern"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],de:["Ändern: Position des linken Chartrands bei einer Intervalländerung speichern"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],de:["die Sichtbarkeit der Buttons für Skalierungsmodus ändern"]}},76131:e=>{e.exports={en:["change scales text color"],de:["Textfarbe der Skalen ändern"]}},27792:e=>{e.exports={en:["change scales font size"],de:["Schriftgröße der Skalen ändern"]}},94997:e=>{e.exports={en:["change scales lines color"],de:["Farbe der Skalenlinien ändern"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],de:["Sichtbarkeit der Session-Übergänge ändern"]}},28175:e=>{e.exports={en:["change sessions breaks width"],de:["Linienbreite der Sitzungs-Übergänge ändern"]}},33895:e=>{e.exports={en:["change sessions breaks color"],de:["Farbe der Sitzungs-Übergänge ändern"]}},21641:e=>{e.exports={en:["change sessions breaks style"],de:["Stil der Session-Übergänge ändern"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],de:["die Anzeige der realen Preise auf der Preisskala ändern (anstelle des Heiken-Ashi-Preises)"]}},60834:e=>{e.exports={en:["change thin bars"],de:["auf dünne Balken wechseln"]}},39754:e=>{e.exports={en:["change time hours format"],de:["Format der Uhrzeit ändern"]}},74883:e=>{e.exports={en:["change top margin"],de:["oberen Rand ändern"]}},51250:e=>{e.exports={en:["change unit label visibility"],de:["Sichtbarkeit des Einheitenlabels ändern"]}},71805:e=>{e.exports={en:["change vert grid lines color"],de:["Farbe der vertikalen Gitterlinien ändern"]}},96201:e=>{e.exports={en:["change volume values visibility"],de:["Sichtbarkeit der Volumenwerte ändern"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],
|
||||
de:["{candleType} obere Randfarbe ändern"]}},36697:e=>{e.exports={en:["change {candleType} up color"],de:["{candleType} Farbe für aufwärts ändern"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],de:["{candleType} Farbe des Abwärtsdochts ändern"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],de:["{candleType} Farbe des Aufwärtsdochts ändern"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],de:["{candleType} Sichtbarkeit der Dochte ändern"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],de:["Sichtbarkeit des {candleType} Körpers ändern"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],de:["{candleType} Sichtbarkeit des Rand ändern"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],de:["{candleType} untere Randfarbe ändern"]}},64571:e=>{e.exports={en:["change {candleType} down color"],de:["{candleType} Farbe für abwärts ändern"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],de:["{chartType} Farbe des Rand des Aufwärtsbalkens ändern"]}},5012:e=>{e.exports={en:["change {chartType} down color"],de:["{chartType} Farbe für Abwärts ändern"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],de:["{chartType} Farbe des Rands der Projektion des Abwärtsbalkens ändern"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],de:["{chartType} Farbe der Projektion des Abwärtsbalkens ändern"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],de:["{chartType} Farbe der Projektion des Aufwärtsbalkens ändern"]}},6970:e=>{e.exports={en:["change {chartType} up color"],de:["{chartType} Farbe für Aufwärts ändern"]}},66110:e=>{e.exports={en:["change {inputName} property"],de:["Eigenschaft von {inputName} ändern"]}},18077:e=>{e.exports={en:["adjust data for dividends"],de:["Daten für Dividenden anpassen"]}},1433:e=>{e.exports={en:["adjust for contract changes"],de:["Veränderungen der Kontraktgrößen und Verfalltage"]}},92598:e=>{e.exports={en:["hollow candles"],de:["Hollow Candles"]}},57243:e=>{e.exports={en:["range","ranges"],de:["Bereich","Bereiche"]}},70282:e=>{e.exports={en:["renko"],de:["Renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],de:["Settlement als Schlusskurs im Tagesintervall verwenden"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],de:["{value} Dezimale","{value} Dezimalen"]}}}]);
|
||||
@@ -1,22 +1,22 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2878],{3845:e=>{e.exports={"default-drawer-min-top-distance":"100px"}},22413:e=>{e.exports={favorite:"favorite-_FRQhM5Y",hovered:"hovered-_FRQhM5Y",disabled:"disabled-_FRQhM5Y",focused:"focused-_FRQhM5Y",active:"active-_FRQhM5Y",checked:"checked-_FRQhM5Y"}},95214:e=>{e.exports={item:"item-zwyEh4hn",label:"label-zwyEh4hn",labelRow:"labelRow-zwyEh4hn",toolbox:"toolbox-zwyEh4hn"}},238:e=>{e.exports={separator:"separator-QjUlCDId",small:"small-QjUlCDId",normal:"normal-QjUlCDId",large:"large-QjUlCDId"}},67842:(e,t,o)=>{"use strict";o.d(t,{useResizeObserver:()=>s});var n=o(50959),i=o(43010),l=o(39416);function s(e,t=[]){const{callback:o,ref:s=null}=function(e){return"function"==typeof e?{callback:e}:e}(e),a=(0,n.useRef)(null),r=(0,n.useRef)(o);r.current=o;const c=(0,l.useFunctionalRefObject)(s),u=(0,n.useCallback)((e=>{c(e),null!==a.current&&(a.current.disconnect(),null!==e&&a.current.observe(e))}),[c,a]);return(0,i.useIsomorphicLayoutEffect)((()=>(a.current=new ResizeObserver(((e,t)=>{r.current(e,t)})),c.current&&u(c.current),()=>{a.current?.disconnect()})),[c,...t]),u}},47201:(e,t,o)=>{"use strict";function n(...e){return t=>{for(const o of e)void 0!==o&&o(t)}}o.d(t,{createSafeMulticastEventHandler:()=>n})},45601:(e,t,o)=>{"use strict";o.d(t,{Measure:()=>i});var n=o(67842);function i(e){const{children:t,onResize:o}=e;return t((0,n.useResizeObserver)(o||(()=>{}),[null===o]))}},74670:(e,t,o)=>{"use strict";o.d(t,{useActiveDescendant:()=>l});var n=o(50959),i=o(39416);function l(e,t=[]){const[o,l]=(0,n.useState)(!1),s=(0,i.useFunctionalRefObject)(e);return(0,n.useLayoutEffect)((()=>{const e=s.current;if(null===e)return;const t=e=>{switch(e.type){case"active-descendant-focus":l(!0);break;case"active-descendant-blur":l(!1)}};return e.addEventListener("active-descendant-focus",t),e.addEventListener("active-descendant-blur",t),()=>{e.removeEventListener("active-descendant-focus",t),e.removeEventListener("active-descendant-blur",t)}}),t),[s,o]}},71402:(e,t,o)=>{"use strict";o.d(t,{RemoveTitleType:()=>n,removeTitlesMap:()=>l});var n,i=o(11542);!function(e){e.Add="add",e.Remove="remove"}(n||(n={}));const l={[n.Add]:i.t(null,void 0,o(69207)),[n.Remove]:i.t(null,void 0,o(85106))}},36189:(e,t,o)=>{"use strict";o.d(t,{FavoriteButton:()=>h});var n=o(50959),i=o(97754),l=o.n(i),s=o(9745),a=o(71402),r=o(74670),c=o(39146),u=o(48010),d=o(22413);function h(e){const{className:t,isFilled:o,isActive:i,onClick:h,title:m,...v}=e,[p,g]=(0,r.useActiveDescendant)(null),b=m??(o?a.removeTitlesMap[a.RemoveTitleType.Remove]:a.removeTitlesMap[a.RemoveTitleType.Add]);return(0,n.useLayoutEffect)((()=>{const e=p.current;e instanceof HTMLElement&&b&&e.dispatchEvent(new CustomEvent("common-tooltip-update"))}),[b,p]),n.createElement(s.Icon,{...v,className:l()(d.favorite,"apply-common-tooltip",o&&d.checked,i&&d.active,g&&d.focused,t),onClick:h,icon:o?c:u,title:b,ariaLabel:b,ref:p})}},78036:(e,t,o)=>{"use strict";o.d(t,{useEnsuredContext:()=>l});var n=o(50959),i=o(50151);function l(e){
|
||||
return(0,i.ensureNotNull)((0,n.useContext)(e))}},70412:(e,t,o)=>{"use strict";o.d(t,{hoverMouseEventFilter:()=>l,useAccurateHover:()=>s,useHover:()=>i});var n=o(50959);function i(){const[e,t]=(0,n.useState)(!1);return[e,{onMouseOver:function(e){l(e)&&t(!0)},onMouseOut:function(e){l(e)&&t(!1)}}]}function l(e){return!e.currentTarget.contains(e.relatedTarget)}function s(e){const[t,o]=(0,n.useState)(!1);return(0,n.useEffect)((()=>{const t=t=>{if(null===e.current)return;const n=e.current.contains(t.target);o(n)};return document.addEventListener("mouseover",t),()=>document.removeEventListener("mouseover",t)}),[]),t}},29006:(e,t,o)=>{"use strict";o.d(t,{useResizeObserver:()=>n.useResizeObserver});var n=o(67842)},29185:(e,t,o)=>{"use strict";o.d(t,{useWatchedValue:()=>i});var n=o(50959);const i=(e,t=[])=>{const[o,i]=(0,n.useState)(e.value());return(0,n.useEffect)((()=>{const t=e=>i(e);return e.subscribe(t),()=>e.unsubscribe(t)}),[e,...t]),[o,t=>e.setValue(t)]}},81332:(e,t,o)=>{"use strict";o.d(t,{multilineLabelWithIconAndToolboxTheme:()=>s});var n=o(40173),i=o(9059),l=o(95214);const s=(0,n.mergeThemes)(i,l)},11684:(e,t,o)=>{"use strict";o.d(t,{PopupMenuSeparator:()=>r});var n,i=o(50959),l=o(97754),s=o.n(l),a=o(238);function r(e){const{size:t="normal",className:o,ariaHidden:n=!1}=e;return i.createElement("div",{className:s()(a.separator,"small"===t&&a.small,"normal"===t&&a.normal,"large"===t&&a.large,o),role:"separator","aria-hidden":n})}!function(e){e.Small="small",e.Large="large",e.Normal="normal"}(n||(n={}))},6132:(e,t,o)=>{"use strict";var n=o(22134);function i(){}function l(){}l.resetWarningCache=i,e.exports=function(){function e(e,t,o,i,l,s){if(s!==n){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var o={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:l,resetWarningCache:i};return o.PropTypes=o,o}},19036:(e,t,o)=>{e.exports=o(6132)()},22134:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},89888:e=>{e.exports={button:"button-LkmyTVRc",active:"active-LkmyTVRc"}},77020:e=>{e.exports={dropdown:"dropdown-pbhJWNrt",buttonWrap:"buttonWrap-pbhJWNrt",control:"control-pbhJWNrt",arrow:"arrow-pbhJWNrt",arrowIcon:"arrowIcon-pbhJWNrt",isOpened:"isOpened-pbhJWNrt",hover:"hover-pbhJWNrt",isGrayed:"isGrayed-pbhJWNrt",accessible:"accessible-pbhJWNrt"}},55973:e=>{e.exports={title:"title-u3QJgF_p"}},3088:e=>{e.exports={container:"container-Wp9adlfh",mirror:"mirror-Wp9adlfh",background:"background-Wp9adlfh",arrow:"arrow-Wp9adlfh"}},11766:e=>{e.exports={item:"item-uxNfqe_g",label:"label-uxNfqe_g"}},63754:e=>{e.exports={drawingToolbar:"drawingToolbar-BfVZxb4b",isHidden:"isHidden-BfVZxb4b",inner:"inner-BfVZxb4b",group:"group-BfVZxb4b",lastGroup:"lastGroup-BfVZxb4b",
|
||||
fill:"fill-BfVZxb4b"}},55613:e=>{e.exports={toggleButton:"toggleButton-OhcB9eH7",collapsed:"collapsed-OhcB9eH7",background:"background-OhcB9eH7",arrow:"arrow-OhcB9eH7",accessible:"accessible-OhcB9eH7"}},74099:e=>{e.exports={item:"item-yfwdxbRo",hovered:"hovered-yfwdxbRo"}},89265:e=>{e.exports={desktopSize:"desktopSize-l1SzP6TV",smallSize:"smallSize-l1SzP6TV",tabs:"tabs-l1SzP6TV",categories:"categories-l1SzP6TV"}},33892:e=>{e.exports={sticker:"sticker-aZclaNCs"}},65171:e=>{e.exports={"tablet-small-breakpoint":"(max-width: 440px)",stickerRow:"stickerRow-KUOIljqV"}},59453:e=>{e.exports={wrapper:"wrapper-FNeSdxed"}},33430:e=>{e.exports={drawer:"drawer-PzCssz1z",menuBox:"menuBox-PzCssz1z"}},57503:e=>{e.exports={toolButtonMagnet:"toolButtonMagnet-wg76fIbD",toolButtonMagnet__menuItem:"toolButtonMagnet__menuItem-wg76fIbD",toolButtonMagnet__hintPlaceholder:"toolButtonMagnet__hintPlaceholder-wg76fIbD"}},73824:e=>{e.exports={sectionTitle:"sectionTitle-Srvnqigs",newBadge:"newBadge-Srvnqigs",label:"label-Srvnqigs"}},82374:e=>{e.exports={wrap:"wrap-Z4M3tWHb",scrollWrap:"scrollWrap-Z4M3tWHb",noScrollBar:"noScrollBar-Z4M3tWHb",content:"content-Z4M3tWHb",icon:"icon-Z4M3tWHb",scrollBot:"scrollBot-Z4M3tWHb",scrollTop:"scrollTop-Z4M3tWHb",isVisible:"isVisible-Z4M3tWHb",iconWrap:"iconWrap-Z4M3tWHb",fadeBot:"fadeBot-Z4M3tWHb",fadeTop:"fadeTop-Z4M3tWHb"}},29703:e=>{e.exports={iconContainer:"iconContainer-dmpvVypS"}},20243:(e,t,o)=>{"use strict";o.d(t,{focusFirstMenuItem:()=>u,handleAccessibleMenuFocus:()=>r,handleAccessibleMenuKeyDown:()=>c,queryMenuElements:()=>m});var n=o(19291),i=o(57177),l=o(68335),s=o(15754);const a=[37,39,38,40];function r(e,t){if(!e.target)return;const o=e.relatedTarget?.getAttribute("aria-activedescendant");if(e.relatedTarget!==t.current){const e=o&&document.getElementById(o);if(!e||e!==t.current)return}u(e.target)}function c(e){if(e.defaultPrevented)return;const t=(0,l.hashFromEvent)(e);if(!a.includes(t))return;const o=document.activeElement;if(!(document.activeElement instanceof HTMLElement))return;const s=m(e.currentTarget).sort(n.navigationOrderComparator);if(0===s.length)return;const r=document.activeElement.closest('[data-role="menuitem"]')||document.activeElement.parentElement?.querySelector('[data-role="menuitem"]');if(!(r instanceof HTMLElement))return;const c=s.indexOf(r);if(-1===c)return;const u=v(r),p=u.indexOf(document.activeElement),g=-1!==p,b=e=>{o&&(0,i.becomeSecondaryElement)(o),(0,i.becomeMainElement)(e),e.focus()};switch((0,n.mapKeyCodeToDirection)(t)){case"inlinePrev":if(!u.length)return;e.preventDefault(),b(0===p?s[c]:g?d(u,p,-1):u[u.length-1]);break;case"inlineNext":if(!u.length)return;e.preventDefault(),p===u.length-1?b(s[c]):b(g?d(u,p,1):u[0]);break;case"blockPrev":{e.preventDefault();const t=d(s,c,-1);if(g){const e=h(t,p);b(e||t);break}b(t);break}case"blockNext":{e.preventDefault();const t=d(s,c,1);if(g){const e=h(t,p);b(e||t);break}b(t)}}}function u(e){const[t]=m(e);t&&((0,i.becomeMainElement)(t),t.focus())}function d(e,t,o){return e[(t+e.length+o)%e.length]}function h(e,t){const o=v(e)
|
||||
;return o.length?o[(t+o.length)%o.length]:null}function m(e){return Array.from(e.querySelectorAll('[data-role="menuitem"]:not([disabled]):not([aria-disabled])')).filter((0,s.createScopedVisibleElementFilter)(e))}function v(e){return Array.from(e.querySelectorAll("[tabindex]:not([disabled]):not([aria-disabled])")).filter((0,s.createScopedVisibleElementFilter)(e))}},40894:(e,t,o)=>{"use strict";o.d(t,{MenuFavoriteButton:()=>u});var n=o(50959),i=o(97754),l=o.n(i),s=o(50238),a=o(36189),r=o(71402),c=o(89888);function u(e){const{onClick:t,isFilled:o,isActive:i,...u}=e,[d,h]=(0,s.useRovingTabindexElement)(null),m=o?r.removeTitlesMap[r.RemoveTitleType.Remove]:r.removeTitlesMap[r.RemoveTitleType.Add];return(0,n.useLayoutEffect)((()=>{const e=d.current;e instanceof HTMLElement&&e.dispatchEvent(new CustomEvent("common-tooltip-update"))}),[m,d]),n.createElement("button",{ref:d,tabIndex:h,onClick:t,className:l()(c.button,i&&c.active,"apply-common-tooltip"),type:"button","aria-label":m,"data-tooltip":m},n.createElement(a.FavoriteButton,{...u,isFilled:o,isActive:i,title:""}))}},16829:(e,t,o)=>{"use strict";o.d(t,{ToolWidgetMenuSummary:()=>s});var n=o(50959),i=o(97754),l=o(55973);function s(e){return n.createElement("div",{className:i(e.className,l.title)},e.children)}},37159:(e,t,o)=>{"use strict";o.r(t),o.d(t,{DrawingToolbarRenderer:()=>wo});var n=o(50959),i=o(32227),l=o(50151),s=o(97754),a=o.n(s),r=o(32563),c=o(56840),u=o(56570),d=o(928),h=o(76422),m=o(52033),v=o(49483),p=o(84015),g=o(2627);class b{constructor(e){this._drawingsAccess=e||{tools:[],type:"black"}}isToolEnabled(e){const t=this._findTool(e);return!(!t||!t.grayed)||("black"===this._drawingsAccess.type?!t:!!t)}isToolGrayed(e){const t=this._findTool(e);return Boolean(t&&t.grayed)}_findTool(e){return this._drawingsAccess.tools.find((t=>t.name===e))}}var f=o(59511),T=o(6307),C=o(9745),w=o(61119),_=o(78871),x=o(45601),E=o(82374),F=o(61380);class k extends n.PureComponent{constructor(e){super(e),this._scroll=null,this._handleScrollTop=()=>{this.animateTo(Math.max(0,this.currentPosition()-(this.state.heightWrap-50)))},this._handleScrollBot=()=>{this.animateTo(Math.min((this.state.heightContent||0)-(this.state.heightWrap||0),this.currentPosition()+(this.state.heightWrap-50)))},this._handleResizeWrap=([e])=>{this.setState({heightWrap:e.contentRect.height})},this._handleResizeContent=([e])=>{this.setState({heightContent:e.contentRect.height})},this._handleScroll=()=>{const{onScroll:e}=this.props;e&&e(this.currentPosition(),this.isAtTop(),this.isAtBot()),this._checkButtonsVisibility()},this._checkButtonsVisibility=()=>{const{isVisibleTopButton:e,isVisibleBotButton:t}=this.state,o=this.isAtTop(),n=this.isAtBot();o||e?o&&e&&this.setState({isVisibleTopButton:!1}):this.setState({isVisibleTopButton:!0}),n||t?n&&t&&this.setState({isVisibleBotButton:!1}):this.setState({isVisibleBotButton:!0})},this.state={heightContent:0,heightWrap:0,isVisibleBotButton:!1,isVisibleTopButton:!1}}componentDidMount(){this._checkButtonsVisibility()}componentDidUpdate(e,t){
|
||||
t.heightWrap===this.state.heightWrap&&t.heightContent===this.state.heightContent||this._handleScroll()}currentPosition(){return this._scroll?this._scroll.scrollTop:0}isAtTop(){return this.currentPosition()<=1}isAtBot(){return this.currentPosition()+this.state.heightWrap>=this.state.heightContent-1}animateTo(e,t=_.dur){const o=this._scroll;o&&(0,w.doAnimate)({onStep(e,t){o.scrollTop=t},from:o.scrollTop,to:Math.round(e),easing:_.easingFunc.easeInOutCubic,duration:t})}render(){const{children:e,isVisibleScrollbar:t,isVisibleFade:o,isVisibleButtons:i,onMouseOver:l,onMouseOut:s}=this.props,{heightContent:r,heightWrap:c,isVisibleBotButton:u,isVisibleTopButton:d}=this.state;return n.createElement(x.Measure,{onResize:this._handleResizeWrap},(h=>n.createElement("div",{className:E.wrap,onMouseOver:l,onMouseOut:s,ref:h},n.createElement("div",{className:a()(E.scrollWrap,{[E.noScrollBar]:!t}),onScroll:this._handleScroll,ref:e=>this._scroll=e},n.createElement(x.Measure,{onResize:this._handleResizeContent},(t=>n.createElement("div",{className:E.content,ref:t},e)))),o&&n.createElement("div",{className:a()(E.fadeTop,{[E.isVisible]:d&&r>c})}),o&&n.createElement("div",{className:a()(E.fadeBot,{[E.isVisible]:u&&r>c})}),i&&n.createElement("div",{className:a()(E.scrollTop,{[E.isVisible]:d&&r>c}),onClick:this._handleScrollTop},n.createElement("div",{className:E.iconWrap},n.createElement(C.Icon,{icon:F,className:E.icon}))),i&&n.createElement("div",{className:a()(E.scrollBot,{[E.isVisible]:u&&r>c}),onClick:this._handleScrollBot},n.createElement("div",{className:E.iconWrap},n.createElement(C.Icon,{icon:F,className:E.icon}))))))}}k.defaultProps={isVisibleScrollbar:!0};var S=o(26709),y=o(59064),L=o(29835),A=o(50238);function M(e){const[t,o]=(0,A.useRovingTabindexElement)(null);return n.createElement(L.ToolButton,{...e,ref:t,tag:"button",tabIndex:o})}function I(e){const{id:t,action:o,isActive:i,isHidden:l,isTransparent:s,toolName:a}=e;return n.createElement(M,{id:t,icon:g.lineToolsInfo[a].icon,isActive:i,isHidden:l,isTransparent:s,onClick:o,tooltip:g.lineToolsInfo[a].localizedName,"data-name":a})}var W,B=o(11542),D=o(90186),N=o(29185),R=o(64147);!function(e){e.Icons="icons",e.Emojis="emojis",e.Stickers="stickers"}(W||(W={}));const V=c.getValue("ToolButtonIcons.LastCategory",W.Emojis),H=new R.WatchedValue(V);function z(){const[e,t]=(0,N.useWatchedValue)(H);return[e,(0,n.useCallback)((e=>{t(e),function(e){c.setValue("ToolButtonIcons.LastCategory",e)}(e)}),[t])]}var P=o(99616),O=o(59453);function j(e){return n.createElement("div",{className:O.wrapper},e.text)}var U=o(84243),Z=o(51609),G=o(22976),K=o(70616),q=o(18042),J=o(44986),Q=o(83778),Y=o(48748)
|
||||
;const $=["0xF087","0xF088","0xF164","0xF165","0xF0A4","0xF0A5","0xF007","0xF0A6","0xF0A7","0xF118","0xF11A","0xF119","0xF183"],X=["0xF153","0xF154","0xF155","0xF156","0xF157","0xF158","0xF159","0xF195","0xF15A"],ee=["0xF060","0xF061","0xF062","0xF063","0xF053","0xF054","0xF077","0xF078","0xF07D","0xF07E","0xF0A9","0xF0AA","0xF0AB","0xF0D9","0xF0DA","0xF0D7","0xF0D8","0xF102","0xF103","0xF104","0xF105","0xF106","0xF107","0xF137","0xF139","0xF13A","0xF112","0xF064","0xF148","0xF149","0xF177","0xF178","0xF175","0xF176","0xF01A","0xF01B","0xF065","0xF066"],te=["0xF11D","0xF11E","0xF024","0xF004","0xF005","0xF006","0xF046","0xF00C","0xF00D","0xF011","0xF012","0xF021","0xF01E","0xF192","0xF041","0xF14A","0xF055","0xF056","0xF057","0xF059","0xF058","0xF05A","0xF05B","0xF05C","0xF05D","0xF05E","0xF067","0xF068","0xF069","0xF06A","0xF071","0xF06E","0xF070","0xF075","0xF08A","0xF0A3","0xF0E5","0xF110","0xF111","0xF123","0xF124","0xF10C","0xF128","0xF129","0xF12A","0xF140","0xF113","0xF17C","0xF179"],oe=["0xF06C","0xF185","0xF186","0xF188","0xF0E7"],ne=["0xF000","0xF002","0xF00E","0xF015","0xF017","0xF030","0xF013","0xF043","0xF06B","0xF072","0xF076","0xF080","0xF084","0xF040","0xF0A1","0xF0A2","0xF0D6","0xF0E3","0xF0EB","0xF0F3","0xF135","0xF13D","0xF2FE"],ie=[...$,...X,...ee,...te,...oe,...ne].map((e=>+e)),le=new Set(ie);const se=[{title:B.t(null,{context:"emoji_group"},o(88906)),emojis:[],content:n.createElement(P.IconItem,{icon:J})},{title:B.t(null,{context:"emoji_group"},o(51853)),emojis:$,content:n.createElement(P.IconItem,{icon:Q})},{title:B.t(null,{context:"emoji_group"},o(33282)),emojis:te,content:n.createElement(P.IconItem,{icon:K})},{title:B.t(null,{context:"emoji_group"},o(10522)),emojis:oe,content:n.createElement(P.IconItem,{icon:Y})},{title:B.t(null,{context:"emoji_group"},o(14143)),emojis:X,content:n.createElement(P.IconItem,{icon:G})},{title:B.t(null,{context:"emoji_group"},o(98355)),emojis:ne,content:n.createElement(P.IconItem,{icon:q})},{title:B.t(null,{context:"emoji_group"},o(74245)),emojis:ee,content:n.createElement(P.IconItem,{icon:Z})}],ae={[W.Icons]:U.drawingToolsIcons.heart,[W.Emojis]:U.drawingToolsIcons.smile,[W.Stickers]:U.drawingToolsIcons.sticker},re=[{title:W.Emojis,content:n.createElement(j,{text:B.t(null,void 0,o(16290))})},{title:W.Stickers,content:n.createElement(j,{text:B.t(null,void 0,o(50428))})},{title:W.Icons,content:n.createElement(j,{text:B.t(null,void 0,o(73829))})}];var ce=o(3343),ue=o(20520),de=o(27317),he=o(76460),me=o(41590),ve=o(40173),pe=o(20243),ge=o(14665);const be=o(77020),fe=(0,n.forwardRef)(((e,t)=>{const{buttonActiveClass:o,buttonClass:i,buttonIcon:l,buttonTitle:a,buttonHotKey:c,dropdownTooltip:u,children:d,isActive:h,isGrayed:m,onClickWhenGrayed:v,checkable:p,isSmallTablet:g,theme:b=be,onClickButton:f,onArrowClick:T,openDropdownByClick:w,onMenuFocus:_=pe.handleAccessibleMenuFocus,onMenuKeyDown:x=pe.handleAccessibleMenuKeyDown,...E}=e,F=(0,ve.mergeThemes)(de.DEFAULT_MENU_THEME,{menuBox:b.menuBox}),[k,S]=(0,n.useState)(!1),[y,M]=(0,n.useState)(!1),I=(0,n.useRef)(null),W=(0,
|
||||
n.useRef)(null),B=(0,n.useRef)(null),D=(0,n.useRef)(0),N=(0,n.useRef)(0),[R,V]=(0,A.useRovingTabindexElement)(null),[H,z]=(0,A.useRovingTabindexElement)(null);return(0,n.useImperativeHandle)(t,(()=>({open:()=>S(!0)})),[]),n.createElement("div",{...E,className:s(b.dropdown,{[b.isGrayed]:m,[b.isActive]:h,[b.isOpened]:k}),onClick:m?v:void 0,onKeyDown:function(e){if(e.defaultPrevented||!(e.target instanceof Node))return;const t=(0,ce.hashFromEvent)(e);if(e.currentTarget.contains(e.target)||27!==t)return;e.preventDefault(),P(!1),y&&H?.current?.focus()},ref:I},n.createElement("div",{ref:W,className:b.control},n.createElement("div",{...function(){if(!m)return r.mobiletouch?p?{onTouchStart:U,onTouchEnd:G,onTouchMove:Z}:{onClick:j}:{onMouseDown:U,onMouseUp:K};return{}}(),className:s(b.buttonWrap,b.accessible)},n.createElement(L.ToolButton,{activeClass:o,className:s(i,b.button),icon:l,isActive:h,isGrayed:m,isTransparent:!p,ref:R,tag:"button",tabIndex:V,onClick:function(e){if(!(0,he.isKeyboardClick)(e))return;w?P(!0,!0):f?.()},tooltip:a,buttonHotKey:c,"data-tooltip-delay":1500,tooltipPosition:"vertical"})),!m&&!r.mobiletouch&&n.createElement("button",{className:s(b.arrow,u&&"apply-common-tooltip common-tooltip-vertical",b.accessible),onClick:function(e){T?.(),P(void 0,(0,he.isKeyboardClick)(e))},onKeyDown:function(e){if(e.defaultPrevented||!(e.target instanceof Node))return;const t=(0,ce.hashFromEvent)(e);if(e.currentTarget.contains(e.target))switch(t){case 39:if(k)return;e.preventDefault(),P(!0,!0);break;case 27:if(!k)return;e.preventDefault(),P(!1)}},type:"button",ref:H,tabIndex:z,"aria-pressed":h,"aria-label":u,"data-tooltip":u},n.createElement(C.Icon,{className:b.arrowIcon,icon:ge}))),!m&&(g?k&&n.createElement(me.Drawer,{className:b.drawer,onClose:O,position:"Bottom"},d):n.createElement(ue.PopupMenu,{theme:F,doNotCloseOn:function(){if(null===I.current)return[];return[I.current]},isOpened:k,onClose:O,position:function(){if(!W||!W.current)return{x:0,y:0};const e=W.current.getBoundingClientRect();return{x:e.left+e.width+1,y:e.top-6}},onKeyDown:x,onFocus:e=>_(e,H),controller:B,onOpen:function(){B.current?.focus()},tabIndex:-1},d)));function P(e,t=!1){const o=void 0!==e?e:!k;S(o),M(!!o&&t)}function O(){P(!1)}function j(){f&&f(),P()}function U(){if(r.mobiletouch&&!p)!N.current&&f&&f();else{if(D.current)return clearTimeout(D.current),D.current=0,void P(!0);D.current=setTimeout((()=>{D.current=0,!N.current&&f&&f()}),175)}N.current=setTimeout((()=>{N.current=0,P(!0)}),300)}function Z(){clearTimeout(N.current),N.current=0,clearTimeout(D.current),D.current=0}function G(e){e.cancelable&&e.preventDefault(),K()}function K(){N.current&&(clearTimeout(N.current),N.current=0,k?P(!1):p||k||r.mobiletouch||!h&&!w?!D.current&&f&&f():P(!0))}}));var Te=o(38297),Ce=o(85034),we=o(59063),_e=o(21097);class xe extends we.CommonJsonStoreService{constructor(e,t,o,n,i=18){super(_e.TVXWindowEvents,c,e,t,[]),this._onChangeDrawingState=()=>{const e=d[this._drawingType].value();this._promote(e)},this._sanitizer=o,this._drawingType=n,this._maxRecentCount=i,
|
||||
d[this._drawingType].subscribe(this._onChangeDrawingState)}destroy(){d[this._drawingType].unsubscribe(this._onChangeDrawingState),super.destroy()}_deserialize(e){const t=this._sanitizer(e);return this._removeUnavailableRecents(e,t)}_removeUnavailableRecents(e,t){return Array.isArray(e)?e.length>this._maxRecentCount&&(t=e.slice(0,this._maxRecentCount)):t=[],t}_promote(e){let t=[...this.get()];const o=t.indexOf(e);-1!==o&&t.splice(o,1),t=[e,...t.slice(0,this._maxRecentCount-1)],this.set(t)}}const Ee=new xe("RECENT_ICONS_CHANGED","linetoolicon.recenticons",(function(e){return e.filter((e=>le.has(e)))}),"iconTool");var Fe=o(29703);function ke(e){const{fallback:t,...o}=e;return n.createElement(n.Suspense,{fallback:t??null},n.createElement(Se,{...o}))}const Se=n.lazy((async()=>{const{getSvgContentForCharCode:e}=await o.e(7987).then(o.bind(o,25482));return{default:t=>{const{charCode:o}=t,i=e(o)??void 0;return n.createElement(C.Icon,{icon:i,className:Fe.iconContainer})}}}));var ye=o(74099);var Le=o(173);const Ae=new xe("RECENT_EMOJIS_CHANGED","linetoolemoji.recents",Le.removeUnavailableEmoji,"emojiTool");var Me;!function(e){e.Elon="elon",e.Doge="doge",e.Dislike="dislike",e.Yolo="yolo",e.Whale="whale",e.Wagmi="wagmi",e.Tendies="tendies",e.Short="short",e.Rugged="rugged",e.Shill="shill",e.Rekt="rekt",e.Sell="sell",e.PaperHands="paper-hands",e.Og="og",e.Fud="fud",e.Gm="gm",e.Ngmi="ngmi",e.Moon="moon",e.Love="love",e.Lambo="lambo",e.Ethereum="ethereum",e.Look="look",e.DiamondHand="diamond-hand",e.Leap="leap",e.Like="like",e.Few="few",e.Bitcoin="bitcoin",e.BagHolder="bag-holder",e.BuyTheDip="buy-the-dip",e.Buy="buy",e.Hodl="hodl"}(Me||(Me={}));const Ie=["elon","doge","dislike","yolo","whale","wagmi","tendies","short","rugged","shill","rekt","sell","paper-hands","og","fud","gm","ngmi","moon","love","lambo","ethereum","look","diamond-hand","leap","like","few","bitcoin","bag-holder","buy-the-dip","buy","hodl"];var We=o(37603),Be=o(90624);const De=new Set(Ie);const Ne=[{title:B.t(null,{context:"emoji_group"},o(88906)),emojis:[],content:n.createElement(P.IconItem,{icon:We})},{title:"TradingView",emojis:Ie,content:n.createElement(P.IconItem,{icon:Be})}],Re=new xe("RECENT_STICKERS_CHANGED","linetoolsticker.recents",(function(e){return e.filter((e=>De.has(e)))}),"stickerTool",3);var Ve=o(78036),He=o(47291),ze=o(33892);var Pe,Oe=o(26601),je=o(65171);!function(e){e.Icon="LineToolIcon",e.Emoji="LineToolEmoji",e.Sticker="LineToolSticker"}(Pe||(Pe={}));const Ue={[W.Icons]:{service:Ee,toolName:"LineToolIcon",ItemComponent:function(e){const{emoji:t,className:o}=e;return n.createElement("div",{className:a()(ye.item,o)},n.createElement(ke,{charCode:Number(t)}))},icons:se,onEmojiSelect:e=>{d.iconTool.setValue(Number(e)),d.tool.setValue("LineToolIcon")}},[W.Emojis]:{service:Ae,toolName:"LineToolEmoji",icons:(0,Le.emojiGroups)(),onEmojiSelect:e=>{d.emojiTool.setValue(e),d.tool.setValue("LineToolEmoji")}},[W.Stickers]:{service:Re,toolName:"LineToolSticker",ItemComponent:function(e){const{emoji:t}=e,{size:i}=(0,
|
||||
Ve.useEnsuredContext)(He.EmojiListContentContext),[l,s]=(0,n.useState)();return(0,n.useEffect)((()=>{o.e(5598).then(o.bind(o,47992)).then((({getSvgContentForSticker:e})=>{const o=e(t);o&&s(o)}))}),[]),n.createElement(C.Icon,{className:ze.sticker,icon:null!==l?l:void 0,style:{width:`${i}px`,height:`${i}px`}})},RowComponent:function(e){return n.createElement(Oe.EmojisRow,{...e,className:je.stickerRow})},icons:Ne,onEmojiSelect:e=>{d.stickerTool.setValue(e),d.tool.setValue("LineToolSticker")},getEmojiSize:e=>e?78:112}};var Ze=o(89265);function Ge(e){const{isSmallTablet:t,maxHeight:o,activeTab:i,setActiveTab:l}=e,a=Ue[i],{service:r,ItemComponent:c,RowComponent:u,onEmojiSelect:d,getEmojiSize:h}=a,m=h&&h(t),[v,p]=(0,n.useState)(Ke(a));return(0,n.useLayoutEffect)((()=>{const e={},t=()=>{const e=Ke(a);p(e)};return t(),r.getOnChange().subscribe(e,t),()=>{r.getOnChange().unsubscribeAll(e)}}),[a]),n.createElement("div",{style:{maxHeight:o}},n.createElement(Te.EmojiList,{className:s(Ze.desktopSize,t&&Ze.smallSize),emojis:v,onSelect:function(e){d(e),(0,y.globalCloseMenu)()},ItemComponent:c,RowComponent:u,height:o,category:i,emojiSize:m}),n.createElement(Ce.GroupTabs,{className:Ze.tabs,tabClassName:Ze.categories,tabs:re,activeTab:i,onTabClick:function(e){l(e)}}))}function Ke(e){const{icons:t,service:o}=e,n=[...t],i=o.get();return n[0].emojis=i.map((e=>String(e))),n.filter((e=>e.emojis.length))}var qe=o(19291),Je=o(68335),Qe=o(3845),Ye=o(33430);const $e={icon:B.t(null,void 0,o(37913)),dropdownTooltip:B.t(null,void 0,o(73829))},Xe=(0,ve.mergeThemes)(be,{menuBox:Ye.menuBox,drawer:Ye.drawer}),et=parseInt(Qe["default-drawer-min-top-distance"]);function tt(e){const{isGrayed:t,isSmallTablet:o}=e,i=(0,D.filterDataProps)(e),[l,s]=z(),[a]=(0,N.useWatchedValue)(d.tool),{toolName:r}=Ue[l];return n.createElement(fe,{theme:Xe,buttonIcon:ae[l],buttonTitle:$e.icon,dropdownTooltip:$e.dropdownTooltip,isActive:a===r,isGrayed:t,isSmallTablet:o,onClickButton:function(){c()},onClickWhenGrayed:()=>(0,h.emit)("onGrayedObjectClicked",{type:"drawing",name:g.lineToolsInfo[r].localizedName}),onArrowClick:function(){c("menu")},openDropdownByClick:!0,onMenuFocus:ot,onMenuKeyDown:function(e){if(e.defaultPrevented)return;const t=(0,Je.hashFromEvent)(e);9!==t&&t!==Je.Modifiers.Shift+9||(0,qe.updateTabIndexes)()},...i},n.createElement(Ge,{isSmallTablet:o,maxHeight:o?Math.min(679,window.innerHeight-et):679,activeTab:l,setActiveTab:s}));function c(e){0}}function ot(e){if(!e.target)return;const t=e.currentTarget;e.target===t&&((0,qe.updateTabIndexes)(),setTimeout((()=>{if(document.activeElement!==t)return;const[e]=(0,qe.queryTabbableElements)(t).sort(qe.navigationOrderComparator);e&&e.focus()})))}var nt=o(32679);class it extends n.PureComponent{constructor(e){super(e),this._handleClick=()=>{this.props.saveDefaultOnChange&&(0,nt.allowSavingDefaults)(!0);const e=!this.props.property.value();this.props.property.setValue(e),this.props.saveDefaultOnChange&&(0,nt.allowSavingDefaults)(!1),this.props.onClick&&this.props.onClick(e)},this.state={
|
||||
;return o.length?o[(t+o.length)%o.length]:null}function m(e){return Array.from(e.querySelectorAll('[data-role="menuitem"]:not([disabled]):not([aria-disabled])')).filter((0,s.createScopedVisibleElementFilter)(e))}function v(e){return Array.from(e.querySelectorAll("[tabindex]:not([disabled]):not([aria-disabled])")).filter((0,s.createScopedVisibleElementFilter)(e))}},40894:(e,t,o)=>{"use strict";o.d(t,{MenuFavoriteButton:()=>u});var n=o(50959),i=o(97754),l=o.n(i),s=o(50238),a=o(36189),r=o(71402),c=o(89888);function u(e){const{onClick:t,isFilled:o,isActive:i,...u}=e,[d,h]=(0,s.useRovingTabindexElement)(null),m=o?r.removeTitlesMap[r.RemoveTitleType.Remove]:r.removeTitlesMap[r.RemoveTitleType.Add];return(0,n.useLayoutEffect)((()=>{const e=d.current;e instanceof HTMLElement&&e.dispatchEvent(new CustomEvent("common-tooltip-update"))}),[m,d]),n.createElement("button",{ref:d,tabIndex:h,onClick:t,className:l()(c.button,i&&c.active,"apply-common-tooltip"),type:"button","aria-label":m,"data-tooltip":m},n.createElement(a.FavoriteButton,{...u,isFilled:o,isActive:i,title:""}))}},16829:(e,t,o)=>{"use strict";o.d(t,{ToolWidgetMenuSummary:()=>s});var n=o(50959),i=o(97754),l=o(55973);function s(e){return n.createElement("div",{className:i(e.className,l.title)},e.children)}},37159:(e,t,o)=>{"use strict";o.r(t),o.d(t,{DrawingToolbarRenderer:()=>Co});var n=o(50959),i=o(32227),l=o(50151),s=o(97754),a=o.n(s),r=o(32563),c=o(56840),u=o(56570),d=o(928),h=o(76422),m=o(52033),v=o(49483),p=o(84015),g=o(2627);class b{constructor(e){this._drawingsAccess=e||{tools:[],type:"black"}}isToolEnabled(e){const t=this._findTool(e);return!(!t||!t.grayed)||("black"===this._drawingsAccess.type?!t:!!t)}isToolGrayed(e){const t=this._findTool(e);return Boolean(t&&t.grayed)}_findTool(e){return this._drawingsAccess.tools.find((t=>t.name===e))}}var f=o(59511),T=o(6307),w=o(9745),C=o(61119),_=o(78871),x=o(45601),E=o(82374),F=o(61380);class k extends n.PureComponent{constructor(e){super(e),this._scroll=null,this._handleScrollTop=()=>{this.animateTo(Math.max(0,this.currentPosition()-(this.state.heightWrap-50)))},this._handleScrollBot=()=>{this.animateTo(Math.min((this.state.heightContent||0)-(this.state.heightWrap||0),this.currentPosition()+(this.state.heightWrap-50)))},this._handleResizeWrap=([e])=>{this.setState({heightWrap:e.contentRect.height})},this._handleResizeContent=([e])=>{this.setState({heightContent:e.contentRect.height})},this._handleScroll=()=>{const{onScroll:e}=this.props;e&&e(this.currentPosition(),this.isAtTop(),this.isAtBot()),this._checkButtonsVisibility()},this._checkButtonsVisibility=()=>{const{isVisibleTopButton:e,isVisibleBotButton:t}=this.state,o=this.isAtTop(),n=this.isAtBot();o||e?o&&e&&this.setState({isVisibleTopButton:!1}):this.setState({isVisibleTopButton:!0}),n||t?n&&t&&this.setState({isVisibleBotButton:!1}):this.setState({isVisibleBotButton:!0})},this.state={heightContent:0,heightWrap:0,isVisibleBotButton:!1,isVisibleTopButton:!1}}componentDidMount(){this._checkButtonsVisibility()}componentDidUpdate(e,t){
|
||||
t.heightWrap===this.state.heightWrap&&t.heightContent===this.state.heightContent||this._handleScroll()}currentPosition(){return this._scroll?this._scroll.scrollTop:0}isAtTop(){return this.currentPosition()<=1}isAtBot(){return this.currentPosition()+this.state.heightWrap>=this.state.heightContent-1}animateTo(e,t=_.dur){const o=this._scroll;o&&(0,C.doAnimate)({onStep(e,t){o.scrollTop=t},from:o.scrollTop,to:Math.round(e),easing:_.easingFunc.easeInOutCubic,duration:t})}render(){const{children:e,isVisibleScrollbar:t,isVisibleFade:o,isVisibleButtons:i,onMouseOver:l,onMouseOut:s}=this.props,{heightContent:r,heightWrap:c,isVisibleBotButton:u,isVisibleTopButton:d}=this.state;return n.createElement(x.Measure,{onResize:this._handleResizeWrap},(h=>n.createElement("div",{className:E.wrap,onMouseOver:l,onMouseOut:s,ref:h},n.createElement("div",{className:a()(E.scrollWrap,{[E.noScrollBar]:!t}),onScroll:this._handleScroll,ref:e=>this._scroll=e},n.createElement(x.Measure,{onResize:this._handleResizeContent},(t=>n.createElement("div",{className:E.content,ref:t},e)))),o&&n.createElement("div",{className:a()(E.fadeTop,{[E.isVisible]:d&&r>c})}),o&&n.createElement("div",{className:a()(E.fadeBot,{[E.isVisible]:u&&r>c})}),i&&n.createElement("div",{className:a()(E.scrollTop,{[E.isVisible]:d&&r>c}),onClick:this._handleScrollTop},n.createElement("div",{className:E.iconWrap},n.createElement(w.Icon,{icon:F,className:E.icon}))),i&&n.createElement("div",{className:a()(E.scrollBot,{[E.isVisible]:u&&r>c}),onClick:this._handleScrollBot},n.createElement("div",{className:E.iconWrap},n.createElement(w.Icon,{icon:F,className:E.icon}))))))}}k.defaultProps={isVisibleScrollbar:!0};var S=o(26709),y=o(59064),L=o(29835),A=o(50238);function M(e){const[t,o]=(0,A.useRovingTabindexElement)(null);return n.createElement(L.ToolButton,{...e,ref:t,tag:"button",tabIndex:o})}function I(e){const{id:t,action:o,isActive:i,isHidden:l,isTransparent:s,toolName:a}=e;return n.createElement(M,{id:t,icon:g.lineToolsInfo[a].icon,isActive:i,isHidden:l,isTransparent:s,onClick:o,tooltip:g.lineToolsInfo[a].localizedName,"data-name":a})}var W,B=o(11542),D=o(90186),N=o(29185),R=o(64147);!function(e){e.Icons="icons",e.Emojis="emojis",e.Stickers="stickers"}(W||(W={}));const V=c.getValue("ToolButtonIcons.LastCategory",W.Emojis),H=new R.WatchedValue(V);function z(){const[e,t]=(0,N.useWatchedValue)(H);return[e,(0,n.useCallback)((e=>{t(e),function(e){c.setValue("ToolButtonIcons.LastCategory",e)}(e)}),[t])]}var P=o(99616),O=o(59453);function j(e){return n.createElement("div",{className:O.wrapper},e.text)}var U=o(84243),Z=o(51609),G=o(22976),K=o(70616),q=o(18042),J=o(44986),Q=o(83778),Y=o(48748)
|
||||
;const $=["0xF087","0xF088","0xF164","0xF165","0xF0A4","0xF0A5","0xF007","0xF0A6","0xF0A7","0xF118","0xF11A","0xF119","0xF183"],X=["0xF153","0xF154","0xF155","0xF156","0xF157","0xF158","0xF159","0xF195","0xF15A"],ee=["0xF060","0xF061","0xF062","0xF063","0xF053","0xF054","0xF077","0xF078","0xF07D","0xF07E","0xF0A9","0xF0AA","0xF0AB","0xF0D9","0xF0DA","0xF0D7","0xF0D8","0xF102","0xF103","0xF104","0xF105","0xF106","0xF107","0xF137","0xF139","0xF13A","0xF112","0xF064","0xF148","0xF149","0xF177","0xF178","0xF175","0xF176","0xF01A","0xF01B","0xF065","0xF066"],te=["0xF11D","0xF11E","0xF024","0xF004","0xF005","0xF006","0xF046","0xF00C","0xF00D","0xF011","0xF012","0xF021","0xF01E","0xF192","0xF041","0xF14A","0xF055","0xF056","0xF057","0xF059","0xF058","0xF05A","0xF05B","0xF05C","0xF05D","0xF05E","0xF067","0xF068","0xF069","0xF06A","0xF071","0xF06E","0xF070","0xF075","0xF08A","0xF0A3","0xF0E5","0xF110","0xF111","0xF123","0xF124","0xF10C","0xF128","0xF129","0xF12A","0xF140","0xF113","0xF17C","0xF179"],oe=["0xF06C","0xF185","0xF186","0xF188","0xF0E7"],ne=["0xF000","0xF002","0xF00E","0xF015","0xF017","0xF030","0xF013","0xF043","0xF06B","0xF072","0xF076","0xF080","0xF084","0xF040","0xF0A1","0xF0A2","0xF0D6","0xF0E3","0xF0EB","0xF0F3","0xF135","0xF13D","0xF2FE"],ie=[...$,...X,...ee,...te,...oe,...ne].map((e=>+e)),le=new Set(ie);const se=[{title:B.t(null,{context:"emoji_group"},o(88906)),emojis:[],content:n.createElement(P.IconItem,{icon:J})},{title:B.t(null,{context:"emoji_group"},o(51853)),emojis:$,content:n.createElement(P.IconItem,{icon:Q})},{title:B.t(null,{context:"emoji_group"},o(33282)),emojis:te,content:n.createElement(P.IconItem,{icon:K})},{title:B.t(null,{context:"emoji_group"},o(10522)),emojis:oe,content:n.createElement(P.IconItem,{icon:Y})},{title:B.t(null,{context:"emoji_group"},o(14143)),emojis:X,content:n.createElement(P.IconItem,{icon:G})},{title:B.t(null,{context:"emoji_group"},o(98355)),emojis:ne,content:n.createElement(P.IconItem,{icon:q})},{title:B.t(null,{context:"emoji_group"},o(74245)),emojis:ee,content:n.createElement(P.IconItem,{icon:Z})}],ae={[W.Icons]:U.drawingToolsIcons.heart,[W.Emojis]:U.drawingToolsIcons.smile,[W.Stickers]:U.drawingToolsIcons.sticker},re=[{title:W.Emojis,content:n.createElement(j,{text:B.t(null,void 0,o(16290))})},{title:W.Stickers,content:n.createElement(j,{text:B.t(null,void 0,o(50428))})},{title:W.Icons,content:n.createElement(j,{text:B.t(null,void 0,o(73829))})}];var ce=o(3343),ue=o(20520),de=o(27317),he=o(76460),me=o(41590),ve=o(40173),pe=o(20243),ge=o(14665);const be=o(77020),fe=(0,n.forwardRef)(((e,t)=>{const{buttonActiveClass:o,buttonClass:i,buttonIcon:l,buttonTitle:a,buttonHotKey:c,dropdownTooltip:u,children:d,isActive:h,isGrayed:m,onClickWhenGrayed:v,checkable:p,isSmallTablet:g,theme:b=be,onClickButton:f,onArrowClick:T,openDropdownByClick:C,onMenuFocus:_=pe.handleAccessibleMenuFocus,onMenuKeyDown:x=pe.handleAccessibleMenuKeyDown,...E}=e,F=(0,ve.mergeThemes)(de.DEFAULT_MENU_THEME,{menuBox:b.menuBox}),[k,S]=(0,n.useState)(!1),[y,M]=(0,n.useState)(!1),I=(0,n.useRef)(null),W=(0,
|
||||
n.useRef)(null),B=(0,n.useRef)(null),D=(0,n.useRef)(0),N=(0,n.useRef)(0),[R,V]=(0,A.useRovingTabindexElement)(null),[H,z]=(0,A.useRovingTabindexElement)(null);return(0,n.useImperativeHandle)(t,(()=>({open:()=>S(!0)})),[]),n.createElement("div",{...E,className:s(b.dropdown,{[b.isGrayed]:m,[b.isActive]:h,[b.isOpened]:k}),onClick:m?v:void 0,onKeyDown:function(e){if(e.defaultPrevented||!(e.target instanceof Node))return;const t=(0,ce.hashFromEvent)(e);if(e.currentTarget.contains(e.target)||27!==t)return;e.preventDefault(),P(!1),y&&H?.current?.focus()},ref:I},n.createElement("div",{ref:W,className:b.control},n.createElement("div",{...function(){if(!m)return r.mobiletouch?p?{onTouchStart:U,onTouchEnd:G,onTouchMove:Z}:{onClick:j}:{onMouseDown:U,onMouseUp:K};return{}}(),className:s(b.buttonWrap,b.accessible)},n.createElement(L.ToolButton,{activeClass:o,className:s(i,b.button),icon:l,isActive:h,isGrayed:m,isTransparent:!p,ref:R,tag:"button",tabIndex:V,onClick:function(e){if(!(0,he.isKeyboardClick)(e))return;C?P(!0,!0):f?.()},tooltip:a,buttonHotKey:c,"data-tooltip-delay":1500,tooltipPosition:"vertical"})),!m&&!r.mobiletouch&&n.createElement("button",{className:s(b.arrow,u&&"apply-common-tooltip common-tooltip-vertical",b.accessible),onClick:function(e){T?.(),P(void 0,(0,he.isKeyboardClick)(e))},onKeyDown:function(e){if(e.defaultPrevented||!(e.target instanceof Node))return;const t=(0,ce.hashFromEvent)(e);if(e.currentTarget.contains(e.target))switch(t){case 39:if(k)return;e.preventDefault(),P(!0,!0);break;case 27:if(!k)return;e.preventDefault(),P(!1)}},type:"button",ref:H,tabIndex:z,"aria-pressed":h,"aria-label":u,"data-tooltip":u},n.createElement(w.Icon,{className:b.arrowIcon,icon:ge}))),!m&&(g?k&&n.createElement(me.Drawer,{className:b.drawer,onClose:O,position:"Bottom"},d):n.createElement(ue.PopupMenu,{theme:F,doNotCloseOn:function(){if(null===I.current)return[];return[I.current]},isOpened:k,onClose:O,position:function(){if(!W||!W.current)return{x:0,y:0};const e=W.current.getBoundingClientRect();return{x:e.left+e.width+1,y:e.top-6}},onKeyDown:x,onFocus:e=>_(e,H),controller:B,onOpen:function(){B.current?.focus()},tabIndex:-1},d)));function P(e,t=!1){const o=void 0!==e?e:!k;S(o),M(!!o&&t)}function O(){P(!1)}function j(){f&&f(),P()}function U(){if(r.mobiletouch&&!p)!N.current&&f&&f();else{if(D.current)return clearTimeout(D.current),D.current=0,void P(!0);D.current=setTimeout((()=>{D.current=0,!N.current&&f&&f()}),175)}N.current=setTimeout((()=>{N.current=0,P(!0)}),300)}function Z(){clearTimeout(N.current),N.current=0,clearTimeout(D.current),D.current=0}function G(e){e.cancelable&&e.preventDefault(),K()}function K(){N.current&&(clearTimeout(N.current),N.current=0,k?P(!1):p||k||r.mobiletouch||!h&&!C?!D.current&&f&&f():P(!0))}}));var Te=o(38297),we=o(85034),Ce=o(59063),_e=o(21097);class xe extends Ce.CommonJsonStoreService{constructor(e,t,o,n,i=18){super(_e.TVXWindowEvents,c,e,t,[]),this._onChangeDrawingState=()=>{const e=d[this._drawingType].value();this._promote(e)},this._sanitizer=o,this._drawingType=n,this._maxRecentCount=i,
|
||||
d[this._drawingType].subscribe(this._onChangeDrawingState)}destroy(){d[this._drawingType].unsubscribe(this._onChangeDrawingState),super.destroy()}_deserialize(e){const t=this._sanitizer(e);return this._removeUnavailableRecents(e,t)}_removeUnavailableRecents(e,t){return Array.isArray(e)?e.length>this._maxRecentCount&&(t=e.slice(0,this._maxRecentCount)):t=[],t}_promote(e){let t=[...this.get()];const o=t.indexOf(e);-1!==o&&t.splice(o,1),t=[e,...t.slice(0,this._maxRecentCount-1)],this.set(t)}}const Ee=new xe("RECENT_ICONS_CHANGED","linetoolicon.recenticons",(function(e){return e.filter((e=>le.has(e)))}),"iconTool");var Fe=o(29703);function ke(e){const{fallback:t,...o}=e;return n.createElement(n.Suspense,{fallback:t??null},n.createElement(Se,{...o}))}const Se=n.lazy((async()=>{const{getSvgContentForCharCode:e}=await o.e(7987).then(o.bind(o,25482));return{default:t=>{const{charCode:o}=t,i=e(o)??void 0;return n.createElement(w.Icon,{icon:i,className:Fe.iconContainer})}}}));var ye=o(74099);var Le=o(173);const Ae=new xe("RECENT_EMOJIS_CHANGED","linetoolemoji.recents",Le.removeUnavailableEmoji,"emojiTool");var Me;!function(e){e.Elon="elon",e.Doge="doge",e.Dislike="dislike",e.Yolo="yolo",e.Whale="whale",e.Wagmi="wagmi",e.Tendies="tendies",e.Short="short",e.Rugged="rugged",e.Shill="shill",e.Rekt="rekt",e.Sell="sell",e.PaperHands="paper-hands",e.Og="og",e.Fud="fud",e.Gm="gm",e.Ngmi="ngmi",e.Moon="moon",e.Love="love",e.Lambo="lambo",e.Ethereum="ethereum",e.Look="look",e.DiamondHand="diamond-hand",e.Leap="leap",e.Like="like",e.Few="few",e.Bitcoin="bitcoin",e.BagHolder="bag-holder",e.BuyTheDip="buy-the-dip",e.Buy="buy",e.Hodl="hodl"}(Me||(Me={}));const Ie=["elon","doge","dislike","yolo","whale","wagmi","tendies","short","rugged","shill","rekt","sell","paper-hands","og","fud","gm","ngmi","moon","love","lambo","ethereum","look","diamond-hand","leap","like","few","bitcoin","bag-holder","buy-the-dip","buy","hodl"];var We=o(37603),Be=o(90624);const De=new Set(Ie);const Ne=[{title:B.t(null,{context:"emoji_group"},o(88906)),emojis:[],content:n.createElement(P.IconItem,{icon:We})},{title:"TradingView",emojis:Ie,content:n.createElement(P.IconItem,{icon:Be})}],Re=new xe("RECENT_STICKERS_CHANGED","linetoolsticker.recents",(function(e){return e.filter((e=>De.has(e)))}),"stickerTool",3);var Ve=o(78036),He=o(47291),ze=o(33892);var Pe,Oe=o(26601),je=o(65171);!function(e){e.Icon="LineToolIcon",e.Emoji="LineToolEmoji",e.Sticker="LineToolSticker"}(Pe||(Pe={}));const Ue={[W.Icons]:{service:Ee,toolName:"LineToolIcon",ItemComponent:function(e){const{emoji:t,className:o}=e;return n.createElement("div",{className:a()(ye.item,o)},n.createElement(ke,{charCode:Number(t)}))},icons:se,onEmojiSelect:e=>{d.iconTool.setValue(Number(e)),d.tool.setValue("LineToolIcon")}},[W.Emojis]:{service:Ae,toolName:"LineToolEmoji",icons:(0,Le.emojiGroups)(),onEmojiSelect:e=>{d.emojiTool.setValue(e),d.tool.setValue("LineToolEmoji")}},[W.Stickers]:{service:Re,toolName:"LineToolSticker",ItemComponent:function(e){const{emoji:t}=e,{size:i}=(0,
|
||||
Ve.useEnsuredContext)(He.EmojiListContentContext),[l,s]=(0,n.useState)();return(0,n.useEffect)((()=>{o.e(5598).then(o.bind(o,47992)).then((({getSvgContentForSticker:e})=>{const o=e(t);o&&s(o)}))}),[]),n.createElement(w.Icon,{className:ze.sticker,icon:null!==l?l:void 0,style:{width:`${i}px`,height:`${i}px`}})},RowComponent:function(e){return n.createElement(Oe.EmojisRow,{...e,className:je.stickerRow})},icons:Ne,onEmojiSelect:e=>{d.stickerTool.setValue(e),d.tool.setValue("LineToolSticker")},getEmojiSize:e=>e?78:112}};var Ze=o(89265);function Ge(e){const{isSmallTablet:t,maxHeight:o,activeTab:i,setActiveTab:l}=e,a=Ue[i],{service:r,ItemComponent:c,RowComponent:u,onEmojiSelect:d,getEmojiSize:h}=a,m=h&&h(t),[v,p]=(0,n.useState)(Ke(a));return(0,n.useLayoutEffect)((()=>{const e={},t=()=>{const e=Ke(a);p(e)};return t(),r.getOnChange().subscribe(e,t),()=>{r.getOnChange().unsubscribeAll(e)}}),[a]),n.createElement("div",{style:{maxHeight:o}},n.createElement(Te.EmojiList,{className:s(Ze.desktopSize,t&&Ze.smallSize),emojis:v,onSelect:function(e){d(e),(0,y.globalCloseMenu)()},ItemComponent:c,RowComponent:u,height:o,category:i,emojiSize:m}),n.createElement(we.GroupTabs,{className:Ze.tabs,tabClassName:Ze.categories,tabs:re,activeTab:i,onTabClick:function(e){l(e)}}))}function Ke(e){const{icons:t,service:o}=e,n=[...t],i=o.get();return n[0].emojis=i.map((e=>String(e))),n.filter((e=>e.emojis.length))}var qe=o(19291),Je=o(68335),Qe=o(3845),Ye=o(33430);const $e={icon:B.t(null,void 0,o(37913)),dropdownTooltip:B.t(null,void 0,o(73829))},Xe=(0,ve.mergeThemes)(be,{menuBox:Ye.menuBox,drawer:Ye.drawer}),et=parseInt(Qe["default-drawer-min-top-distance"]);function tt(e){const{isGrayed:t,isSmallTablet:o}=e,i=(0,D.filterDataProps)(e),[l,s]=z(),[a]=(0,N.useWatchedValue)(d.tool),{toolName:r}=Ue[l];return n.createElement(fe,{theme:Xe,buttonIcon:ae[l],buttonTitle:$e.icon,dropdownTooltip:$e.dropdownTooltip,isActive:a===r,isGrayed:t,isSmallTablet:o,onClickButton:function(){c()},onClickWhenGrayed:()=>(0,h.emit)("onGrayedObjectClicked",{type:"drawing",name:g.lineToolsInfo[r].localizedName}),onArrowClick:function(){c("menu")},openDropdownByClick:!0,onMenuFocus:ot,onMenuKeyDown:function(e){if(e.defaultPrevented)return;const t=(0,Je.hashFromEvent)(e);9!==t&&t!==Je.Modifiers.Shift+9||(0,qe.updateTabIndexes)()},...i},n.createElement(Ge,{isSmallTablet:o,maxHeight:o?Math.min(679,window.innerHeight-et):679,activeTab:l,setActiveTab:s}));function c(e){0}}function ot(e){if(!e.target)return;const t=e.currentTarget;e.target===t&&((0,qe.updateTabIndexes)(),setTimeout((()=>{if(document.activeElement!==t)return;const[e]=(0,qe.queryTabbableElements)(t).sort(qe.navigationOrderComparator);e&&e.focus()})))}var nt=o(32679);class it extends n.PureComponent{constructor(e){super(e),this._handleClick=()=>{this.props.saveDefaultOnChange&&(0,nt.allowSavingDefaults)(!0);const e=!this.props.property.value();this.props.property.setValue(e),this.props.saveDefaultOnChange&&(0,nt.allowSavingDefaults)(!1),this.props.onClick&&this.props.onClick(e)},this.state={
|
||||
isActive:this.props.property.value()}}componentDidMount(){this.props.property.subscribe(this,this._onChange)}componentWillUnmount(){this.props.property.unsubscribe(this,this._onChange)}render(){const{toolName:e}=this.props,{isActive:t}=this.state,o=g.lineToolsInfo[e];return n.createElement(M,{icon:t&&o.iconActive?o.iconActive:o.icon,isActive:t,onClick:this._handleClick,tooltip:o.localizedName,buttonHotKey:o.hotKey,"data-name":e})}_onChange(e){this.setState({isActive:e.value()})}}class lt extends n.PureComponent{constructor(e){super(e),this._handleClick=()=>{d.tool.setValue(this.props.toolName),this.props.onClick?.()},this._onChange=()=>{this.setState({isActive:d.tool.value()===this.props.toolName})},this.state={isActive:d.tool.value()===this.props.toolName}}componentDidMount(){d.tool.subscribe(this._onChange)}componentWillUnmount(){d.tool.unsubscribe(this._onChange)}render(){const{toolName:e}=this.props,{isActive:t}=this.state,o=g.lineToolsInfo[e];return n.createElement(M,{icon:g.lineToolsInfo[e].icon,isActive:t,isTransparent:!0,onClick:this._handleClick,tooltip:o.localizedName,buttonHotKey:o.hotKey,"data-name":e})}}class st extends n.PureComponent{constructor(e){super(e),this._boundUndoModel=null,this._handleClick=()=>{const e=this._activeChartWidget();e.hasModel()&&e.model().zoomFromViewport()},this._syncUnzoomButton=()=>{const e=this._activeChartWidget();let t=!1;if(e.hasModel()){const o=e.model();this._boundUndoModel!==o&&(this._boundUndoModel&&this._boundUndoModel.zoomStack().onChange().unsubscribe(null,this._syncUnzoomButton),o.zoomStack().onChange().subscribe(null,this._syncUnzoomButton),this._boundUndoModel=o),t=!o.zoomStack().isEmpty()}else e.withModel(null,this._syncUnzoomButton);this.setState({isVisible:t})},this.state={isVisible:!1}}componentDidMount(){this.props.chartWidgetCollection.activeChartWidget.subscribe(this._syncUnzoomButton,{callWithLast:!0})}componentWillUnmount(){this.props.chartWidgetCollection.activeChartWidget.unsubscribe(this._syncUnzoomButton)}render(){return this.state.isVisible?n.createElement(I,{action:this._handleClick,isTransparent:!0,toolName:"zoom-out"}):n.createElement("div",null)}_activeChartWidget(){return this.props.chartWidgetCollection.activeChartWidget.value()}}var at=o(11684),rt=o(26744),ct=o(16829),ut=o(40894),dt=o(10838),ht=o(81332),mt=o(32755),vt=o(73824);function pt(e){return"name"in e}new Set(["LineToolTable"]);class gt extends n.PureComponent{constructor(e){super(e),this._onChangeDrawingState=()=>{const e=this._getActiveToolName();this.setState({current:e||this.state.current,isActive:!!e})},this._handleClickButton=()=>{this._trackClick();const{current:e}=this.state;!v.CheckMobile.any()&&e&&this._selectTool(e)},this._handleClickItem=e=>{this._selectTool(e)},this._handleGrayedClick=e=>{(0,h.emit)("onGrayedObjectClicked",{type:"drawing",name:g.lineToolsInfo[e].localizedName})},this._handleClickFavorite=e=>{this.state.favState&&this.state.favState[e]?rt.LinetoolsFavoritesStore.removeFavorite(e):rt.LinetoolsFavoritesStore.addFavorite(e)},this._onAddFavorite=e=>{
|
||||
this.setState({favState:{...this.state.favState,[e]:!0}})},this._onRemoveFavorite=e=>{this.setState({favState:{...this.state.favState,[e]:!1}})},this._onSyncFavorites=()=>{this.setState({favState:this._composeFavState()})},this._handleArrowClick=()=>{this._trackClick("menu")},this._trackClick=e=>{const{trackLabel:t}=this.props};const t=this._getActiveToolName();this.state={current:t||this._firstNonGrayedTool(),favState:this._composeFavState(),isActive:!!t}}componentDidMount(){d.tool.subscribe(this._onChangeDrawingState),rt.LinetoolsFavoritesStore.favoriteAdded.subscribe(null,this._onAddFavorite),rt.LinetoolsFavoritesStore.favoriteRemoved.subscribe(null,this._onRemoveFavorite),rt.LinetoolsFavoritesStore.favoritesSynced.subscribe(null,this._onSyncFavorites)}componentWillUnmount(){d.tool.unsubscribe(this._onChangeDrawingState),rt.LinetoolsFavoritesStore.favoriteAdded.unsubscribe(null,this._onAddFavorite),rt.LinetoolsFavoritesStore.favoriteRemoved.unsubscribe(null,this._onRemoveFavorite),rt.LinetoolsFavoritesStore.favoritesSynced.unsubscribe(null,this._onSyncFavorites)}componentDidUpdate(e,t){e.lineTools!==this.props.lineTools&&this.setState({favState:this._composeFavState()})}render(){const{current:e,favState:t,isActive:o}=this.state;if(!e)return n.createElement(n.Fragment,null);const{favoriting:i,grayedTools:l,lineTools:s,dropdownTooltip:a,isSmallTablet:r}=this.props,c=this._showShortcuts(),u=g.lineToolsInfo[e],d=(0,D.filterDataProps)(this.props);return n.createElement("span",null,n.createElement(fe,{buttonIcon:u.icon,buttonTitle:u.localizedName,buttonHotKey:u.hotKey,dropdownTooltip:a,isActive:o,onClickButton:this._handleClickButton,onArrowClick:this._handleArrowClick,isSmallTablet:r,...d},s.map(((s,a)=>{if("title"in s)return n.createElement(n.Fragment,{key:s.title??`separator${a}`},a>0?n.createElement(at.PopupMenuSeparator,null):null,s.title&&n.createElement(ct.ToolWidgetMenuSummary,{className:vt.sectionTitle},s.title));const{name:u}=s,d=g.lineToolsInfo[u]?.selectHotkey?.hash,h=g.lineToolsInfo[u],m=l[u];return n.createElement(dt.AccessibleMenuItem,{key:u,"data-name":u,theme:r?ht.multilineLabelWithIconAndToolboxTheme:void 0,dontClosePopup:m,forceShowShortcuts:c,shortcut:!r&&d?(0,Je.humanReadableHash)(d):void 0,icon:h.icon,isActive:o&&e===u,appearAsDisabled:m,label:n.createElement("div",{className:vt.label},h.localizedName,!1),showToolboxOnFocus:!0,onClick:m?this._handleGrayedClick:this._handleClickItem,onClickArg:u,showToolboxOnHover:!t[u],toolbox:i&&!m?n.createElement(ut.MenuFavoriteButton,{isActive:o&&e===u,isFilled:t[u],onClick:()=>this._handleClickFavorite(u)}):void 0})}))))}_firstNonGrayedTool(){const{grayedTools:e,lineTools:t}=this.props;return t.find((t=>pt(t)&&!e[t.name]))?.name}_showShortcuts(){return this.props.lineTools.some((e=>"hotkeyHash"in e))}_getActiveToolName(){return this.props.lineTools.find((e=>pt(e)&&e.name===d.tool.value()))?.name}async _selectTool(e){await(0,mt.initLineTool)(e),d.tool.setValue(e)}_composeFavState(){const e={};return this.props.lineTools.forEach((t=>{
|
||||
pt(t)&&(e[t.name]=rt.LinetoolsFavoritesStore.isFavorite(t.name))})),e}}var bt=o(51768),ft=o(16396),Tt=o(11766);const Ct=(0,ve.mergeThemes)(ft.DEFAULT_POPUP_MENU_ITEM_THEME,Tt),wt=!1;class _t extends n.PureComponent{constructor(e){super(e),this._handleRemoveToolClick=()=>{r.mobiletouch||this._handleRemoveDrawings(),Et()},this._handleRemoveDrawings=()=>{xt("remove drawing"),this.props.chartWidgetCollection.activeChartWidget.value().actions().paneRemoveAllDrawingTools.execute()},this._handleRemoveStudies=()=>{xt("remove indicator"),this.props.chartWidgetCollection.activeChartWidget.value().actions().paneRemoveAllStudies.execute()},this._handleRemoveAll=()=>{xt("remove all"),this.props.chartWidgetCollection.activeChartWidget.value().actions().paneRemoveAllStudiesDrawingTools.execute()},this._handleActiveChartWidgetChanged=e=>{this._activeChartWidget&&this._unsubscribeToModelChanges(this._activeChartWidget),e&&this._subscribeToModelChanges(e),this._activeChartWidget=e,this._handleCollectionChanged()},this._handleCollectionChanged=()=>{this.setState(this._getActualState())},this._getActualState=()=>{if(!this._activeChartWidget||!this._activeChartWidget.hasModel())return{removeAllDrawingsLabel:B.t(null,void 0,o(96374)),removeAllStudiesLabel:B.t(null,void 0,o(99984)),removeAllLabel:B.t(null,void 0,o(53981))};const e=this._activeChartWidget.actions();return{removeAllDrawingsLabel:e.paneRemoveAllDrawingTools.getState().label,removeAllStudiesLabel:e.paneRemoveAllStudies.getState().label,removeAllLabel:e.paneRemoveAllStudiesDrawingTools.getState().label}},this._activeChartWidget=this.props.chartWidgetCollection.activeChartWidget.value(),this.state=this._getActualState()}componentDidMount(){this.props.chartWidgetCollection.activeChartWidget.subscribe(this._handleActiveChartWidgetChanged,{callWithLast:!0})}componentWillUnmount(){this._activeChartWidget&&this._unsubscribeToModelChanges(this._activeChartWidget),this.props.chartWidgetCollection.activeChartWidget.unsubscribe(this._handleActiveChartWidgetChanged)}render(){const e=this.props.isSmallTablet?Ct:void 0,{removeAllDrawingsLabel:t,removeAllStudiesLabel:i,removeAllLabel:l}=this.state;return n.createElement(fe,{buttonIcon:g.lineToolsInfo[this.props.toolName].icon,buttonTitle:t,onClickButton:this._handleRemoveToolClick,dropdownTooltip:B.t(null,void 0,o(2671)),isSmallTablet:this.props.isSmallTablet,"data-name":this.props.toolName,onArrowClick:this._handleArrowClick,openDropdownByClick:wt},n.createElement(dt.AccessibleMenuItem,{"data-name":"remove-drawing-tools",label:t,onClick:this._handleRemoveDrawings,theme:e}),n.createElement(dt.AccessibleMenuItem,{"data-name":"remove-studies",label:i,onClick:this._handleRemoveStudies,theme:e}),n.createElement(dt.AccessibleMenuItem,{"data-name":"remove-all",label:l,onClick:this._handleRemoveAll,theme:e}))}_handleArrowClick(){Et("menu")}_subscribeToModelChanges(e){e.withModel(this,(()=>{this._handleCollectionChanged(),e.model().model().dataSourceCollectionChanged().subscribe(this,this._handleCollectionChanged)}))}_unsubscribeToModelChanges(e){
|
||||
e.hasModel()&&e.model().model().dataSourceCollectionChanged().unsubscribe(this,this._handleCollectionChanged),e.modelCreated().unsubscribeAll(this)}}function xt(e){(0,bt.trackEvent)("GUI","Chart Left Toolbar",e)}function Et(e){0}var Ft=o(7029),kt=o(90995),St=o(14881);const yt=n.createContext({hideMode:"drawings",isActive:!1});function Lt(e){const{hideMode:t,option:{label:o,dataName:i,getBoxedValue:l},isSmallTablet:s,onClick:a}=e,{hideMode:r,isActive:c}=(0,n.useContext)(yt),u=l?.();return"all"===t||u?n.createElement(dt.AccessibleMenuItem,{label:o,isActive:r===t&&c,onClick:function(){a(t,(0,kt.toggleHideMode)(t))},"data-name":i,theme:s?Ct:void 0}):n.createElement(n.Fragment,null)}const At={drawings:{active:U.drawingToolsIcons.hideAllDrawingToolsActive,inactive:U.drawingToolsIcons.hideAllDrawingTools},indicators:{active:U.drawingToolsIcons.hideAllIndicatorsActive,inactive:U.drawingToolsIcons.hideAllIndicators},positions:{active:U.drawingToolsIcons.hideAllPositionsToolsActive,inactive:U.drawingToolsIcons.hideAllPositionsTools},all:{active:U.drawingToolsIcons.hideAllDrawingsActive,inactive:U.drawingToolsIcons.hideAllDrawings}};function Mt(e){const{isSmallTablet:t}=e,[{isActive:i,hideMode:s},a]=(0,n.useState)((()=>({isActive:!1,hideMode:(0,kt.getSavedHideMode)()})));(0,n.useEffect)((()=>(St.hideStateChange.subscribe(null,a),()=>{St.hideStateChange.unsubscribe(null,a)})),[]);const r=g.lineToolsInfo.hideAllDrawings,{trackLabel:c,tooltip:u,dataName:d}=(0,l.ensureDefined)((0,kt.getHideOptions)().get(s)),h=At[s][i?"active":"inactive"],m=i?u.active:u.inactive;return n.createElement(fe,{buttonIcon:h,buttonTitle:m,buttonHotKey:r.hotKey,dropdownTooltip:Ft.t(null,void 0,o(95343)),onClickButton:function(){(0,kt.toggleHideMode)(s),It(c,!i),Wt(i?"on":"off")},isSmallTablet:t,isActive:i,checkable:!0,"data-name":"hide-all","data-type":d,onArrowClick:function(){Wt("menu")}},n.createElement(yt.Provider,{value:{isActive:i,hideMode:s}},Array.from((0,kt.getHideOptions)()).map((([e,o])=>n.createElement(Lt,{key:e,hideMode:e,option:o,isSmallTablet:t,onClick:v})))));function v(e,t){It((0,l.ensureDefined)((0,kt.getHideOptions)().get(e)).trackLabel,t)}}function It(e,t){(0,bt.trackEvent)("GUI","Chart Left Toolbar",`${e} ${t?"on":"off"}`)}function Wt(e){0}var Bt=o(9726),Dt=o(53573);const Nt=B.t(null,void 0,o(51465));class Rt extends n.PureComponent{constructor(){super(...arguments),this._instance=null,this._promise=null,this._bindedForceUpdate=()=>this.forceUpdate(),this._handleClick=()=>{null!==this._instance&&(this._instance.isVisible()?(this._instance.hideAndSaveSettingsValue(),this._trackClick(!1)):(this._instance.showAndSaveSettingsValue(),this._trackClick(!0)))}}componentDidMount(){const e=this._promise=(0,l.ensureNotNull)((0,Bt.getFavoriteDrawingToolbarPromise)());e.then((t=>{this._promise===e&&(this._instance=t,this._instance.canBeShown().subscribe(this._bindedForceUpdate),this._instance.visibility().subscribe(this._bindedForceUpdate),this.forceUpdate())}))}componentWillUnmount(){this._promise=null,
|
||||
pt(t)&&(e[t.name]=rt.LinetoolsFavoritesStore.isFavorite(t.name))})),e}}var bt=o(51768),ft=o(16396),Tt=o(11766);const wt=(0,ve.mergeThemes)(ft.DEFAULT_POPUP_MENU_ITEM_THEME,Tt),Ct=!1;class _t extends n.PureComponent{constructor(e){super(e),this._handleRemoveToolClick=()=>{r.mobiletouch||this._handleRemoveDrawings(),Et()},this._handleRemoveDrawings=()=>{xt("remove drawing"),this.props.chartWidgetCollection.activeChartWidget.value().actions().paneRemoveAllDrawingTools.execute()},this._handleRemoveStudies=()=>{xt("remove indicator"),this.props.chartWidgetCollection.activeChartWidget.value().actions().paneRemoveAllStudies.execute()},this._handleRemoveAll=()=>{xt("remove all"),this.props.chartWidgetCollection.activeChartWidget.value().actions().paneRemoveAllStudiesDrawingTools.execute()},this._handleActiveChartWidgetChanged=e=>{this._activeChartWidget&&this._unsubscribeToModelChanges(this._activeChartWidget),e&&this._subscribeToModelChanges(e),this._activeChartWidget=e,this._handleCollectionChanged()},this._handleCollectionChanged=()=>{this.setState(this._getActualState())},this._getActualState=()=>{if(!this._activeChartWidget||!this._activeChartWidget.hasModel())return{removeAllDrawingsLabel:B.t(null,void 0,o(96374)),removeAllStudiesLabel:B.t(null,void 0,o(99984)),removeAllLabel:B.t(null,void 0,o(53981))};const e=this._activeChartWidget.actions();return{removeAllDrawingsLabel:e.paneRemoveAllDrawingTools.getState().label,removeAllStudiesLabel:e.paneRemoveAllStudies.getState().label,removeAllLabel:e.paneRemoveAllStudiesDrawingTools.getState().label}},this._activeChartWidget=this.props.chartWidgetCollection.activeChartWidget.value(),this.state=this._getActualState()}componentDidMount(){this.props.chartWidgetCollection.activeChartWidget.subscribe(this._handleActiveChartWidgetChanged,{callWithLast:!0})}componentWillUnmount(){this._activeChartWidget&&this._unsubscribeToModelChanges(this._activeChartWidget),this.props.chartWidgetCollection.activeChartWidget.unsubscribe(this._handleActiveChartWidgetChanged)}render(){const e=this.props.isSmallTablet?wt:void 0,{removeAllDrawingsLabel:t,removeAllStudiesLabel:i,removeAllLabel:l}=this.state;return n.createElement(fe,{buttonIcon:g.lineToolsInfo[this.props.toolName].icon,buttonTitle:t,onClickButton:this._handleRemoveToolClick,dropdownTooltip:B.t(null,void 0,o(2671)),isSmallTablet:this.props.isSmallTablet,"data-name":this.props.toolName,onArrowClick:this._handleArrowClick,openDropdownByClick:Ct},n.createElement(dt.AccessibleMenuItem,{"data-name":"remove-drawing-tools",label:t,onClick:this._handleRemoveDrawings,theme:e}),n.createElement(dt.AccessibleMenuItem,{"data-name":"remove-studies",label:i,onClick:this._handleRemoveStudies,theme:e}),n.createElement(dt.AccessibleMenuItem,{"data-name":"remove-all",label:l,onClick:this._handleRemoveAll,theme:e}))}_handleArrowClick(){Et("menu")}_subscribeToModelChanges(e){e.withModel(this,(()=>{this._handleCollectionChanged(),e.model().model().dataSourceCollectionChanged().subscribe(this,this._handleCollectionChanged)}))}_unsubscribeToModelChanges(e){
|
||||
e.hasModel()&&e.model().model().dataSourceCollectionChanged().unsubscribe(this,this._handleCollectionChanged),e.modelCreated().unsubscribeAll(this)}}function xt(e){(0,bt.trackEvent)("GUI","Chart Left Toolbar",e)}function Et(e){0}var Ft=o(7029),kt=o(90995),St=o(14881);const yt=n.createContext({hideMode:"drawings",isActive:!1});function Lt(e){const{hideMode:t,option:{label:o,dataName:i,getBoxedValue:l},isSmallTablet:s,onClick:a}=e,{hideMode:r,isActive:c}=(0,n.useContext)(yt),u=l?.();return"all"===t||u?n.createElement(dt.AccessibleMenuItem,{label:o,isActive:r===t&&c,onClick:function(){a(t,(0,kt.toggleHideMode)(t))},"data-name":i,theme:s?wt:void 0}):n.createElement(n.Fragment,null)}const At={drawings:{active:U.drawingToolsIcons.hideAllDrawingToolsActive,inactive:U.drawingToolsIcons.hideAllDrawingTools},indicators:{active:U.drawingToolsIcons.hideAllIndicatorsActive,inactive:U.drawingToolsIcons.hideAllIndicators},positions:{active:U.drawingToolsIcons.hideAllPositionsToolsActive,inactive:U.drawingToolsIcons.hideAllPositionsTools},all:{active:U.drawingToolsIcons.hideAllDrawingsActive,inactive:U.drawingToolsIcons.hideAllDrawings}};function Mt(e){const{isSmallTablet:t}=e,[{isActive:i,hideMode:s},a]=(0,n.useState)((()=>({isActive:!1,hideMode:(0,kt.getSavedHideMode)()})));(0,n.useEffect)((()=>(St.hideStateChange.subscribe(null,a),()=>{St.hideStateChange.unsubscribe(null,a)})),[]);const r=g.lineToolsInfo.hideAllDrawings,{trackLabel:c,tooltip:u,dataName:d}=(0,l.ensureDefined)((0,kt.getHideOptions)().get(s)),h=At[s][i?"active":"inactive"],m=i?u.active:u.inactive;return n.createElement(fe,{buttonIcon:h,buttonTitle:m,buttonHotKey:r.hotKey,dropdownTooltip:Ft.t(null,void 0,o(95343)),onClickButton:function(){(0,kt.toggleHideMode)(s),It(c,!i),Wt(i?"on":"off")},isSmallTablet:t,isActive:i,checkable:!0,"data-name":"hide-all","data-type":d,onArrowClick:function(){Wt("menu")}},n.createElement(yt.Provider,{value:{isActive:i,hideMode:s}},Array.from((0,kt.getHideOptions)()).map((([e,o])=>n.createElement(Lt,{key:e,hideMode:e,option:o,isSmallTablet:t,onClick:v})))));function v(e,t){It((0,l.ensureDefined)((0,kt.getHideOptions)().get(e)).trackLabel,t)}}function It(e,t){(0,bt.trackEvent)("GUI","Chart Left Toolbar",`${e} ${t?"on":"off"}`)}function Wt(e){0}var Bt=o(9726),Dt=o(53573);const Nt=B.t(null,void 0,o(51465));class Rt extends n.PureComponent{constructor(){super(...arguments),this._instance=null,this._promise=null,this._bindedForceUpdate=()=>this.forceUpdate(),this._handleClick=()=>{null!==this._instance&&(this._instance.isVisible()?(this._instance.hideAndSaveSettingsValue(),this._trackClick(!1)):(this._instance.showAndSaveSettingsValue(),this._trackClick(!0)))}}componentDidMount(){const e=this._promise=(0,l.ensureNotNull)((0,Bt.getFavoriteDrawingToolbarPromise)());e.then((t=>{this._promise===e&&(this._instance=t,this._instance.canBeShown().subscribe(this._bindedForceUpdate),this._instance.visibility().subscribe(this._bindedForceUpdate),this.forceUpdate())}))}componentWillUnmount(){this._promise=null,
|
||||
null!==this._instance&&(this._instance.canBeShown().unsubscribe(this._bindedForceUpdate),this._instance.visibility().unsubscribe(this._bindedForceUpdate),this._instance=null)}render(){return null!==this._instance&&this._instance.canBeShown().value()?n.createElement(M,{id:this.props.id,icon:Dt,isActive:this._instance.isVisible(),onClick:this._handleClick,tooltip:Nt}):null}_trackClick(e){0}}var Vt=o(77975),Ht=o(92693),zt=o(81171),Pt=o(57503);const Ot={[Ht.MagnetMode.WeakMagnet]:{id:Ht.MagnetMode.WeakMagnet,name:"weakMagnet",icon:U.drawingToolsIcons.magnet,localizedName:B.t(null,void 0,o(3519))},[Ht.MagnetMode.StrongMagnet]:{id:Ht.MagnetMode.StrongMagnet,name:"strongMagnet",icon:U.drawingToolsIcons.strongMagnet,localizedName:B.t(null,void 0,o(94593))}};function jt(e){const{isSmallTablet:t}=e,i=(0,Vt.useWatchedValueReadonly)({watchedValue:(0,zt.magnetEnabled)()}),l=(0,Vt.useWatchedValueReadonly)({watchedValue:(0,zt.magnetMode)()});return n.createElement("div",{className:Pt.toolButtonMagnet},n.createElement(fe,{"data-name":"magnet-button",buttonIcon:Ot[l].icon,buttonTitle:g.lineToolsInfo.magnet.localizedName,dropdownTooltip:B.t(null,void 0,o(41964)),isActive:i,onClickButton:function(){const e=!i;(0,bt.trackEvent)("GUI","Chart Left Toolbar","magnet mode "+(e?"on":"off")),!1;(0,zt.setIsMagnetEnabled)(e)},buttonHotKey:g.lineToolsInfo.magnet.hotKey,checkable:!0,isSmallTablet:t,onArrowClick:function(){0}},Object.values(Ot).map((({id:e,name:o,localizedName:a,icon:r})=>n.createElement(dt.AccessibleMenuItem,{key:e,className:t?Pt.toolButtonMagnet__menuItem:void 0,"data-name":o,icon:r,isActive:i&&l===e,label:a,onClick:s,onClickArg:e})))),!1);function s(e){void 0!==e&&((0,bt.trackEvent)("GUI","Magnet mode",e===Ht.MagnetMode.WeakMagnet?"Weak":"Strong"),(0,zt.setMagnetMode)(e))}}var Ut;!function(e){e.Screenshot="drawing-toolbar-screenshot",e.FavoriteDrawings="drawing-toolbar-favorite-drawings",e.ObjectTree="drawing-toolbar-object-tree"}(Ut||(Ut={}));var Zt=o(70412),Gt=o(14729),Kt=o(27235),qt=o(29197),Jt=o(6190),Qt=o(3088);const Yt=Qt,$t="http://www.w3.org/2000/svg";function Xt(e){const{direction:t,theme:o=Qt}=e;return n.createElement("svg",{xmlns:$t,width:"9",height:"27",viewBox:"0 0 9 27",className:s(o.container,"right"===t?o.mirror:null),onContextMenu:Gt.preventDefault},n.createElement("g",{fill:"none",fillRule:"evenodd"},n.createElement("path",{className:o.background,d:"M4.5.5a4 4 0 0 1 4 4v18a4 4 0 1 1-8 0v-18a4 4 0 0 1 4-4z"}),n.createElement("path",{className:o.arrow,d:"M5.5 10l-2 3.5 2 3.5"})))}var eo=o(39416),to=o(7047),oo=o(55613);const no=(0,ve.mergeThemes)(Yt,oo),io={hide:B.t(null,void 0,o(99838)),show:B.t(null,void 0,o(32579))},lo=(0,n.forwardRef)(((e,t)=>{const{toolbarVisible:o,"data-name":i}=e,l=(0,eo.useFunctionalRefObject)(t);return n.createElement("button",{"data-tooltip-show-on-focus":"true",...to.MouseClickAutoBlurHandler.attributes(),ref:l,type:"button","aria-label":o?io.hide:io.show,"data-tooltip":o?io.hide:io.show,
|
||||
className:s(no.toggleButton,"apply-common-tooltip common-tooltip-vertical",!o&&no.collapsed,no.accessible),onClick:function(){T.isDrawingToolbarVisible.setValue(!T.isDrawingToolbarVisible.value())},"data-name":i,"data-value":o?"visible":"collapsed"},n.createElement(Xt,{direction:o?"left":"right",theme:o?void 0:no}))}));var so=o(37558),ao=o(24437),ro=o(90692);const co={chartWidgetCollection:o(19036).any.isRequired};var uo=o(77151),ho=o(63754);const mo=u.enabled("right_toolbar"),vo=u.enabled("keep_object_tree_widget_in_right_toolbar"),po=(0,v.onWidget)(),go=new m.Delegate,bo=bt.trackEvent.bind(null,"GUI","Chart Left Toolbar"),fo=(e,t)=>bo(`${e} ${t?"on":"off"}`);class To extends n.PureComponent{constructor(e){super(e),this._grayedTools={},this._handleMeasureClick=()=>{Co("measure")},this._handleZoomInClick=()=>{Co("zoom in")},this._handleDrawingClick=e=>{fo("drawing mode",e),Co("drawing mode",e?"on":"off")},this._handleLockClick=e=>{fo("lock all drawing",e),Co("lock",e?"on":"off")},this._handleSyncClick=e=>{fo("sync",e),Co("sync",e?"on":"off")},this._handleObjectsTreeClick=()=>{this._activeChartWidget().showObjectsTreeDialog(),Co("object tree")},this._handleMouseOver=e=>{(0,Zt.hoverMouseEventFilter)(e)&&this.setState({isHovered:!0})},this._handleMouseOut=e=>{(0,Zt.hoverMouseEventFilter)(e)&&this.setState({isHovered:!1})},this._handleChangeVisibility=e=>{this.setState({isVisible:e})},this._handleEsc=()=>{d.resetToCursor(!0)},this._handleWidgetbarSettled=e=>{this.setState({isWidgetbarVisible:Boolean(window.widgetbar?.visible().value()),widgetbarSettled:e})},this._handleWidgetbarVisible=e=>{this.setState({isWidgetbarVisible:e})},d.init(),this._toolsFilter=new b(this.props.drawingsAccess),this._filteredLineTools=f.lineTools.reduce(((e,t)=>{const{id:o,title:n,trackLabel:i}=t,l=e=>this._toolsFilter.isToolEnabled(g.lineToolsInfo[e.name].localizedName),s=[];return(0,f.isLineToolsGroupWithSections)(t)?t.sections.forEach((e=>{const t=e.items.filter(l);t.length&&s.push({title:e.title},...t)})):s.push(...t.items.filter(l)),s.length&&e.push({id:o,title:n,trackLabel:i,items:s}),e}),[]),this._filteredLineTools.forEach((e=>{e.items.forEach((e=>{"name"in e&&(this._grayedTools[e.name]=this._toolsFilter.isToolGrayed(g.lineToolsInfo[e.name].localizedName))}))})),this.state={isHovered:!1,isVisible:T.isDrawingToolbarVisible.value(),isWidgetbarVisible:Boolean(window.widgetbar?.visible().value()),widgetbarSettled:void 0!==window.widgetbar},this._features={favoriting:!this.props.readOnly&&!po&&u.enabled("items_favoriting"),multicharts:u.enabled("support_multicharts"),tools:!po||!0},this._registry={chartWidgetCollection:this.props.chartWidgetCollection},this._negotiateResizer()}componentDidMount(){T.isDrawingToolbarVisible.subscribe(this._handleChangeVisibility),y.globalCloseDelegate.subscribe(this,this._handleGlobalClose),this._tool=d.tool.spawn(),this._tool.subscribe(this._updateHotkeys.bind(this)),this._initHotkeys(),this.props.widgetbarSettled&&(this.props.widgetbarSettled.subscribe(this,this._handleWidgetbarSettled),
|
||||
v.CheckMobile.any()&&window.widgetbar?.visible().subscribe(this._handleWidgetbarVisible))}componentWillUnmount(){window.widgetbar?.visible().unsubscribe(this._handleWidgetbarVisible),T.isDrawingToolbarVisible.unsubscribe(this._handleChangeVisibility),y.globalCloseDelegate.unsubscribe(this,this._handleGlobalClose),this._tool.destroy(),this._hotkeys.destroy()}componentDidUpdate(e,t){const{isVisible:o,widgetbarSettled:n}=this.state;o!==t.isVisible&&(h.emit("toggle_sidebar",!o),c.setValue("ChartDrawingToolbarWidget.visible",o),this._negotiateResizer()),t.widgetbarSettled!==n&&n&&v.CheckMobile.any()&&window.widgetbar?.visible().subscribe(this._handleWidgetbarVisible)}render(){const{bgColor:e,chartWidgetCollection:t,readOnly:o}=this.props,{isHovered:i,isVisible:l}=this.state,a={backgroundColor:e&&`#${e}`};let c;c=n.createElement(lo,{toolbarVisible:l,"data-name":"toolbar-drawing-toggle-button"});const h=()=>!!this._features.tools&&!(!u.enabled("show_object_tree")||vo&&!mo);return n.createElement(uo.RegistryProvider,{validation:co,value:this._registry},n.createElement(qt.CloseDelegateContext.Provider,{value:go},n.createElement(so.DrawerManager,null,n.createElement(ro.MatchMedia,{rule:ao.DialogBreakpoints.TabletSmall},(e=>n.createElement(Jt.Toolbar,{id:"drawing-toolbar",className:s(ho.drawingToolbar,{[ho.isHidden]:!l}),style:a,onClick:this.props.onClick,onContextMenu:Gt.preventDefaultForContextMenu,orientation:"vertical"},n.createElement(k,{onScroll:this._handleGlobalClose,isVisibleFade:r.mobiletouch,isVisibleButtons:!r.mobiletouch&&i,isVisibleScrollbar:!1,onMouseOver:this._handleMouseOver,onMouseOut:this._handleMouseOut},n.createElement("div",{className:ho.inner},!o&&n.createElement("div",{className:ho.group,style:a},this._filteredLineTools.map((o=>n.createElement(gt,{key:o.id,"data-name":o.id,chartWidgetCollection:t,favoriting:this._features.favoriting&&!("linetool-group-cursors"===o.id&&(0,p.isOnMobileAppPage)("any")),grayedTools:this._grayedTools,dropdownTooltip:o.title,lineTools:o.items,isSmallTablet:e,trackLabel:o.trackLabel}))),this._toolsFilter.isToolEnabled("Font Icons")&&n.createElement(tt,{"data-name":"linetool-group-font-icons",isGrayed:this._grayedTools["Font Icons"],isSmallTablet:e})),!o&&n.createElement("div",{className:ho.group,style:a},n.createElement(lt,{toolName:"measure",onClick:this._handleMeasureClick}),n.createElement(lt,{toolName:"zoom",onClick:this._handleZoomInClick}),n.createElement(st,{chartWidgetCollection:t})),!o&&n.createElement("div",{className:ho.group,style:a},n.createElement(jt,{isSmallTablet:e}),this._features.tools&&n.createElement(it,{property:d.properties().childs().stayInDrawingMode,saveDefaultOnChange:!0,toolName:"drawginmode",onClick:this._handleDrawingClick}),this._features.tools&&n.createElement(it,{property:d.lockDrawings(),toolName:"lockAllDrawings",onClick:this._handleLockClick}),this._features.tools&&n.createElement(Mt,{isSmallTablet:e}),!1),!o&&this._features.tools&&n.createElement("div",{className:ho.group,style:a},n.createElement(_t,{chartWidgetCollection:t,isSmallTablet:e,
|
||||
toolName:"removeAllDrawingTools"})),n.createElement("div",{className:ho.fill,style:a}),!o&&(this._features.tools||!1)&&n.createElement("div",{className:s(ho.group,ho.lastGroup),style:a},!1,this._features.tools&&this._features.favoriting&&n.createElement(Rt,{id:Ut.FavoriteDrawings}),h()&&n.createElement(I,{id:Ut.ObjectTree,action:this._handleObjectsTreeClick,toolName:"showObjectsTree"}))))))),c)))}_activeChartWidget(){return this.props.chartWidgetCollection.activeChartWidget.value()}_negotiateResizer(){const e=Kt.TOOLBAR_WIDTH_COLLAPSED;this.props.resizerBridge.negotiateWidth(this.state.isVisible?Kt.TOOLBAR_WIDTH_EXPANDED:e)}_handleGlobalClose(){go.fire()}_updateHotkeys(){this._hotkeys.promote()}_initHotkeys(){this._hotkeys=S.createGroup({desc:"Drawing Toolbar"}),this._hotkeys.add({desc:"Reset",hotkey:27,handler:()=>this._handleEsc(),isDisabled:()=>d.toolIsCursor(d.tool.value())})}}function Co(e,t){0}class wo{constructor(e,t){this._component=null,this._handleRef=e=>{this._component=e},this._container=e,i.render(n.createElement(To,{...t,ref:this._handleRef}),this._container)}destroy(){i.unmountComponentAtNode(this._container)}getComponent(){return(0,l.ensureNotNull)(this._component)}}},59511:(e,t,o)=>{"use strict";o.d(t,{isLineToolsGroupWithSections:()=>r,lineTools:()=>a,lineToolsFlat:()=>c});var n=o(11542),i=(o(49483),o(56570)),l=o(37265);const s=i.enabled("image_drawingtool"),a=[{id:"linetool-group-cursors",title:n.t(null,void 0,o(81578)),sections:[{items:[{name:"cursor"},{name:"dot"},{name:"arrow"},{name:"demonstration"},null].filter(l.isExistent)},{items:[{name:"eraser"}]}],trackLabel:null},{id:"linetool-group-trend-line",title:n.t(null,void 0,o(48773)),sections:[{title:n.t(null,void 0,o(56982)),items:[{name:"LineToolTrendLine"},{name:"LineToolRay"},{name:"LineToolInfoLine"},{name:"LineToolExtended"},{name:"LineToolTrendAngle"},{name:"LineToolHorzLine"},{name:"LineToolHorzRay"},{name:"LineToolVertLine"},{name:"LineToolCrossLine"}]},{title:n.t(null,void 0,o(59934)),items:[{name:"LineToolParallelChannel"},{name:"LineToolRegressionTrend"},{name:"LineToolFlatBottom"},{name:"LineToolDisjointAngle"}]},{title:n.t(null,void 0,o(36167)),items:[{name:"LineToolPitchfork"},{name:"LineToolSchiffPitchfork2"},{name:"LineToolSchiffPitchfork"},{name:"LineToolInsidePitchfork"}]}],trackLabel:null},{id:"linetool-group-gann-and-fibonacci",title:n.t(null,void 0,o(2654)),sections:[{title:n.t(null,void 0,o(26578)),items:[{name:"LineToolFibRetracement"},{name:"LineToolTrendBasedFibExtension"},{name:"LineToolFibChannel"},{name:"LineToolFibTimeZone"},{name:"LineToolFibSpeedResistanceFan"},{name:"LineToolTrendBasedFibTime"},{name:"LineToolFibCircles"},{name:"LineToolFibSpiral"},{name:"LineToolFibSpeedResistanceArcs"},{name:"LineToolFibWedge"},{name:"LineToolPitchfan"}]},{title:n.t(null,void 0,o(51494)),items:[{name:"LineToolGannSquare"},{name:"LineToolGannFixed"},{name:"LineToolGannComplex"},{name:"LineToolGannFan"}]}],trackLabel:null},{id:"linetool-group-patterns",title:n.t(null,void 0,o(46417)),sections:[{title:n.t(null,void 0,o(46417)),
|
||||
items:[{name:"LineTool5PointsPattern"},{name:"LineToolCypherPattern"},{name:"LineToolHeadAndShoulders"},{name:"LineToolABCD"},{name:"LineToolTrianglePattern"},{name:"LineToolThreeDrivers"}]},{title:n.t(null,void 0,o(44255)),items:[{name:"LineToolElliottImpulse"},{name:"LineToolElliottCorrection"},{name:"LineToolElliottTriangle"},{name:"LineToolElliottDoubleCombo"},{name:"LineToolElliottTripleCombo"}]},{title:n.t(null,void 0,o(77915)),items:[{name:"LineToolCircleLines"},{name:"LineToolTimeCycles"},{name:"LineToolSineLine"}]}],trackLabel:null},{id:"linetool-group-prediction-and-measurement",title:n.t(null,void 0,o(1410)),sections:[{title:n.t(null,void 0,o(75747)),items:[{name:"LineToolRiskRewardLong"},{name:"LineToolRiskRewardShort"},{name:"LineToolPrediction"},{name:"LineToolBarsPattern"},{name:"LineToolGhostFeed"},{name:"LineToolProjection"}].filter(l.isExistent)},{title:n.t(null,void 0,o(69260)),items:[{name:"LineToolAnchoredVWAP"},{name:"LineToolFixedRangeVolumeProfile"},null].filter(l.isExistent)},{title:n.t(null,void 0,o(97050)),items:[{name:"LineToolPriceRange"},{name:"LineToolDateRange"},{name:"LineToolDateAndPriceRange"}]}],trackLabel:null},{id:"linetool-group-geometric-shapes",title:n.t(null,void 0,o(22145)),sections:[{title:n.t(null,void 0,o(65695)),items:[{name:"LineToolBrush"},{name:"LineToolHighlighter"}]},{title:n.t(null,void 0,o(19147)),items:[{name:"LineToolArrowMarker"},{name:"LineToolArrow"},{name:"LineToolArrowMarkUp"},{name:"LineToolArrowMarkDown"},{name:"LineToolArrowMarkLeft"},{name:"LineToolArrowMarkRight"}].filter(l.isExistent)},{title:n.t(null,void 0,o(65781)),items:[{name:"LineToolRectangle"},{name:"LineToolRotatedRectangle"},{name:"LineToolPath"},{name:"LineToolCircle"},{name:"LineToolEllipse"},{name:"LineToolPolyline"},{name:"LineToolTriangle"},{name:"LineToolArc"},{name:"LineToolBezierQuadro"},{name:"LineToolBezierCubic"}]}],trackLabel:null},{id:"linetool-group-annotation",title:n.t(null,void 0,o(32064)),sections:[{title:n.t(null,void 0,o(65831)),items:[{name:"LineToolText"},{name:"LineToolTextAbsolute"},{name:"LineToolTextNote"},{name:"LineToolPriceNote"},{name:"LineToolNote"},{name:"LineToolTable"},{name:"LineToolCallout"},{name:"LineToolComment"},{name:"LineToolPriceLabel"},{name:"LineToolSignpost"},{name:"LineToolFlagMark"}].filter(l.isExistent)},{title:n.t(null,void 0,o(93111)),items:[s?{name:"LineToolImage"}:null,null,null].filter(l.isExistent)}],trackLabel:null}];function r(e){return"sections"in e}const c=a.map((function(e){return r(e)?e.sections.map((e=>e.items)).flat():e.items})).flat()},77151:(e,t,o)=>{"use strict";o.d(t,{RegistryProvider:()=>r,registryContextType:()=>c,validateRegistry:()=>a});var n=o(50959),i=o(19036),l=o.n(i);const s=n.createContext({});function a(e,t){l().checkPropTypes(t,e,"context","RegistryContext")}function r(e){const{validation:t,value:o}=e;return a(o,t),n.createElement(s.Provider,{value:o},e.children)}function c(){return s}},61380:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 10" width="20" height="10"><path fill="none" stroke="currentColor" stroke-width="1.5" d="M2 1l8 8 8-8"/></svg>'},51609:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M4.31 14.5a1.07 1.07 0 0 1 0-1.5L13 4.3c.42-.41 1.1-.41 1.52 0l.99 1c.42.42.41 1.11-.02 1.53l-5.38 5.12h12.83c.6 0 1.07.48 1.07 1.07v1.43c0 .6-.48 1.07-1.07 1.07H10.1l5.38 5.13c.44.41.45 1.1.02 1.53l-1 .99c-.41.42-1.1.42-1.5 0L4.3 14.5Zm7.97 9.38-8.67-8.67c-.81-.8-.82-2.12 0-2.93l8.68-8.67c.8-.81 2.12-.82 2.92 0l1 .99c.82.82.8 2.16-.04 2.96l-3.57 3.4h10.33c1.14 0 2.07.93 2.07 2.07v1.43c0 1.15-.93 2.07-2.07 2.07H12.6l3.57 3.4c.84.8.86 2.14.03 2.97l-.99.99c-.8.8-2.12.8-2.93 0Z"/></svg>'},22976:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M4.87 4.52a.5.5 0 0 1 .61.35L6.91 10h5.47l1.03-4.67c.14-.63 1.04-.63 1.18 0L15.62 10h5.47l1.43-5.13a.5.5 0 0 1 .96.26L22.13 10H25a.5.5 0 0 1 0 1h-3.15l-.83 3H25a.5.5 0 0 1 0 1h-4.26l-2.15 7.75c-.17.6-1.03.58-1.16-.03L15.7 15h-3.42l-1.72 7.72c-.13.6-1 .63-1.16.03L7.26 15H3a.5.5 0 1 1 0-1h3.98l-.83-3H3a.5.5 0 1 1 0-1h2.87L4.52 5.13a.5.5 0 0 1 .35-.61ZM7.19 11l.83 3h3.47l.66-3H7.2Zm5.99 0-.67 3h2.98l-.67-3h-1.64Zm1.42-1L14 7.3l-.6 2.7h1.2Zm1.25 1 .66 3h3.47l.83-3h-4.96Zm3.85 4h-2.97l1.32 5.94L19.7 15Zm-8.43 0H8.3l1.65 5.94L11.27 15Z"/></svg>'},70616:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M7.5 24v-5.5m0 0s2.7-1.1 4.5-1c2.1.12 2.9 1.88 5 2 1.8.1 4.5-1 4.5-1v-6m-14 6v-6m0 0v-6s2.7-1.1 4.5-1c2.1.12 2.9 1.88 5 2 1.8.1 4.5-1 4.5-1v6m-14 0s2.7-1.1 4.5-1c2.1.12 2.9 1.88 5 2 1.8.1 4.5-1 4.5-1"/></svg>'},48748:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M14.08 3.73c.1.16.1.37 0 .54a9.4 9.4 0 0 0 3.35 13.26 9.9 9.9 0 0 0 6.49 1.18.5.5 0 0 1 .5.76 10.67 10.67 0 0 1-3.83 3.64 10.91 10.91 0 0 1-14.28-3.3A10.44 10.44 0 0 1 8.69 5.56a10.86 10.86 0 0 1 4.9-2.06.5.5 0 0 1 .49.22Zm8.3 15.61v.5c-1.91 0-3.8-.5-5.45-1.44a10.64 10.64 0 0 1-3.95-3.97 10.4 10.4 0 0 1-.3-9.72 9.6 9.6 0 0 0-6.37 5.39 9.39 9.39 0 0 0 .83 9.14 9.7 9.7 0 0 0 3.6 3.17 9.92 9.92 0 0 0 12.21-2.59c-.19.02-.38.02-.57.02v-.5Z"/></svg>'},18042:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M6 11.69C6 7.46 9.56 4 14 4c4.44 0 8 3.46 8 7.69 0 2.63-1.2 4.93-3.25 6.31H14.5v-5H18v-1h-8v1h3.5v5H9.14A8.06 8.06 0 0 1 6 11.69Zm2 6.67a9.1 9.1 0 0 1-3-6.67C5 6.87 9.05 3 14 3s9 3.87 9 8.69a8.51 8.51 0 0 1-3 6.62V22h-2v3h-8v-3H8v-3.64ZM11 22v2h6v-2h-6Zm-2-1v-2h10v2H9Z"/></svg>'},44986:e=>{
|
||||
className:s(no.toggleButton,"apply-common-tooltip common-tooltip-vertical",!o&&no.collapsed,no.accessible),onClick:function(){T.isDrawingToolbarVisible.setValue(!T.isDrawingToolbarVisible.value())},"data-name":i,"data-value":o?"visible":"collapsed"},n.createElement(Xt,{direction:o?"left":"right",theme:o?void 0:no}))}));var so=o(37558),ao=o(24437),ro=o(90692);const co={chartWidgetCollection:o(19036).any.isRequired};var uo=o(77151),ho=o(63754);const mo=u.enabled("right_toolbar"),vo=u.enabled("keep_object_tree_widget_in_right_toolbar"),po=(u.enabled("saveload_separate_drawings_storage"),(0,v.onWidget)()),go=new m.Delegate,bo=bt.trackEvent.bind(null,"GUI","Chart Left Toolbar"),fo=(e,t)=>bo(`${e} ${t?"on":"off"}`);class To extends n.PureComponent{constructor(e){super(e),this._grayedTools={},this._handleMeasureClick=()=>{wo("measure")},this._handleZoomInClick=()=>{wo("zoom in")},this._handleDrawingClick=e=>{fo("drawing mode",e),wo("drawing mode",e?"on":"off")},this._handleLockClick=e=>{fo("lock all drawing",e),wo("lock",e?"on":"off")},this._handleSyncClick=e=>{fo("sync",e),wo("sync",e?"on":"off")},this._handleObjectsTreeClick=()=>{this._activeChartWidget().showObjectsTreeDialog(),wo("object tree")},this._handleMouseOver=e=>{(0,Zt.hoverMouseEventFilter)(e)&&this.setState({isHovered:!0})},this._handleMouseOut=e=>{(0,Zt.hoverMouseEventFilter)(e)&&this.setState({isHovered:!1})},this._handleChangeVisibility=e=>{this.setState({isVisible:e})},this._handleEsc=()=>{d.resetToCursor(!0)},this._handleWidgetbarSettled=e=>{this.setState({isWidgetbarVisible:Boolean(window.widgetbar?.visible().value()),widgetbarSettled:e})},this._handleWidgetbarVisible=e=>{this.setState({isWidgetbarVisible:e})},d.init(),this._toolsFilter=new b(this.props.drawingsAccess),this._filteredLineTools=f.lineTools.reduce(((e,t)=>{const{id:o,title:n,trackLabel:i}=t,l=e=>this._toolsFilter.isToolEnabled(g.lineToolsInfo[e.name].localizedName),s=[];return(0,f.isLineToolsGroupWithSections)(t)?t.sections.forEach((e=>{const t=e.items.filter(l);t.length&&s.push({title:e.title},...t)})):s.push(...t.items.filter(l)),s.length&&e.push({id:o,title:n,trackLabel:i,items:s}),e}),[]),this._filteredLineTools.forEach((e=>{e.items.forEach((e=>{"name"in e&&(this._grayedTools[e.name]=this._toolsFilter.isToolGrayed(g.lineToolsInfo[e.name].localizedName))}))})),this.state={isHovered:!1,isVisible:T.isDrawingToolbarVisible.value(),isWidgetbarVisible:Boolean(window.widgetbar?.visible().value()),widgetbarSettled:void 0!==window.widgetbar},this._features={favoriting:!this.props.readOnly&&!po&&u.enabled("items_favoriting"),multicharts:u.enabled("support_multicharts"),tools:!po||!0},this._registry={chartWidgetCollection:this.props.chartWidgetCollection},this._negotiateResizer()}componentDidMount(){T.isDrawingToolbarVisible.subscribe(this._handleChangeVisibility),y.globalCloseDelegate.subscribe(this,this._handleGlobalClose),this._tool=d.tool.spawn(),this._tool.subscribe(this._updateHotkeys.bind(this)),this._initHotkeys(),
|
||||
this.props.widgetbarSettled&&(this.props.widgetbarSettled.subscribe(this,this._handleWidgetbarSettled),v.CheckMobile.any()&&window.widgetbar?.visible().subscribe(this._handleWidgetbarVisible))}componentWillUnmount(){window.widgetbar?.visible().unsubscribe(this._handleWidgetbarVisible),T.isDrawingToolbarVisible.unsubscribe(this._handleChangeVisibility),y.globalCloseDelegate.unsubscribe(this,this._handleGlobalClose),this._tool.destroy(),this._hotkeys.destroy()}componentDidUpdate(e,t){const{isVisible:o,widgetbarSettled:n}=this.state;o!==t.isVisible&&(h.emit("toggle_sidebar",!o),c.setValue("ChartDrawingToolbarWidget.visible",o),this._negotiateResizer()),t.widgetbarSettled!==n&&n&&v.CheckMobile.any()&&window.widgetbar?.visible().subscribe(this._handleWidgetbarVisible)}render(){const{bgColor:e,chartWidgetCollection:t,readOnly:o}=this.props,{isHovered:i,isVisible:l}=this.state,a={backgroundColor:e&&`#${e}`};let c;c=n.createElement(lo,{toolbarVisible:l,"data-name":"toolbar-drawing-toggle-button"});const h=()=>!!this._features.tools&&!(!u.enabled("show_object_tree")||vo&&!mo);return n.createElement(uo.RegistryProvider,{validation:co,value:this._registry},n.createElement(qt.CloseDelegateContext.Provider,{value:go},n.createElement(so.DrawerManager,null,n.createElement(ro.MatchMedia,{rule:ao.DialogBreakpoints.TabletSmall},(e=>n.createElement(Jt.Toolbar,{id:"drawing-toolbar",className:s(ho.drawingToolbar,{[ho.isHidden]:!l}),style:a,onClick:this.props.onClick,onContextMenu:Gt.preventDefaultForContextMenu,orientation:"vertical"},n.createElement(k,{onScroll:this._handleGlobalClose,isVisibleFade:r.mobiletouch,isVisibleButtons:!r.mobiletouch&&i,isVisibleScrollbar:!1,onMouseOver:this._handleMouseOver,onMouseOut:this._handleMouseOut},n.createElement("div",{className:ho.inner},!o&&n.createElement("div",{className:ho.group,style:a},this._filteredLineTools.map((o=>n.createElement(gt,{key:o.id,"data-name":o.id,chartWidgetCollection:t,favoriting:this._features.favoriting&&!("linetool-group-cursors"===o.id&&(0,p.isOnMobileAppPage)("any")),grayedTools:this._grayedTools,dropdownTooltip:o.title,lineTools:o.items,isSmallTablet:e,trackLabel:o.trackLabel}))),this._toolsFilter.isToolEnabled("Font Icons")&&n.createElement(tt,{"data-name":"linetool-group-font-icons",isGrayed:this._grayedTools["Font Icons"],isSmallTablet:e})),!o&&n.createElement("div",{className:ho.group,style:a},n.createElement(lt,{toolName:"measure",onClick:this._handleMeasureClick}),n.createElement(lt,{toolName:"zoom",onClick:this._handleZoomInClick}),n.createElement(st,{chartWidgetCollection:t})),!o&&n.createElement("div",{className:ho.group,style:a},n.createElement(jt,{isSmallTablet:e}),this._features.tools&&n.createElement(it,{property:d.properties().childs().stayInDrawingMode,saveDefaultOnChange:!0,toolName:"drawginmode",onClick:this._handleDrawingClick}),this._features.tools&&n.createElement(it,{property:d.lockDrawings(),toolName:"lockAllDrawings",onClick:this._handleLockClick}),this._features.tools&&n.createElement(Mt,{isSmallTablet:e
|
||||
}),!1),!o&&this._features.tools&&n.createElement("div",{className:ho.group,style:a},n.createElement(_t,{chartWidgetCollection:t,isSmallTablet:e,toolName:"removeAllDrawingTools"})),n.createElement("div",{className:ho.fill,style:a}),!o&&(this._features.tools||!1)&&n.createElement("div",{className:s(ho.group,ho.lastGroup),style:a},!1,this._features.tools&&this._features.favoriting&&n.createElement(Rt,{id:Ut.FavoriteDrawings}),h()&&n.createElement(I,{id:Ut.ObjectTree,action:this._handleObjectsTreeClick,toolName:"showObjectsTree"}))))))),c)))}_activeChartWidget(){return this.props.chartWidgetCollection.activeChartWidget.value()}_negotiateResizer(){const e=Kt.TOOLBAR_WIDTH_COLLAPSED;this.props.resizerBridge.negotiateWidth(this.state.isVisible?Kt.TOOLBAR_WIDTH_EXPANDED:e)}_handleGlobalClose(){go.fire()}_updateHotkeys(){this._hotkeys.promote()}_initHotkeys(){this._hotkeys=S.createGroup({desc:"Drawing Toolbar"}),this._hotkeys.add({desc:"Reset",hotkey:27,handler:()=>this._handleEsc(),isDisabled:()=>d.toolIsCursor(d.tool.value())})}}function wo(e,t){0}class Co{constructor(e,t){this._component=null,this._handleRef=e=>{this._component=e},this._container=e,i.render(n.createElement(To,{...t,ref:this._handleRef}),this._container)}destroy(){i.unmountComponentAtNode(this._container)}getComponent(){return(0,l.ensureNotNull)(this._component)}}},59511:(e,t,o)=>{"use strict";o.d(t,{isLineToolsGroupWithSections:()=>r,lineTools:()=>a,lineToolsFlat:()=>c});var n=o(11542),i=(o(49483),o(56570)),l=o(37265);const s=i.enabled("image_drawingtool"),a=[{id:"linetool-group-cursors",title:n.t(null,void 0,o(81578)),sections:[{items:[{name:"cursor"},{name:"dot"},{name:"arrow"},{name:"demonstration"},null].filter(l.isExistent)},{items:[{name:"eraser"}]}],trackLabel:null},{id:"linetool-group-trend-line",title:n.t(null,void 0,o(48773)),sections:[{title:n.t(null,void 0,o(56982)),items:[{name:"LineToolTrendLine"},{name:"LineToolRay"},{name:"LineToolInfoLine"},{name:"LineToolExtended"},{name:"LineToolTrendAngle"},{name:"LineToolHorzLine"},{name:"LineToolHorzRay"},{name:"LineToolVertLine"},{name:"LineToolCrossLine"}]},{title:n.t(null,void 0,o(59934)),items:[{name:"LineToolParallelChannel"},{name:"LineToolRegressionTrend"},{name:"LineToolFlatBottom"},{name:"LineToolDisjointAngle"}]},{title:n.t(null,void 0,o(36167)),items:[{name:"LineToolPitchfork"},{name:"LineToolSchiffPitchfork2"},{name:"LineToolSchiffPitchfork"},{name:"LineToolInsidePitchfork"}]}],trackLabel:null},{id:"linetool-group-gann-and-fibonacci",title:n.t(null,void 0,o(2654)),sections:[{title:n.t(null,void 0,o(26578)),items:[{name:"LineToolFibRetracement"},{name:"LineToolTrendBasedFibExtension"},{name:"LineToolFibChannel"},{name:"LineToolFibTimeZone"},{name:"LineToolFibSpeedResistanceFan"},{name:"LineToolTrendBasedFibTime"},{name:"LineToolFibCircles"},{name:"LineToolFibSpiral"},{name:"LineToolFibSpeedResistanceArcs"},{name:"LineToolFibWedge"},{name:"LineToolPitchfan"}]},{title:n.t(null,void 0,o(51494)),items:[{name:"LineToolGannSquare"},{name:"LineToolGannFixed"},{name:"LineToolGannComplex"},{
|
||||
name:"LineToolGannFan"}]}],trackLabel:null},{id:"linetool-group-patterns",title:n.t(null,void 0,o(46417)),sections:[{title:n.t(null,void 0,o(46417)),items:[{name:"LineTool5PointsPattern"},{name:"LineToolCypherPattern"},{name:"LineToolHeadAndShoulders"},{name:"LineToolABCD"},{name:"LineToolTrianglePattern"},{name:"LineToolThreeDrivers"}]},{title:n.t(null,void 0,o(44255)),items:[{name:"LineToolElliottImpulse"},{name:"LineToolElliottCorrection"},{name:"LineToolElliottTriangle"},{name:"LineToolElliottDoubleCombo"},{name:"LineToolElliottTripleCombo"}]},{title:n.t(null,void 0,o(77915)),items:[{name:"LineToolCircleLines"},{name:"LineToolTimeCycles"},{name:"LineToolSineLine"}]}],trackLabel:null},{id:"linetool-group-prediction-and-measurement",title:n.t(null,void 0,o(1410)),sections:[{title:n.t(null,void 0,o(75747)),items:[{name:"LineToolRiskRewardLong"},{name:"LineToolRiskRewardShort"},{name:"LineToolPrediction"},{name:"LineToolBarsPattern"},{name:"LineToolGhostFeed"},{name:"LineToolProjection"}].filter(l.isExistent)},{title:n.t(null,void 0,o(69260)),items:[{name:"LineToolAnchoredVWAP"},{name:"LineToolFixedRangeVolumeProfile"},null].filter(l.isExistent)},{title:n.t(null,void 0,o(97050)),items:[{name:"LineToolPriceRange"},{name:"LineToolDateRange"},{name:"LineToolDateAndPriceRange"}]}],trackLabel:null},{id:"linetool-group-geometric-shapes",title:n.t(null,void 0,o(22145)),sections:[{title:n.t(null,void 0,o(65695)),items:[{name:"LineToolBrush"},{name:"LineToolHighlighter"}]},{title:n.t(null,void 0,o(19147)),items:[{name:"LineToolArrowMarker"},{name:"LineToolArrow"},{name:"LineToolArrowMarkUp"},{name:"LineToolArrowMarkDown"},{name:"LineToolArrowMarkLeft"},{name:"LineToolArrowMarkRight"}].filter(l.isExistent)},{title:n.t(null,void 0,o(65781)),items:[{name:"LineToolRectangle"},{name:"LineToolRotatedRectangle"},{name:"LineToolPath"},{name:"LineToolCircle"},{name:"LineToolEllipse"},{name:"LineToolPolyline"},{name:"LineToolTriangle"},{name:"LineToolArc"},{name:"LineToolBezierQuadro"},{name:"LineToolBezierCubic"}]}],trackLabel:null},{id:"linetool-group-annotation",title:n.t(null,void 0,o(32064)),sections:[{title:n.t(null,void 0,o(65831)),items:[{name:"LineToolText"},{name:"LineToolTextAbsolute"},{name:"LineToolTextNote"},{name:"LineToolPriceNote"},{name:"LineToolNote"},{name:"LineToolTable"},{name:"LineToolCallout"},{name:"LineToolComment"},{name:"LineToolPriceLabel"},{name:"LineToolSignpost"},{name:"LineToolFlagMark"}].filter(l.isExistent)},{title:n.t(null,void 0,o(93111)),items:[s?{name:"LineToolImage"}:null,null,null].filter(l.isExistent)}],trackLabel:null}];function r(e){return"sections"in e}const c=a.map((function(e){return r(e)?e.sections.map((e=>e.items)).flat():e.items})).flat()},77151:(e,t,o)=>{"use strict";o.d(t,{RegistryProvider:()=>r,registryContextType:()=>c,validateRegistry:()=>a});var n=o(50959),i=o(19036),l=o.n(i);const s=n.createContext({});function a(e,t){l().checkPropTypes(t,e,"context","RegistryContext")}function r(e){const{validation:t,value:o}=e;return a(o,t),n.createElement(s.Provider,{value:o},e.children)}
|
||||
function c(){return s}},61380:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 10" width="20" height="10"><path fill="none" stroke="currentColor" stroke-width="1.5" d="M2 1l8 8 8-8"/></svg>'},51609:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M4.31 14.5a1.07 1.07 0 0 1 0-1.5L13 4.3c.42-.41 1.1-.41 1.52 0l.99 1c.42.42.41 1.11-.02 1.53l-5.38 5.12h12.83c.6 0 1.07.48 1.07 1.07v1.43c0 .6-.48 1.07-1.07 1.07H10.1l5.38 5.13c.44.41.45 1.1.02 1.53l-1 .99c-.41.42-1.1.42-1.5 0L4.3 14.5Zm7.97 9.38-8.67-8.67c-.81-.8-.82-2.12 0-2.93l8.68-8.67c.8-.81 2.12-.82 2.92 0l1 .99c.82.82.8 2.16-.04 2.96l-3.57 3.4h10.33c1.14 0 2.07.93 2.07 2.07v1.43c0 1.15-.93 2.07-2.07 2.07H12.6l3.57 3.4c.84.8.86 2.14.03 2.97l-.99.99c-.8.8-2.12.8-2.93 0Z"/></svg>'},22976:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M4.87 4.52a.5.5 0 0 1 .61.35L6.91 10h5.47l1.03-4.67c.14-.63 1.04-.63 1.18 0L15.62 10h5.47l1.43-5.13a.5.5 0 0 1 .96.26L22.13 10H25a.5.5 0 0 1 0 1h-3.15l-.83 3H25a.5.5 0 0 1 0 1h-4.26l-2.15 7.75c-.17.6-1.03.58-1.16-.03L15.7 15h-3.42l-1.72 7.72c-.13.6-1 .63-1.16.03L7.26 15H3a.5.5 0 1 1 0-1h3.98l-.83-3H3a.5.5 0 1 1 0-1h2.87L4.52 5.13a.5.5 0 0 1 .35-.61ZM7.19 11l.83 3h3.47l.66-3H7.2Zm5.99 0-.67 3h2.98l-.67-3h-1.64Zm1.42-1L14 7.3l-.6 2.7h1.2Zm1.25 1 .66 3h3.47l.83-3h-4.96Zm3.85 4h-2.97l1.32 5.94L19.7 15Zm-8.43 0H8.3l1.65 5.94L11.27 15Z"/></svg>'},70616:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M7.5 24v-5.5m0 0s2.7-1.1 4.5-1c2.1.12 2.9 1.88 5 2 1.8.1 4.5-1 4.5-1v-6m-14 6v-6m0 0v-6s2.7-1.1 4.5-1c2.1.12 2.9 1.88 5 2 1.8.1 4.5-1 4.5-1v6m-14 0s2.7-1.1 4.5-1c2.1.12 2.9 1.88 5 2 1.8.1 4.5-1 4.5-1"/></svg>'},48748:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M14.08 3.73c.1.16.1.37 0 .54a9.4 9.4 0 0 0 3.35 13.26 9.9 9.9 0 0 0 6.49 1.18.5.5 0 0 1 .5.76 10.67 10.67 0 0 1-3.83 3.64 10.91 10.91 0 0 1-14.28-3.3A10.44 10.44 0 0 1 8.69 5.56a10.86 10.86 0 0 1 4.9-2.06.5.5 0 0 1 .49.22Zm8.3 15.61v.5c-1.91 0-3.8-.5-5.45-1.44a10.64 10.64 0 0 1-3.95-3.97 10.4 10.4 0 0 1-.3-9.72 9.6 9.6 0 0 0-6.37 5.39 9.39 9.39 0 0 0 .83 9.14 9.7 9.7 0 0 0 3.6 3.17 9.92 9.92 0 0 0 12.21-2.59c-.19.02-.38.02-.57.02v-.5Z"/></svg>'},18042:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M6 11.69C6 7.46 9.56 4 14 4c4.44 0 8 3.46 8 7.69 0 2.63-1.2 4.93-3.25 6.31H14.5v-5H18v-1h-8v1h3.5v5H9.14A8.06 8.06 0 0 1 6 11.69Zm2 6.67a9.1 9.1 0 0 1-3-6.67C5 6.87 9.05 3 14 3s9 3.87 9 8.69a8.51 8.51 0 0 1-3 6.62V22h-2v3h-8v-3H8v-3.64ZM11 22v2h6v-2h-6Zm-2-1v-2h10v2H9Z"/></svg>'},44986:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M6 14.5C6 9.78 9.78 6 14.5 6c4.72 0 8.5 3.78 8.5 8.5 0 4.72-3.78 8.5-8.5 8.5A8.46 8.46 0 0 1 6 14.5ZM14.5 5A9.46 9.46 0 0 0 5 14.5c0 5.28 4.22 9.5 9.5 9.5s9.5-4.22 9.5-9.5S19.78 5 14.5 5ZM14 16V9h1v6h4v1h-5Z"/></svg>'},83778:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M6 14.5C6 9.78 9.78 6 14.5 6c4.72 0 8.5 3.78 8.5 8.5 0 4.72-3.78 8.5-8.5 8.5A8.46 8.46 0 0 1 6 14.5ZM14.5 5A9.46 9.46 0 0 0 5 14.5c0 5.28 4.22 9.5 9.5 9.5s9.5-4.22 9.5-9.5S19.78 5 14.5 5ZM12 12a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm4 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-6 4-.43.26v.01l.03.03a3.55 3.55 0 0 0 .3.4 5.7 5.7 0 0 0 9.22 0 5.42 5.42 0 0 0 .28-.4l.02-.03v-.01L19 17l-.43-.26v.02a2.45 2.45 0 0 1-.24.32c-.17.21-.43.5-.78.79a4.71 4.71 0 0 1-6.88-.8 4.32 4.32 0 0 1-.23-.31l-.01-.02L10 17Z"/></svg>'},90624:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 112 112" width="28" height="28"><path fill="#fff" d="M63.42 93.22a37.13 37.13 0 1 0 .01-74.27 37.13 37.13 0 0 0-.01 74.27Z"/><path fill="#fff" d="M45.48 48.85c-.71.04-1.96 0-3.17.2-2.36.41-4.72.85-7.03 1.51a30.65 30.65 0 0 0-4.87 2.02c-1.9.9-3.74 1.93-5.59 2.94-.66.36-.71.86-.16 1.39.53.53 1.1 1.01 1.7 1.44 2.43 1.63 4.91 3.15 7.3 4.85 2.77 1.95 5.86 3.03 8.95 4.03 3.5 1.14 7.15.85 10.72.38 4.05-.54 8.1-1.3 11.9-2.96 2.17-.95 4.21-2.22 6.27-3.44.88-.5.86-.86.08-1.5-1.59-1.28-3.16-2.6-4.82-3.78-3.73-2.66-7.65-4.85-12.05-6a29.47 29.47 0 0 0-9.23-1.08Zm6.56-21.95v8.8c0 1.1-.02 2.18-.03 3.27 0 .86.33 1.39 1.14 1.47.38.04.77.06 1.16.11 2.8.35 3.14.13 3.99-2.86.77-2.7 1.47-5.44 2.22-8.15.31-1.12.5-1.18 1.5-.79 1.98.78 3.95 1.58 5.94 2.32.77.29 1.03.6.7 1.56-.98 2.94-1.86 5.92-2.77 8.89-.09.28-.15.57-.21.86-.42 2.02-.37 2.12 1.37 2.8.25.1.5.21.74.34.51.3.91.26 1.38-.19 2.34-2.22 4.75-4.34 7.05-6.6.74-.73 1.57-.62 2.16-.04A83.06 83.06 0 0 1 82 42.52c.64.73.6 1.52-.04 2.3a273.4 273.4 0 0 1-4.69 5.62c-.46.53-.44.98-.02 1.44 1.46 1.55 2.93 3.1 4.4 4.63 1.1 1.13 2.21 2.24 3.3 3.37 1.05 1.07 1.12 1.67.06 2.77-1.44 1.5-2.86 3.08-4.51 4.23a87.09 87.09 0 0 1-10 6.28 32.38 32.38 0 0 1-12.28 3.5c-4.54.36-9.07.43-13.57-.15a59.04 59.04 0 0 1-9.69-2.07 38.4 38.4 0 0 1-8.35-3.83 51.59 51.59 0 0 1-5.8-4.13 73.78 73.78 0 0 1-6.18-5.38c-1.29-1.3-2.33-2.9-3.38-4.46-.58-.84-.06-1.55.59-2.1 1.14-.96 2.32-1.9 3.42-2.9.72-.65.95-.96 1.62-1.67.5-.53.43-1.02-.07-1.51-1.3-1.3-1.52-1.76-2.83-3.07-.6-.59-.74-1.1-.07-1.79 1.66-1.72 4.35-4.22 5.97-5.98.8-.86.9-.82 1.7.12 1.6 1.9 2.12 2.97 3.78 4.83.87.98 1.19 1.55 2.5 1.04 2.37-.95 1.76-.7 1.05-3.35-.64-2.37-1-2.96-1.72-5.3-.08-.26-.17-.5-.23-.75-.33-1.2-.3-1.33.8-1.7 2.06-.68 5.56-1.72 7.62-2.4.8-.27 1.16.18 1.39.93.73 2.55 1.01 3.38 1.77 5.92.2.72.48 1.41.84 2.05.7 1.18 1.13 1.4 2.27 1.36 1.96-.07 2.24-.3 2.24-2.45 0-3.1-.06-6.21-.14-9.32-.04-1.53-.07-1.62 1.34-1.66 2.3-.06 4.61-.02 6.96-.02"/><path fill="#2962FF" d="M63.42 90.92a34.26 34.26 0 1 0 .01-68.52 34.26 34.26 0 0 0-.01 68.52Z"/><path fill="#FF5200" d="M45.69 49.83c-.67.03-1.83 0-2.95.17-2.2.35-4.4.72-6.54 1.28-1.56.4-3.06 1.05-4.53 1.7-1.76.77-3.47 1.64-5.2 2.49-.6.3-.66.73-.15 1.17.5.45 1.03.86 1.59 1.22 2.26 1.37 4.56 2.66 6.79 4.1 2.57 1.64 5.45 2.55 8.31 3.4 3.26.96 6.65.72 9.98.32 3.76-.46 7.52-1.1 11.06-2.5 2.01-.8 3.92-1.88 5.82-2.9.82-.44.8-.74.08-1.27-1.48-1.09-2.94-2.2-4.48-3.2-3.47-2.25-7.11-4.1-11.2-5.06a30.03 30.03 0 0 0-8.59-.91v-.01Zm6.09-18.54v7.44l-.02 2.76c0 .72.3 1.17 1.05 1.24.36.03.73.05 1.08.1 2.6.29 2.92.1 3.71-2.43.72-2.28 1.37-4.59 2.07-6.88.29-.94.45-1 1.4-.66 1.84.66 3.66 1.33 5.52 1.95.7.25.95.52.64 1.32-.9 2.48-1.72 5-2.57 7.5-.08.25-.14.5-.2.74-.38 1.7-.34 1.79 1.28 2.37.23.08.47.17.7.28.47.26.84.22 1.27-.16 2.18-1.87 4.42-3.67 6.56-5.58.69-.61 1.46-.52 2-.03a73.41 73.41 0 0 1 3.37 3.24c.6.6.56 1.28-.03 1.94-1.44 1.6-2.89 3.18-4.37 4.74-.43.46-.4.83-.01 1.22a340.4 340.4 0 0 0 4.1 3.91c1 .96 2.04 1.9 3.06 2.85.97.9 1.03 1.41.05 2.34-1.34 1.26-2.66 2.6-4.2 3.57a82.59 82.59 0 0 1-9.29 5.3 32.44 32.44 0 0 1-11.42 2.97c-4.22.3-8.43.36-12.62-.13a59.71 59.71 0 0 1-9-1.75c-2.76-.77-5.3-1.91-7.77-3.24a48.2 48.2 0 0 1-5.39-3.49c-2-1.4-3.92-2.92-5.75-4.54-1.2-1.09-2.17-2.45-3.15-3.76-.53-.72-.05-1.31.55-1.78 1.06-.82 2.16-1.6 3.18-2.45.67-.55 1.27-1.17 1.9-1.77.46-.45.4-.86-.07-1.28l-3.64-3.32c-.55-.5-.68-.93-.05-1.51 1.53-1.46 3.01-2.98 4.52-4.46.74-.72.84-.7 1.58.1 1.5 1.61 2.98 3.24 4.51 4.8.82.84 1.75 1.09 2.96.65 2.21-.8 2.3-.73 1.63-2.97-.6-2-1.32-3.96-2-5.93-.07-.22-.16-.42-.21-.63-.3-1.02-.28-1.12.74-1.43 1.92-.59 3.85-1.11 5.77-1.69.75-.23 1.08.15 1.3.78.67 2.16 1.33 4.32 2.04 6.46.18.61.44 1.2.78 1.74.66 1 1.72.98 2.78.94 1.83-.06 2.09-.25 2.09-2.07 0-2.62-.06-5.25-.13-7.87-.04-1.3-.07-1.37 1.24-1.4 2.14-.06 4.29-.02 6.47-.02"/><path fill="#FDD600" d="m53.5 54.08.15-.32c-.5-.49-.91-1.15-1.5-1.44a9.83 9.83 0 0 0-6.84-.8c-1.95.5-3.23 1.92-4.14 3.57-.98 1.8-1.33 3.8-.09 5.64.54.8 1.38 1.44 2.16 2.04a6.98 6.98 0 0 0 10.61-2.68c.4-.87.27-1.18-.66-1.48-.98-.31-1.98-.59-2.96-.9-.65-.22-1.31-.44-1.31-1.3 0-.82.53-1.15 1.24-1.35 1.12-.3 2.23-.65 3.34-.97Zm-7.81-4.25c3.23-.15 5.9.29 8.58.92 4.08.96 7.73 2.8 11.21 5.06 1.54.99 3 2.1 4.48 3.2.72.53.74.82-.08 1.26-1.91 1.03-3.82 2.1-5.82 2.9-3.54 1.4-7.3 2.04-11.07 2.5-3.32.4-6.72.65-9.97-.31-2.87-.85-5.74-1.76-8.32-3.41-2.22-1.43-4.52-2.72-6.78-4.1a12 12 0 0 1-1.6-1.21c-.5-.45-.45-.86.17-1.18 1.72-.86 3.43-1.72 5.19-2.48 1.48-.65 2.97-1.3 4.52-1.7 2.16-.56 4.35-.93 6.55-1.28 1.12-.18 2.28-.14 2.94-.18"/><path fill="#1D1D1B" d="M53.5 54.08c-1.11.33-2.22.67-3.34.98-.71.19-1.24.52-1.24 1.34 0 .86.67 1.1 1.3 1.3.99.32 1.99.6 2.97.9.93.3 1.05.61.66 1.49a6.98 6.98 0 0 1-10.62 2.68 9.18 9.18 0 0 1-2.16-2.04c-1.24-1.85-.9-3.85.1-5.65.9-1.65 2.18-3.07 4.13-3.57a9.84 9.84 0 0 1 6.84.8c.6.3 1.01.95 1.5 1.44l-.15.33"/></svg>'
|
||||
},14665:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 16" width="10" height="16"><path d="M.6 1.4l1.4-1.4 8 8-8 8-1.4-1.4 6.389-6.532-6.389-6.668z"/></svg>'},39146:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path fill="currentColor" d="M9 1l2.35 4.76 5.26.77-3.8 3.7.9 5.24L9 13l-4.7 2.47.9-5.23-3.8-3.71 5.25-.77L9 1z"/></svg>'},48010:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18" fill="none"><path stroke="currentColor" d="M9 2.13l1.903 3.855.116.236.26.038 4.255.618-3.079 3.001-.188.184.044.259.727 4.237-3.805-2L9 12.434l-.233.122-3.805 2.001.727-4.237.044-.26-.188-.183-3.079-3.001 4.255-.618.26-.038.116-.236L9 2.13z"/></svg>'}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},78930:e=>{e.exports={en:["Coordinates"],el:["Συντεταγμένες"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],el:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],el:["Περιθώρια"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],el:["Base Level"]}},71776:e=>{e.exports={en:["Down"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"]}},16564:e=>{e.exports={en:["Default"],el:["Προεπιλογή"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],el:["Extend Lines"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],el:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],el:["Fill Bottom Area"]}},886:e=>{e.exports={en:["HLC bars"]}},56796:e=>{e.exports={en:["Hours"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"]}},64075:e=>{e.exports={en:["Override min tick"],el:["Override Min Tick"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"]}},43154:e=>{e.exports={en:["Months"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],el:["Ακρίβεια"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},835:e=>{e.exports={en:["Weeks"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],el:["Top Line"]}},70320:e=>{e.exports={en:["Text"],el:["Κείμενο"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],el:["Thin Bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"]}},22691:e=>{e.exports={en:["Up"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},
|
||||
49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},
|
||||
46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{
|
||||
e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"],el:["Hours"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"],el:["Hollow Candles"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"],el:["Months"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"],el:["Minutes"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],el:["Renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
4
charting_library/bundles/el.1341.1068954aa326300ef390.js
Normal file
4
charting_library/bundles/el.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},78930:e=>{e.exports={en:["Coordinates"],el:["Συντεταγμένες"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],el:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],el:["Περιθώρια"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],el:["Base Level"]}},71776:e=>{e.exports={en:["Down"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"]}},16564:e=>{e.exports={en:["Default"],el:["Προεπιλογή"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],el:["Extend Lines"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],el:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],el:["Fill Bottom Area"]}},56796:e=>{e.exports={en:["Hours"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"]}},64075:e=>{e.exports={en:["Override min tick"],el:["Override Min Tick"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"]}},43154:e=>{e.exports={en:["Months"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],el:["Ακρίβεια"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},835:e=>{e.exports={en:["Weeks"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],el:["Top Line"]}},70320:e=>{e.exports={en:["Text"],el:["Κείμενο"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],el:["Thin Bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"]}},22691:e=>{e.exports={en:["Up"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{
|
||||
e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={
|
||||
en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={
|
||||
en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"],el:["Hours"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"],el:["Hollow Candles"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"],el:["Months"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"],el:["Minutes"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],el:["Renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,3 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"],el:["Σύγκριση"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"],el:["Άκυρο"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],el:["Annotation Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],el:["Προσθήκη στα αγαπημένα"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],el:["Gann and Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],el:["Geometric Shapes"]}},57157:e=>{e.exports={en:["Dot"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"]}},74385:e=>{e.exports={en:["Drawings"],el:["Σχέδια"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],el:["Prediction and Measurement Tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],el:["Λειτουργία πλήρους οθόνης"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"],
|
||||
el:["Κλείδωμα Εργαλείων Σχεδίασης"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],el:["Αναζήτησή"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],el:["Παραμονή στη Λειτουργία Σχεδίασης"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"],el:["Σύμβολο"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],el:["Διαγραφή απο τα αγαπημένα"]}},99984:e=>{e.exports={en:["Remove indicators"],el:["Remove Indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],el:["Trend Line Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],el:["Μεγέθυνση"]}},37310:e=>{e.exports={en:["Zoom Out"],el:["Σμίκρυνση"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={
|
||||
en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
3
charting_library/bundles/el.4211.932ffa2dc04657916b72.js
Normal file
3
charting_library/bundles/el.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,3 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"],el:["Σύγκριση"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"],el:["Άκυρο"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],el:["Annotation Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],el:["Προσθήκη στα αγαπημένα"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],el:["Gann and Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],el:["Geometric Shapes"]}},57157:e=>{e.exports={en:["Dot"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"]}},74385:e=>{e.exports={en:["Drawings"],el:["Σχέδια"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],el:["Prediction and Measurement Tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],el:["Λειτουργία πλήρους οθόνης"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},
|
||||
79451:e=>{e.exports={en:["Lock all drawings"],el:["Κλείδωμα Εργαλείων Σχεδίασης"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],el:["Αναζήτησή"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],el:["Παραμονή στη Λειτουργία Σχεδίασης"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"],el:["Σύμβολο"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],el:["Διαγραφή απο τα αγαπημένα"]}},99984:e=>{e.exports={en:["Remove indicators"],el:["Remove Indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],el:["Trend Line Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],el:["Μεγέθυνση"]}},37310:e=>{e.exports={en:["Zoom Out"],el:["Σμίκρυνση"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{
|
||||
e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"],el:["ω"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"],el:["ω"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},
|
||||
e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"]},e.exports["All items_combobox_input"]={en:["All items"]},e.exports.All_input={en:["All"]},e.exports["Anchor Period_input"]={en:["Anchor Period"]},e.exports["Another symbol_input"]={en:["Another symbol"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"]},e.exports.Back_input={en:["Back"]},e.exports["Bands style_input"]={en:["Bands style"]},e.exports.Bar_input={en:["Bar"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"]},e.exports["Base Line_input"]={en:["Base Line"]},e.exports.Basis_input={en:["Basis"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"]},e.exports.Borders_input={en:["Borders"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"]},e.exports["Box size_input"]={en:["Box size"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"]},e.exports.Candles_input={en:["Candles"]},e.exports.Centered_input={en:["Centered"]},e.exports.Century_input={en:["Century"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"]},e.exports["Color 0_input"]={en:["Color 0"]},e.exports["Color 1_input"]={en:["Color 1"]},e.exports["Color 2_input"]={en:["Color 2"]},e.exports["Color 3_input"]={en:["Color 3"]},e.exports["Color 4_input"]={en:["Color 4"]},e.exports["Color 5_input"]={en:["Color 5"]},e.exports["Color 6_input"]={en:["Color 6"]},e.exports["Color 7_input"]={en:["Color 7"]},e.exports["Color 8_input"]={en:["Color 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"]},e.exports["Conversion Line_input"]={en:["Conversion Line"]},e.exports.Correlation_input={en:["Correlation"]},e.exports.Count_input={en:["Count"]},e.exports.Crosses_input={en:["Crosses"]},e.exports.Custom_input={en:["Custom"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"]},e.exports["Days Per Year_input"]={en:["Days Per Year"]},e.exports.Decade_input={en:["Decade"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"]},e.exports.Deviation_input={en:["Deviation"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"]},e.exports["Down bars_input"]={en:["Down bars"]},
|
||||
e.exports["Down color_input"]={en:["Down color"]},e.exports["Down fractals_input"]={en:["Down fractals"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"]},e.exports["Equality Line_input"]={en:["Equality Line"]},e.exports.Exponential_input={en:["Exponential"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"]},e.exports["Extend Right_input"]={en:["Extend Right"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"]},e.exports.Falling_input={en:["Falling"]},e.exports["Fast Length_input"]={en:["Fast Length"]},e.exports["Fast length_input"]={en:["Fast length"]},e.exports.Fill_input={en:["Fill"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"]},e.exports["HLC bars_input"]={en:["HLC bars"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"]},e.exports.Histogram_input={en:["Histogram"]},e.exports["Hull MA_input"]={en:["Hull MA"]},e.exports.Increment_input={en:["Increment"]},e.exports.Indicator_input={en:["Indicator"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"]},e.exports["Jaw Length_input"]={en:["Jaw Length"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],el:["Lead 1"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],el:["Lagging Span 2 Periods"]},e.exports["Length EMA_input"]={en:["Length EMA"]},e.exports["Length MA_input"]={en:["Length MA"]},e.exports.Length1_input={en:["Length1"]},e.exports.Length2_input={en:["Length2"]},e.exports.Length3_input={en:["Length3"]},e.exports.Length_input={en:["Length"]},e.exports.Level_input={en:["Level"]},e.exports["Levels Format_input"]={en:["Levels Format"]},e.exports.Limit_input={en:["Limit"]},e.exports.Line_input={en:["Line"]},e.exports["Lips Length_input"]={en:["Lips Length"]},
|
||||
e.exports["Lips Offset_input"]={en:["Lips Offset"]},e.exports.Lips_input={en:["Lips"]},e.exports["Long Length_input"]={en:["Long Length"]},e.exports["Long RoC Length_input"]={en:["Long RoC Length"]},e.exports["Long length_input"]={en:["Long length"]},e.exports["Long period_input"]={en:["Long period"]},e.exports.Long_input={en:["Long"]},e.exports["Lower Band_input"]={en:["Lower Band"]},e.exports["Lower Deviation_input"]={en:["Lower Deviation"]},e.exports["Lower Percentage_input"]={en:["Lower Percentage"]},e.exports.LowerLimit_input={en:["LowerLimit"]},e.exports.Lower_input={en:["Lower"]},e.exports["MA Length_input"]={en:["MA Length"]},e.exports.MACD_input={en:["MACD"]},e.exports.MA_input={en:["MA"]},e.exports.MF_input={en:["MF"]},e.exports.MM_month_input={en:["MM"]},e.exports.MOM_input={en:["MOM"]},e.exports["Main chart symbol_input"]={en:["Main chart symbol"]},e.exports["Market Closed Percentage_input"]={en:["Market Closed Percentage"]},e.exports["Market only_input"]={en:["Market only"]},e.exports["Max value_input"]={en:["Max value"]},e.exports.Median_input={en:["Median"]},e.exports.Method_input={en:["Method"]},e.exports.Middle_input={en:["Middle"]},e.exports.Minimize_input={en:["Minimize"]},e.exports.Month_input={en:["Month"]},e.exports.Move_input={en:["Move"]},e.exports["Multi timeframe_input"]={en:["Multi timeframe"]},e.exports.Multiplier_input={en:["Multiplier"]},e.exports.NV_input={en:["NV"]},e.exports["Nothing selected_combobox_input"]={en:["Nothing selected"]},e.exports["Number Of Rows_input"]={en:["Number Of Rows"]},e.exports["Number of line_input"]={en:["Number of line"]},e.exports.OSC_input={en:["OSC"]},e.exports.Offset_input={en:["Offset"]},e.exports.OnBalanceVolume_input={en:["OnBalanceVolume"]},e.exports["One step back building_input"]={en:["One step back building"]},e.exports.Oscillator_input={en:["Oscillator"]},e.exports.Overbought_input={en:["Overbought"]},e.exports.Oversold_input={en:["Oversold"]},e.exports.POC_input={en:["POC"]},e.exports.PVT_input={en:["PVT"]},e.exports.P_input={en:["P"]},e.exports.ParabolicSAR_input={en:["ParabolicSAR"]},e.exports.Percent_input={en:["Percent"]},e.exports["Percentage LTP({percentageLTPValue}%)_input"]={en:["Percentage LTP({percentageLTPValue}%)"]},e.exports["Percentage LTP_input"]={en:["Percentage LTP"]},e.exports.Percentage_input={en:["Percentage"]},e.exports.Period_input={en:["Period"]},e.exports.Periods_input={en:["Periods"]},e.exports["Phantom bars_input"]={en:["Phantom bars"]},e.exports.Placement_input={en:["Placement"]},e.exports.Plot_input={en:["Plot"]},e.exports["Plots Background_input"]={en:["Plots Background"]},e.exports["Post-market only_input"]={en:["Post-market only"]},e.exports["Pre-market only_input"]={en:["Pre-market only"]},e.exports["Price source_input"]={en:["Price source"]},e.exports.Price_input={en:["Price"]},e.exports["Projection down bars_input"]={en:["Projection down bars"]},e.exports["Projection down color_input"]={en:["Projection down color"]},e.exports["Projection up bars_input"]={en:["Projection up bars"]},
|
||||
@@ -20,23 +20,23 @@ e.exports["Total common shares outstanding_study"]={en:["Total common shares out
|
||||
en:["Volty Expan Close Strategy"]},e.exports["Volume Oscillator_study"]={en:["Volume Oscillator"],el:["Ταλαντωτής όγκου"]},e.exports["Volume Weighted Average Price_study"]={en:["Volume Weighted Average Price"]},e.exports["Volume Weighted Moving Average_study"]={en:["Volume Weighted Moving Average"]},e.exports.Volume_study={en:["Volume"],el:["Όγκος"]},e.exports["Vortex Indicator_study"]={en:["Vortex Indicator"]},e.exports["Williams %R_study"]={en:["Williams %R"]},e.exports["Williams Alligator_study"]={en:["Williams Alligator"]},e.exports["Williams Fractal_study"]={en:["Williams Fractal"]},e.exports["Williams Fractals_study"]={en:["Williams Fractals"]},e.exports["Williams Percent Range_study"]={en:["Williams Percent Range"]},e.exports["Woodies CCI_study"]={en:["Woodies CCI"]},e.exports["Zig Zag_study"]={en:["Zig Zag"]},e.exports["Zmijewski score_study"]={en:["Zmijewski score"]}},89633:e=>{e.exports={en:["Anchored Volume Profile"]}},25705:e=>{e.exports={en:["Fixed Range Volume Profile"]}},24261:e=>{e.exports={en:["Vol"]}},67736:e=>{e.exports={en:["Minor"]}},922:e=>{e.exports={en:["Minute"]}},91405:e=>{e.exports={en:["Text"]}},78972:e=>{e.exports={en:["Couldn't copy"]}},10615:e=>{e.exports={en:["Couldn't cut"]}},81518:e=>{e.exports={en:["Couldn't paste"]}},83140:e=>{e.exports={en:["Countdown to bar close"],el:["Countdown To Bar Close"]}},10871:e=>{e.exports={en:["Colombo"]}},55761:e=>{e.exports={en:["Columns"],el:["Στήλες"]}},9818:e=>{e.exports={en:["Comment"],el:["Σχόλιο"]}},53942:e=>{e.exports={en:["Compare or Add Symbol"],el:["Σύγκριση ή Προσθήκη Συμβόλου"]}},12086:e=>{e.exports={en:["Compilation error"]}},71692:e=>{e.exports={en:["Confirm to remove locked drawings"]}},48141:e=>{e.exports={en:["Confirm Inputs"]}},81605:e=>{e.exports={en:["Confirm Remove Study Tree"]}},38917:e=>{e.exports={en:["Copenhagen"]}},49680:e=>{e.exports={en:["Copy"],el:["Αντιγραφή"]}},66134:e=>{e.exports={en:["Copy Chart Layout"]}},63553:e=>{e.exports={en:["Copy price"]}},65736:e=>{e.exports={en:["Cairo"]}},25381:e=>{e.exports={en:["Callout"]}},45054:e=>{e.exports={en:["Candles"]}},30948:e=>{e.exports={en:["Caracas"]}},70409:e=>{e.exports={en:["Casablanca"]}},37276:e=>{e.exports={en:["Change"]}},85124:e=>{e.exports={en:["Change Symbol"],el:["Αλλαγή Συμβόλου"]}},2569:e=>{e.exports={en:["Change interval"],el:["Αλλαγή διαστήματος"]}},9687:e=>{e.exports={en:["Change interval. Press number or comma"]}},36332:e=>{e.exports={en:["Change symbol. Start typing symbol name"]}},48566:e=>{e.exports={en:["Change scale currency"]}},85110:e=>{e.exports={en:["Change scale unit"]}},56275:e=>{e.exports={en:["Chart #{index}"]}},39950:e=>{e.exports={en:["Chart Properties"],el:["Ιδιότητες γραφήματος"]}},98856:e=>{e.exports={en:["Chart by TradingView"]}},1136:e=>{e.exports={en:["Chart for {symbol}, {interval}"]}},69804:e=>{e.exports={en:["Chart image copied to clipboard {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={
|
||||
en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"]}},14985:e=>{e.exports={en:["Click to set a point"],el:["Κάντε κλικ για να δημιουργία σημείου"]}},12537:e=>{e.exports={en:["Clone"],el:["Κλωνοποίηση"]}},62578:e=>{e.exports={en:["Close"],el:["Κλείσιμο"]}},264:e=>{e.exports={en:["Create limit order"]}},6969:e=>{e.exports={en:["Cross"]}},74334:e=>{e.exports={en:["Cross Line"]}},59396:e=>{e.exports={en:["Currencies"]}},20177:e=>{e.exports={en:["Current interval and above"]}},494:e=>{e.exports={en:["Current interval and below"]}},60668:e=>{e.exports={en:["Current interval only"]}},78609:e=>{e.exports={en:["Curve"]}},87380:e=>{e.exports={en:["Cycle"]}},84031:e=>{e.exports={en:["Cyclic Lines"]}},93191:e=>{e.exports={en:["Cypher Pattern"]}},7219:e=>{e.exports={en:["A layout with that name already exists"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"]}},46712:e=>{e.exports={en:["ABCD Pattern"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"]}},42630:e=>{e.exports={en:["Anchorage"]}},42669:e=>{e.exports={en:["Anchored Text"],el:["Καρφιτσωμένο κείμενο"]}},84541:e=>{e.exports={en:["Anchored VWAP"]}},77401:e=>{e.exports={en:["Access error"]}},46501:e=>{e.exports={en:["Add Symbol"],el:["Εισαγωγή Συμβόλου"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],el:["Always Invisible"]}},36299:e=>{e.exports={en:["Always visible"],el:["Always Visible"]}},58026:e=>{e.exports={en:["All intervals"]}},78358:e=>{e.exports={en:["Apply default"],el:["Apply Default"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"]}},27072:e=>{e.exports={en:["Apr"],el:["Απρ"]}},59324:e=>{e.exports={en:["Arc"]}},34456:e=>{e.exports={en:["Area"]}},11858:e=>{e.exports={en:["Arrow"]}},34247:e=>{e.exports={en:["Arrow Down"]}},36352:e=>{e.exports={en:["Arrow Marker"]}},73193:e=>{e.exports={en:["Arrow Mark Down"]}},1949:e=>{e.exports={en:["Arrow Mark Left"]}},86275:e=>{e.exports={en:["Arrow Mark Right"]}},62453:e=>{e.exports={en:["Arrow Mark Up"]}},77231:e=>{e.exports={en:["Arrow Up"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],el:["Ashkhabad"]}},72445:e=>{e.exports={en:["At close"]}},73702:e=>{e.exports={en:["Athens"],el:["Αθηνα"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],el:["Auto (Fits Data To Screen)"]}},46450:e=>{e.exports={en:["Aug"],el:["Αυγ"]}},21841:e=>{e.exports={en:["Average close price label"]}},16138:e=>{
|
||||
e.exports={en:["Average close price line"]}},73025:e=>{e.exports={en:["Avg"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"]}},81994:e=>{e.exports={en:["Bars Pattern"]}},59213:e=>{e.exports={en:["Baseline"]}},71797:e=>{e.exports={en:["Belgrade"]}},64313:e=>{e.exports={en:["Berlin"]}},43539:e=>{e.exports={en:["Brush"]}},91499:e=>{e.exports={en:["Brussels"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],el:["Μετακίνηση μπροστά"]}},17293:e=>{e.exports={en:["Bring to front"],el:["Τοποθέτηση μπροστά"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"]}},54280:e=>{e.exports={en:["Go to date"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"]}},47460:e=>{e.exports={en:["Gann Box"]}},48683:e=>{e.exports={en:["Gann Fan"]}},44763:e=>{e.exports={en:["Gann Square"]}},60707:e=>{e.exports={en:["Gann Square Fixed"]}},46808:e=>{e.exports={en:["Ghost Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"],el:["Grand Supercycle"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"]}},77125:e=>{e.exports={en:["Double Curve"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"]}},75296:e=>{e.exports={en:["Double-click to finish Path"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"]}},57131:e=>{e.exports={en:["Data Provided by"]}},22677:e=>{e.exports={en:["Date"]}},85444:e=>{e.exports={en:["Date Range"],el:["Εύρος ημ/νιας"]}},47017:e=>{e.exports={en:["Date and Price Range"]}},32084:e=>{e.exports={en:["Dec"],el:["Δεκ"]}},23403:e=>{e.exports={en:["Degree"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"]}},91544:e=>{e.exports={en:["Disjoint Channel"]}},70132:e=>{e.exports={en:["Displacement"]}},93864:e=>{e.exports={en:["Drawings toolbar"],el:["Drawings Toolbar"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"]}},61114:e=>{e.exports={
|
||||
en:["Elliott Impulse Wave (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"]}},52788:e=>{e.exports={en:["Extended Line"]}},86905:e=>{e.exports={en:["Exchange"]}},19271:e=>{e.exports={en:["Existing pane above"],el:["Existing Pane Above"]}},46545:e=>{e.exports={en:["Existing pane below"],el:["Existing Pane Below"]}},20138:e=>{e.exports={en:["Forecast"],el:["Πρόβλεψη"]}},2507:e=>{e.exports={en:["Feb"],el:["Φεβ"]}},59005:e=>{e.exports={en:["Fib Channel"]}},82330:e=>{e.exports={en:["Fib Circles"]}},55986:e=>{e.exports={en:["Fib Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"]}},39014:e=>{e.exports={en:["Fib Spiral"]}},30622:e=>{e.exports={en:["Fib Time Zone"]}},85042:e=>{e.exports={en:["Fib Wedge"]}},33885:e=>{e.exports={en:["Flag"]}},14600:e=>{e.exports={en:["Flag Mark"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"]}},39643:e=>{e.exports={en:["Fraction part is invalid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],el:["Hollow Candles"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"]}},25487:e=>{e.exports={en:["Horizontal Ray"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],el:["Απόκρυψη"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"],el:["Hide Events on Chart"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"],el:["Hide Marks On Bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"],el:["Υψηλό"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{
|
||||
e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"]}},14285:e=>{e.exports={en:["Invalid Symbol"],el:["Άκυρο σύμβολο"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"],el:["Invert Scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"],el:["Προσθήκη Τεχικού Δείκτη"]}},41686:e=>{e.exports={en:["Inside Pitchfork"]}},37913:e=>{e.exports={en:["Icon"],el:["Εικονίδιο"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"],el:["Ιαν"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"],el:["Ιουλ"]}},429:e=>{e.exports={en:["Jun"],el:["Ιουν"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"],el:["Οκτ"]}},16610:e=>{e.exports={en:["Open"],el:["Άνοιγμα"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],el:["Χαμηλό"]}},51077:e=>{e.exports={en:["Lock"],el:["Κλείδωμα"]}},79777:e=>{e.exports={en:["Lock/unlock"],el:["Κλείδωμα/Ξεκλείδωμα"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],el:["Lock Price To Bar Ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"],el:["Ετικέτες"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"]}},9394:e=>{e.exports={en:["Line with markers"],el:["With Markers"]}},43588:e=>{e.exports={en:["Line break"],el:["Line Break"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"]}},
|
||||
93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],el:["Μαρ"]}},73332:e=>{e.exports={en:["Mexico City"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],el:["No Scale (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],el:["Σημείωση"]}},26899:e=>{e.exports={en:["Nov"],el:["Νοε"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"]}},76266:e=>{e.exports={en:["Save as"],el:["Αποθήκευση ως"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],el:["Scale Price Chart Only"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],el:["Ρυθμίσεις"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],el:["Τοποθέτηση πίσω"]}},71179:e=>{e.exports={en:["Send backward"],el:["Μετακίνηση προς τα πίσω"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"],el:["Σεπ"]}},94031:e=>{e.exports={en:["Session"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],el:["Session Breaks"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"]}},98334:e=>{e.exports={en:["Show"],el:["Εμφάνιση"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"],el:["Show All Ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},
|
||||
81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"],el:["Show Dividends"]}},37113:e=>{e.exports={en:["Show earnings"],el:["Show Earnings"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],el:["Show Ideas of Followed Users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],el:["Show My Ideas Only"]}},50849:e=>{e.exports={en:["Show splits"],el:["Show Splits"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"]}},39090:e=>{e.exports={en:["Sine Line"]}},66205:e=>{e.exports={en:["Square"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"],el:["Στυλ"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],el:["Παραμονή στη Λειτουργία Σχεδίασης"]}},69217:e=>{e.exports={en:["Step line"],el:["Step Line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],el:["Symbol Name Label"]}},10127:e=>{e.exports={en:["Symbol last price label"],el:["Symbol Last Value Label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"],el:["Sync To All Charts"]}},76519:e=>{e.exports={en:["Point & figure"],el:["Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"]}},371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={
|
||||
en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"]}},66123:e=>{e.exports={en:["Price format is invalid."]}},72926:e=>{e.exports={en:["Price line"],el:["Γραμμή Τιμής"]}},59189:e=>{e.exports={en:["Primary"]}},75747:e=>{e.exports={en:["Projection"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"]}},2460:e=>{e.exports={en:["Regression Trend"]}},67410:e=>{e.exports={en:["Remove"],el:["Αφαίρεση"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],el:["Reset Price Scale"]}},54170:e=>{e.exports={en:["Reset time scale"],el:["Reset Time Scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"]}},5959:e=>{e.exports={en:["Warsaw"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={
|
||||
en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],el:["The symbol available only on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"]}},20909:e=>{e.exports={en:["Time zone"],el:["Ζώνη Ώρας"]}},46852:e=>{e.exports={en:["Time Cycles"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"]}},97339:e=>{e.exports={en:["Trend Line"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],el:["Αναίρεση"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"]}},99894:e=>{e.exports={en:["Unlock"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],el:["Visible on Mouse Over"]}},4077:e=>{e.exports={en:["Visual order"],el:["Σειρά Εμφάνισης"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]
|
||||
}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"],el:["Change Resolution"]}},35400:e=>{e.exports={en:["change symbol"],el:["Change symbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={
|
||||
en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],el:["Hide Marks On Bars"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"],el:["Invert Scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."],el:["ενημέρωση..."]}},76104:e=>{e.exports={en:["lock {title}"]}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"],
|
||||
el:["Scale Price Chart Only"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"],el:["Reset Time Scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"],el:["Toggle Percentage Scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={
|
||||
en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],el:["APPLE INC"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],el:["Australian Dollar/Swiss Franc"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],el:["Australian Dollar/Japanese Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],el:["Australian Dollar/New Zealand Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],el:["AUSTRALIAN DOLLAR / RUSSIAN RUBLE"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],el:["Australian Dollar/U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],el:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],el:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],el:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={
|
||||
en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],el:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],el:["Bitcoin / Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],el:["Canadian Dollar/Japanese Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],el:["Swiss Franc/Japanese Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={
|
||||
en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],el:["Copper"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],el:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={
|
||||
en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],el:["Euro Fx/Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],el:["Euro Fx/Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],el:["Euro Fx/Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],el:["Euro Fx/British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],el:["Euro Fx/Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],el:["Euro Fx/New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],el:["EURO / RUSSIAN RUBLE"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],el:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],el:["Euro Fx/Turkish New Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],el:["Euro Fx/U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],el:["Euro Stoxx 50 index of European listed shares"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],el:["British Pound/Australian Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],
|
||||
el:["British Pound/Canadian Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],el:["British Pound/Swiss Franc"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],el:["POUND STERLING / EURO"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],el:["British Pound/Japanese Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],el:["British Pound/New Zealand Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],el:["Pound Sterling / Russian Ruble"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],el:["British Pound/U.S. Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],el:["DAX index of German listed shares"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],el:["GOOGLE INC"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],el:["Nikkei 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],el:["YEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],el:["YEN / RUSSIAN RUBLE"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},
|
||||
e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],el:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],el:["NASDAQ 100 index of US listed shares"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],el:["Iteris Inc."]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],el:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},
|
||||
e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],el:["ALIBABA GROUP HLDG LTD"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],el:["New Zealand Dollar/Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],el:["New Zealand Dollar/U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],el:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],el:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],el:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},
|
||||
e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],el:["S&P 500 index of US listed shares"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],el:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],el:["U.S. Dollar Currency Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={
|
||||
en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],el:["India Government Bonds 10 yr"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],el:["Italy Government Bonds 10 yr"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],el:["NASDAQ Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],el:["Japan Government Bonds 10 yr"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],el:["NASDAQ 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],el:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},
|
||||
e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],el:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],el:["US Government Bonds 2 yr"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],el:["US Government Bonds 5 yr"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],el:["US Government Bonds 10 yr"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],el:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],el:["U.S. Dollar/Canadian Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],el:["U.S. Dollar/Swiss Franc"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],el:["U.S. Dollar / Yuan Renminbi"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],el:["US DOLLAR / DANISH KRONE"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],el:["U.S. Dollar/Hong Kong Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},
|
||||
e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],el:["U.S. Dollar/Japanese Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],el:["US DOLLAR / WON"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],el:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],el:["US DOLLAR / RUSSIAN RUBLE"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],el:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],el:["U.S. Dollar/Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],el:["US DOLLAR / SINGAPORE DOLLAR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],el:["U.S. Dollar/Turkish New Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],el:["Silver/U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],el:["Gold / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],el:["Platinum/U.S. Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],el:["Ripple / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],el:["Ripple / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],el:["Ripple / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
en:["Elliott Impulse Wave (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"]}},52788:e=>{e.exports={en:["Extended Line"]}},86905:e=>{e.exports={en:["Exchange"]}},19271:e=>{e.exports={en:["Existing pane above"],el:["Existing Pane Above"]}},46545:e=>{e.exports={en:["Existing pane below"],el:["Existing Pane Below"]}},20138:e=>{e.exports={en:["Forecast"],el:["Πρόβλεψη"]}},2507:e=>{e.exports={en:["Feb"],el:["Φεβ"]}},59005:e=>{e.exports={en:["Fib Channel"]}},82330:e=>{e.exports={en:["Fib Circles"]}},55986:e=>{e.exports={en:["Fib Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"]}},39014:e=>{e.exports={en:["Fib Spiral"]}},30622:e=>{e.exports={en:["Fib Time Zone"]}},85042:e=>{e.exports={en:["Fib Wedge"]}},33885:e=>{e.exports={en:["Flag"]}},14600:e=>{e.exports={en:["Flag Mark"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"]}},39643:e=>{e.exports={en:["Fraction part is invalid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},886:e=>{e.exports={en:["HLC bars"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],el:["Hollow Candles"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"]}},25487:e=>{e.exports={en:["Horizontal Ray"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],el:["Απόκρυψη"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"],el:["Hide Events on Chart"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"],el:["Hide Marks On Bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"],el:["Υψηλό"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={
|
||||
en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"]}},14285:e=>{e.exports={en:["Invalid Symbol"],el:["Άκυρο σύμβολο"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"],el:["Invert Scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"],el:["Προσθήκη Τεχικού Δείκτη"]}},41686:e=>{e.exports={en:["Inside Pitchfork"]}},37913:e=>{e.exports={en:["Icon"],el:["Εικονίδιο"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"],el:["Ιαν"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"],el:["Ιουλ"]}},429:e=>{e.exports={en:["Jun"],el:["Ιουν"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"],el:["Οκτ"]}},16610:e=>{e.exports={en:["Open"],el:["Άνοιγμα"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],el:["Χαμηλό"]}},51077:e=>{e.exports={en:["Lock"],el:["Κλείδωμα"]}},79777:e=>{e.exports={en:["Lock/unlock"],el:["Κλείδωμα/Ξεκλείδωμα"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],el:["Lock Price To Bar Ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"],el:["Ετικέτες"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"]}},9394:e=>{e.exports={en:["Line with markers"],el:["With Markers"]}},43588:e=>{e.exports={en:["Line break"],el:["Line Break"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={
|
||||
en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],el:["Μαρ"]}},73332:e=>{e.exports={en:["Mexico City"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],el:["No Scale (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],el:["Σημείωση"]}},26899:e=>{e.exports={en:["Nov"],el:["Νοε"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"]}},76266:e=>{e.exports={en:["Save as"],el:["Αποθήκευση ως"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],el:["Scale Price Chart Only"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],el:["Ρυθμίσεις"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],el:["Τοποθέτηση πίσω"]}},71179:e=>{e.exports={en:["Send backward"],el:["Μετακίνηση προς τα πίσω"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"],el:["Σεπ"]}},94031:e=>{e.exports={en:["Session"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],el:["Session Breaks"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"]}},98334:e=>{e.exports={en:["Show"],el:["Εμφάνιση"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"],
|
||||
el:["Show All Ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"],el:["Show Dividends"]}},37113:e=>{e.exports={en:["Show earnings"],el:["Show Earnings"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],el:["Show Ideas of Followed Users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],el:["Show My Ideas Only"]}},50849:e=>{e.exports={en:["Show splits"],el:["Show Splits"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"]}},39090:e=>{e.exports={en:["Sine Line"]}},66205:e=>{e.exports={en:["Square"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"],el:["Στυλ"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],el:["Παραμονή στη Λειτουργία Σχεδίασης"]}},69217:e=>{e.exports={en:["Step line"],el:["Step Line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],el:["Symbol Name Label"]}},10127:e=>{e.exports={en:["Symbol last price label"],el:["Symbol Last Value Label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"],el:["Sync To All Charts"]}},76519:e=>{e.exports={en:["Point & figure"],el:["Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"]}},371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={
|
||||
en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"]}},66123:e=>{e.exports={en:["Price format is invalid."]}},72926:e=>{e.exports={en:["Price line"],el:["Γραμμή Τιμής"]}},59189:e=>{e.exports={en:["Primary"]}},75747:e=>{e.exports={en:["Projection"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"]}},2460:e=>{e.exports={en:["Regression Trend"]}},67410:e=>{e.exports={en:["Remove"],el:["Αφαίρεση"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],el:["Reset Price Scale"]}},54170:e=>{e.exports={en:["Reset time scale"],el:["Reset Time Scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"]}},5959:e=>{e.exports={en:["Warsaw"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={
|
||||
en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],el:["The symbol available only on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"]}},20909:e=>{e.exports={en:["Time zone"],el:["Ζώνη Ώρας"]}},46852:e=>{e.exports={en:["Time Cycles"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"]}},97339:e=>{e.exports={en:["Trend Line"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],el:["Αναίρεση"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"]}},99894:e=>{e.exports={en:["Unlock"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],el:["Visible on Mouse Over"]}},4077:e=>{e.exports={en:["Visual order"],
|
||||
el:["Σειρά Εμφάνισης"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"],el:["Change Resolution"]}},35400:e=>{e.exports={en:["change symbol"],el:["Change symbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={
|
||||
en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],el:["Hide Marks On Bars"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"],el:["Invert Scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."],el:["ενημέρωση..."]}},76104:e=>{e.exports={en:["lock {title}"]}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{
|
||||
e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"],el:["Scale Price Chart Only"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"],el:["Reset Time Scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"],el:["Toggle Percentage Scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},
|
||||
8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],el:["APPLE INC"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],el:["Australian Dollar/Swiss Franc"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],el:["Australian Dollar/Japanese Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],el:["Australian Dollar/New Zealand Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],el:["AUSTRALIAN DOLLAR / RUSSIAN RUBLE"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],el:["Australian Dollar/U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],el:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={
|
||||
en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],el:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],el:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],el:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],el:["Bitcoin / Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],el:["Canadian Dollar/Japanese Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},
|
||||
e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],el:["Swiss Franc/Japanese Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],el:["Copper"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={
|
||||
en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],el:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],el:["Euro Fx/Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],el:["Euro Fx/Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],el:["Euro Fx/Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],el:["Euro Fx/British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],el:["Euro Fx/Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],el:["Euro Fx/New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],el:["EURO / RUSSIAN RUBLE"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],el:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],el:["Euro Fx/Turkish New Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],el:["Euro Fx/U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],el:["Euro Stoxx 50 index of European listed shares"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},
|
||||
e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],el:["British Pound/Australian Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],el:["British Pound/Canadian Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],el:["British Pound/Swiss Franc"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],el:["POUND STERLING / EURO"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],el:["British Pound/Japanese Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],el:["British Pound/New Zealand Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],el:["Pound Sterling / Russian Ruble"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],el:["British Pound/U.S. Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],el:["DAX index of German listed shares"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],el:["GOOGLE INC"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],el:["Nikkei 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],el:["YEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],el:["YEN / RUSSIAN RUBLE"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},
|
||||
e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],el:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],el:["NASDAQ 100 index of US listed shares"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],el:["Iteris Inc."]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],el:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},
|
||||
e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],el:["ALIBABA GROUP HLDG LTD"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],el:["New Zealand Dollar/Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],el:["New Zealand Dollar/U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],el:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],el:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],el:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},
|
||||
e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],el:["S&P 500 index of US listed shares"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],el:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],el:["U.S. Dollar Currency Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},
|
||||
e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],el:["India Government Bonds 10 yr"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],el:["Italy Government Bonds 10 yr"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],el:["NASDAQ Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],el:["Japan Government Bonds 10 yr"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],el:["NASDAQ 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],el:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},
|
||||
e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],el:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],el:["US Government Bonds 2 yr"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],el:["US Government Bonds 5 yr"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],el:["US Government Bonds 10 yr"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],el:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],el:["U.S. Dollar/Canadian Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],el:["U.S. Dollar/Swiss Franc"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],el:["U.S. Dollar / Yuan Renminbi"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],el:["US DOLLAR / DANISH KRONE"]},
|
||||
e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],el:["U.S. Dollar/Hong Kong Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],el:["U.S. Dollar/Japanese Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],el:["US DOLLAR / WON"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],el:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],el:["US DOLLAR / RUSSIAN RUBLE"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],el:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],el:["U.S. Dollar/Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],el:["US DOLLAR / SINGAPORE DOLLAR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],el:["U.S. Dollar/Turkish New Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],el:["Silver/U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],el:["Gold / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],el:["Platinum/U.S. Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],el:["Ripple / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],el:["Ripple / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],el:["Ripple / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
@@ -1,5 +1,5 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],nl_NL:["Kleur bars gebaseerd op voorgaand slot"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],nl_NL:["Vizier"]}},81849:e=>{e.exports={en:["Currency"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"],nl_NL:["Alarmeringen"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],nl_NL:["Randen"]}},79468:e=>{e.exports={en:["Background"],nl_NL:["Achtergrond"]}},10842:e=>{e.exports={en:["Bar change values"],nl_NL:["Bar Change Values"]}},28975:e=>{e.exports={en:["Base level"],nl_NL:["Base Level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"],nl_NL:["Standaard"]}},78734:e=>{e.exports={en:["Description"],nl_NL:["Beschrijving"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],nl_NL:["Gebeurtenissen"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],nl_NL:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],nl_NL:["Fill Bottom Area"]}},886:e=>{e.exports={en:["HLC bars"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],nl_NL:["Indicatoren"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"],nl_NL:["No Overlapping Labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}
|
||||
},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],nl_NL:["Schalen"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"],nl_NL:["Symbool"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],nl_NL:["Precisie"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],nl_NL:["Watermerk"]}},32163:e=>{e.exports={en:["Wick"],nl_NL:["Lont"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],nl_NL:["Top Line"]}},70320:e=>{e.exports={en:["Text"],nl_NL:["Tekst"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],nl_NL:["Thin Bars"]}},70198:e=>{e.exports={en:["Title"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"]}},81849:e=>{e.exports={en:["Currency"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"],el:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],el:["Περιθώρια"]}},79468:e=>{e.exports={en:["Background"],el:["Υπόβαθρο"]}},10842:e=>{e.exports={en:["Bar change values"],el:["Bar Change Values"]}},28975:e=>{e.exports={en:["Base level"],el:["Base Level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"],el:["Date Format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"],el:["Προεπιλογή"]}},78734:e=>{e.exports={en:["Description"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],el:["Γεγονότα"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],el:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],el:["Fill Bottom Area"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],el:["Τέχν. Δείκτες"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"],el:["No Overlapping Labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={
|
||||
en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],el:["Κλίμακες"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"],el:["Σύμβολο"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"],el:["Ποσοστό"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],el:["Ακρίβεια"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"],el:["Top Line"]}},70320:e=>{e.exports={en:["Text"],el:["Κείμενο"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],el:["Thin Bars"]}},70198:e=>{e.exports={en:["Title"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"],el:["Όγκος"]}},51514:e=>{e.exports={en:["Value"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={
|
||||
en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},
|
||||
41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{
|
||||
e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"],nl_NL:["Lege candles"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],nl_NL:["Renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"],el:["Hollow Candles"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],el:["Renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},78930:e=>{e.exports={en:["Coordinates"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"]}},71776:e=>{e.exports={en:["Down"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"]}},16564:e=>{e.exports={en:["Default"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"]}},73185:e=>{e.exports={en:["Fill bottom area"]}},886:e=>{e.exports={en:["HLC bars"]}},56796:e=>{e.exports={en:["Hours"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"]}},64075:e=>{e.exports={en:["Override min tick"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"]}},43154:e=>{e.exports={en:["Months"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},835:e=>{e.exports={en:["Weeks"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"]}},22691:e=>{e.exports={en:["Up"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},86866:e=>{e.exports={en:["change area fill color"]}},
|
||||
89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{
|
||||
e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{
|
||||
e.exports={en:["months"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
4
charting_library/bundles/en.1341.1068954aa326300ef390.js
Normal file
4
charting_library/bundles/en.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},78930:e=>{e.exports={en:["Coordinates"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"]}},71776:e=>{e.exports={en:["Down"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"]}},16564:e=>{e.exports={en:["Default"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"]}},73185:e=>{e.exports={en:["Fill bottom area"]}},56796:e=>{e.exports={en:["Hours"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"]}},64075:e=>{e.exports={en:["Override min tick"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"]}},43154:e=>{e.exports={en:["Months"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},835:e=>{e.exports={en:["Weeks"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"]}},22691:e=>{e.exports={en:["Up"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={
|
||||
en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={
|
||||
en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{
|
||||
e.exports={en:["hollow candles"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,3 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"]}},69207:e=>{e.exports={en:["Add to favorites"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"]}},22145:e=>{e.exports={en:["Geometric shapes"]}},57157:e=>{e.exports={en:["Dot"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"]}},74385:e=>{e.exports={en:["Drawings"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={
|
||||
en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"]}},99984:e=>{e.exports={en:["Remove indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"]}},37310:e=>{e.exports={en:["Zoom Out"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},
|
||||
90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
3
charting_library/bundles/en.4211.932ffa2dc04657916b72.js
Normal file
3
charting_library/bundles/en.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,3 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"]}},69207:e=>{e.exports={en:["Add to favorites"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"]}},22145:e=>{e.exports={en:["Geometric shapes"]}},57157:e=>{e.exports={en:["Dot"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"]}},74385:e=>{e.exports={en:["Drawings"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{
|
||||
e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"]}},99984:e=>{e.exports={en:["Remove indicators"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"]}},37310:e=>{e.exports={en:["Zoom Out"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={
|
||||
en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
@@ -1,5 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"]}},81849:e=>{e.exports={en:["Currency"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"]}},79468:e=>{e.exports={en:["Background"]}},10842:e=>{e.exports={en:["Bar change values"]}},28975:e=>{e.exports={en:["Base level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"]}},78734:e=>{e.exports={en:["Description"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"]}},73185:e=>{e.exports={en:["Fill bottom area"]}},886:e=>{e.exports={en:["HLC bars"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},
|
||||
95481:e=>{e.exports={en:["Symbol"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"]}},70198:e=>{e.exports={en:["Title"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={
|
||||
en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{
|
||||
e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},
|
||||
6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},
|
||||
e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"]},e.exports["All items_combobox_input"]={en:["All items"]},e.exports.All_input={en:["All"]},e.exports["Anchor Period_input"]={en:["Anchor Period"]},e.exports["Another symbol_input"]={en:["Another symbol"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"]},e.exports.Back_input={en:["Back"]},e.exports["Bands style_input"]={en:["Bands style"]},e.exports.Bar_input={en:["Bar"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"]},e.exports["Base Line_input"]={en:["Base Line"]},e.exports.Basis_input={en:["Basis"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"]},e.exports.Borders_input={en:["Borders"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"]},e.exports["Box size_input"]={en:["Box size"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"]},e.exports.Candles_input={en:["Candles"]},e.exports.Centered_input={en:["Centered"]},e.exports.Century_input={en:["Century"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"]},e.exports["Color 0_input"]={en:["Color 0"]},e.exports["Color 1_input"]={en:["Color 1"]},e.exports["Color 2_input"]={en:["Color 2"]},e.exports["Color 3_input"]={en:["Color 3"]},e.exports["Color 4_input"]={en:["Color 4"]},e.exports["Color 5_input"]={en:["Color 5"]},e.exports["Color 6_input"]={en:["Color 6"]},e.exports["Color 7_input"]={en:["Color 7"]},e.exports["Color 8_input"]={en:["Color 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"]},e.exports["Conversion Line_input"]={en:["Conversion Line"]},e.exports.Correlation_input={en:["Correlation"]},e.exports.Count_input={en:["Count"]},e.exports.Crosses_input={en:["Crosses"]},e.exports.Custom_input={en:["Custom"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"]},e.exports["Days Per Year_input"]={en:["Days Per Year"]},e.exports.Decade_input={en:["Decade"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"]},e.exports.Deviation_input={en:["Deviation"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"]},e.exports["Down bars_input"]={en:["Down bars"]},
|
||||
e.exports["Down color_input"]={en:["Down color"]},e.exports["Down fractals_input"]={en:["Down fractals"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"]},e.exports["Equality Line_input"]={en:["Equality Line"]},e.exports.Exponential_input={en:["Exponential"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"]},e.exports["Extend Right_input"]={en:["Extend Right"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"]},e.exports.Falling_input={en:["Falling"]},e.exports["Fast Length_input"]={en:["Fast Length"]},e.exports["Fast length_input"]={en:["Fast length"]},e.exports.Fill_input={en:["Fill"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"]},e.exports["HLC bars_input"]={en:["HLC bars"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"]},e.exports.Histogram_input={en:["Histogram"]},e.exports["Hull MA_input"]={en:["Hull MA"]},e.exports.Increment_input={en:["Increment"]},e.exports.Indicator_input={en:["Indicator"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"]},e.exports["Jaw Length_input"]={en:["Jaw Length"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"]},e.exports["Leading Span A_input"]={en:["Leading Span A"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"]},e.exports["Length EMA_input"]={en:["Length EMA"]},e.exports["Length MA_input"]={en:["Length MA"]},e.exports.Length1_input={en:["Length1"]},e.exports.Length2_input={en:["Length2"]},e.exports.Length3_input={en:["Length3"]},e.exports.Length_input={en:["Length"]},e.exports.Level_input={en:["Level"]},e.exports["Levels Format_input"]={en:["Levels Format"]},e.exports.Limit_input={en:["Limit"]},e.exports.Line_input={en:["Line"]},e.exports["Lips Length_input"]={en:["Lips Length"]},e.exports["Lips Offset_input"]={en:["Lips Offset"]
|
||||
},e.exports.Lips_input={en:["Lips"]},e.exports["Long Length_input"]={en:["Long Length"]},e.exports["Long RoC Length_input"]={en:["Long RoC Length"]},e.exports["Long length_input"]={en:["Long length"]},e.exports["Long period_input"]={en:["Long period"]},e.exports.Long_input={en:["Long"]},e.exports["Lower Band_input"]={en:["Lower Band"]},e.exports["Lower Deviation_input"]={en:["Lower Deviation"]},e.exports["Lower Percentage_input"]={en:["Lower Percentage"]},e.exports.LowerLimit_input={en:["LowerLimit"]},e.exports.Lower_input={en:["Lower"]},e.exports["MA Length_input"]={en:["MA Length"]},e.exports.MACD_input={en:["MACD"]},e.exports.MA_input={en:["MA"]},e.exports.MF_input={en:["MF"]},e.exports.MM_month_input={en:["MM"]},e.exports.MOM_input={en:["MOM"]},e.exports["Main chart symbol_input"]={en:["Main chart symbol"]},e.exports["Market Closed Percentage_input"]={en:["Market Closed Percentage"]},e.exports["Market only_input"]={en:["Market only"]},e.exports["Max value_input"]={en:["Max value"]},e.exports.Median_input={en:["Median"]},e.exports.Method_input={en:["Method"]},e.exports.Middle_input={en:["Middle"]},e.exports.Minimize_input={en:["Minimize"]},e.exports.Month_input={en:["Month"]},e.exports.Move_input={en:["Move"]},e.exports["Multi timeframe_input"]={en:["Multi timeframe"]},e.exports.Multiplier_input={en:["Multiplier"]},e.exports.NV_input={en:["NV"]},e.exports["Nothing selected_combobox_input"]={en:["Nothing selected"]},e.exports["Number Of Rows_input"]={en:["Number Of Rows"]},e.exports["Number of line_input"]={en:["Number of line"]},e.exports.OSC_input={en:["OSC"]},e.exports.Offset_input={en:["Offset"]},e.exports.OnBalanceVolume_input={en:["OnBalanceVolume"]},e.exports["One step back building_input"]={en:["One step back building"]},e.exports.Oscillator_input={en:["Oscillator"]},e.exports.Overbought_input={en:["Overbought"]},e.exports.Oversold_input={en:["Oversold"]},e.exports.POC_input={en:["POC"]},e.exports.PVT_input={en:["PVT"]},e.exports.P_input={en:["P"]},e.exports.ParabolicSAR_input={en:["ParabolicSAR"]},e.exports.Percent_input={en:["Percent"]},e.exports["Percentage LTP({percentageLTPValue}%)_input"]={en:["Percentage LTP({percentageLTPValue}%)"]},e.exports["Percentage LTP_input"]={en:["Percentage LTP"]},e.exports.Percentage_input={en:["Percentage"]},e.exports.Period_input={en:["Period"]},e.exports.Periods_input={en:["Periods"]},e.exports["Phantom bars_input"]={en:["Phantom bars"]},e.exports.Placement_input={en:["Placement"]},e.exports.Plot_input={en:["Plot"]},e.exports["Plots Background_input"]={en:["Plots Background"]},e.exports["Post-market only_input"]={en:["Post-market only"]},e.exports["Pre-market only_input"]={en:["Pre-market only"]},e.exports["Price source_input"]={en:["Price source"]},e.exports.Price_input={en:["Price"]},e.exports["Projection down bars_input"]={en:["Projection down bars"]},e.exports["Projection down color_input"]={en:["Projection down color"]},e.exports["Projection up bars_input"]={en:["Projection up bars"]},e.exports["Projection up color_input"]={en:["Projection up color"]},
|
||||
@@ -20,22 +20,22 @@ e.exports["Total debt_study"]={en:["Total debt"]},e.exports["Total equity_study"
|
||||
en:["Volume Weighted Moving Average"]},e.exports.Volume_study={en:["Volume"]},e.exports["Vortex Indicator_study"]={en:["Vortex Indicator"]},e.exports["Williams %R_study"]={en:["Williams %R"]},e.exports["Williams Alligator_study"]={en:["Williams Alligator"]},e.exports["Williams Fractal_study"]={en:["Williams Fractal"]},e.exports["Williams Fractals_study"]={en:["Williams Fractals"]},e.exports["Williams Percent Range_study"]={en:["Williams Percent Range"]},e.exports["Woodies CCI_study"]={en:["Woodies CCI"]},e.exports["Zig Zag_study"]={en:["Zig Zag"]},e.exports["Zmijewski score_study"]={en:["Zmijewski score"]}},89633:e=>{e.exports={en:["Anchored Volume Profile"]}},25705:e=>{e.exports={en:["Fixed Range Volume Profile"]}},24261:e=>{e.exports={en:["Vol"]}},67736:e=>{e.exports={en:["Minor"]}},922:e=>{e.exports={en:["Minute"]}},91405:e=>{e.exports={en:["Text"]}},78972:e=>{e.exports={en:["Couldn't copy"]}},10615:e=>{e.exports={en:["Couldn't cut"]}},81518:e=>{e.exports={en:["Couldn't paste"]}},83140:e=>{e.exports={en:["Countdown to bar close"]}},10871:e=>{e.exports={en:["Colombo"]}},55761:e=>{e.exports={en:["Columns"]}},9818:e=>{e.exports={en:["Comment"]}},53942:e=>{e.exports={en:["Compare or Add Symbol"]}},12086:e=>{e.exports={en:["Compilation error"]}},71692:e=>{e.exports={en:["Confirm to remove locked drawings"]}},48141:e=>{e.exports={en:["Confirm Inputs"]}},81605:e=>{e.exports={en:["Confirm Remove Study Tree"]}},38917:e=>{e.exports={en:["Copenhagen"]}},49680:e=>{e.exports={en:["Copy"]}},66134:e=>{e.exports={en:["Copy Chart Layout"]}},63553:e=>{e.exports={en:["Copy price"]}},65736:e=>{e.exports={en:["Cairo"]}},25381:e=>{e.exports={en:["Callout"]}},45054:e=>{e.exports={en:["Candles"]}},30948:e=>{e.exports={en:["Caracas"]}},70409:e=>{e.exports={en:["Casablanca"]}},37276:e=>{e.exports={en:["Change"]}},85124:e=>{e.exports={en:["Change Symbol"]}},2569:e=>{e.exports={en:["Change interval"]}},9687:e=>{e.exports={en:["Change interval. Press number or comma"]}},36332:e=>{e.exports={en:["Change symbol. Start typing symbol name"]}},48566:e=>{e.exports={en:["Change scale currency"]}},85110:e=>{e.exports={en:["Change scale unit"]}},56275:e=>{e.exports={en:["Chart #{index}"]}},39950:e=>{e.exports={en:["Chart Properties"]}},98856:e=>{e.exports={en:["Chart by TradingView"]}},1136:e=>{e.exports={en:["Chart for {symbol}, {interval}"]}},69804:e=>{e.exports={en:["Chart image copied to clipboard {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"]}},14985:e=>{e.exports={en:["Click to set a point"]}},12537:e=>{e.exports={en:["Clone"]}},62578:e=>{e.exports={en:["Close"]}},264:e=>{e.exports={en:["Create limit order"]}},6969:e=>{e.exports={en:["Cross"]}},74334:e=>{e.exports={en:["Cross Line"]}},59396:e=>{e.exports={en:["Currencies"]}},20177:e=>{e.exports={en:["Current interval and above"]}},494:e=>{e.exports={en:["Current interval and below"]}},60668:e=>{
|
||||
e.exports={en:["Current interval only"]}},78609:e=>{e.exports={en:["Curve"]}},87380:e=>{e.exports={en:["Cycle"]}},84031:e=>{e.exports={en:["Cyclic Lines"]}},93191:e=>{e.exports={en:["Cypher Pattern"]}},7219:e=>{e.exports={en:["A layout with that name already exists"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"]}},46712:e=>{e.exports={en:["ABCD Pattern"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"]}},42630:e=>{e.exports={en:["Anchorage"]}},42669:e=>{e.exports={en:["Anchored Text"]}},84541:e=>{e.exports={en:["Anchored VWAP"]}},77401:e=>{e.exports={en:["Access error"]}},46501:e=>{e.exports={en:["Add Symbol"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"]}},36299:e=>{e.exports={en:["Always visible"]}},58026:e=>{e.exports={en:["All intervals"]}},78358:e=>{e.exports={en:["Apply default"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"]}},27072:e=>{e.exports={en:["Apr"]}},59324:e=>{e.exports={en:["Arc"]}},34456:e=>{e.exports={en:["Area"]}},11858:e=>{e.exports={en:["Arrow"]}},34247:e=>{e.exports={en:["Arrow Down"]}},36352:e=>{e.exports={en:["Arrow Marker"]}},73193:e=>{e.exports={en:["Arrow Mark Down"]}},1949:e=>{e.exports={en:["Arrow Mark Left"]}},86275:e=>{e.exports={en:["Arrow Mark Right"]}},62453:e=>{e.exports={en:["Arrow Mark Up"]}},77231:e=>{e.exports={en:["Arrow Up"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"]}},72445:e=>{e.exports={en:["At close"]}},73702:e=>{e.exports={en:["Athens"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"]}},46450:e=>{e.exports={en:["Aug"]}},21841:e=>{e.exports={en:["Average close price label"]}},16138:e=>{e.exports={en:["Average close price line"]}},73025:e=>{e.exports={en:["Avg"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"]}},81994:e=>{e.exports={en:["Bars Pattern"]}},59213:e=>{e.exports={en:["Baseline"]}},71797:e=>{e.exports={en:["Belgrade"]}},64313:e=>{e.exports={
|
||||
en:["Berlin"]}},43539:e=>{e.exports={en:["Brush"]}},91499:e=>{e.exports={en:["Brussels"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"]}},17293:e=>{e.exports={en:["Bring to front"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"]}},54280:e=>{e.exports={en:["Go to date"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"]}},47460:e=>{e.exports={en:["Gann Box"]}},48683:e=>{e.exports={en:["Gann Fan"]}},44763:e=>{e.exports={en:["Gann Square"]}},60707:e=>{e.exports={en:["Gann Square Fixed"]}},46808:e=>{e.exports={en:["Ghost Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"]}},77125:e=>{e.exports={en:["Double Curve"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"]}},75296:e=>{e.exports={en:["Double-click to finish Path"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"]}},57131:e=>{e.exports={en:["Data Provided by"]}},22677:e=>{e.exports={en:["Date"]}},85444:e=>{e.exports={en:["Date Range"]}},47017:e=>{e.exports={en:["Date and Price Range"]}},32084:e=>{e.exports={en:["Dec"]}},23403:e=>{e.exports={en:["Degree"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"]}},91544:e=>{e.exports={en:["Disjoint Channel"]}},70132:e=>{e.exports={en:["Displacement"]}},93864:e=>{e.exports={en:["Drawings toolbar"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"]}},52788:e=>{e.exports={en:["Extended Line"]}},86905:e=>{e.exports={en:["Exchange"]}},19271:e=>{e.exports={en:["Existing pane above"]}},46545:e=>{e.exports={en:["Existing pane below"]}},20138:e=>{e.exports={en:["Forecast"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"]}},82330:e=>{e.exports={en:["Fib Circles"]}},55986:e=>{e.exports={en:["Fib Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"]}},39014:e=>{e.exports={en:["Fib Spiral"]}},30622:e=>{e.exports={en:["Fib Time Zone"]}},85042:e=>{e.exports={en:["Fib Wedge"]}},33885:e=>{e.exports={en:["Flag"]}},14600:e=>{e.exports={en:["Flag Mark"]}},45051:e=>{
|
||||
e.exports={en:["Flat Top/Bottom"]}},39643:e=>{e.exports={en:["Fraction part is invalid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"]}},25487:e=>{e.exports={en:["Horizontal Ray"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"]}},14285:e=>{e.exports={en:["Invalid Symbol"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"]}},41686:e=>{e.exports={en:["Inside Pitchfork"]}},37913:e=>{e.exports={en:["Icon"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},
|
||||
67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"]}},51077:e=>{e.exports={en:["Lock"]}},79777:e=>{e.exports={en:["Lock/unlock"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"]}},9394:e=>{e.exports={en:["Line with markers"]}},43588:e=>{e.exports={en:["Line break"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{
|
||||
e.exports={en:["Save New Chart Layout"]}},76266:e=>{e.exports={en:["Save as"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"]}},71179:e=>{e.exports={en:["Send backward"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"]}},98334:e=>{e.exports={en:["Show"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"]}},37113:e=>{e.exports={en:["Show earnings"]}},10261:e=>{e.exports={en:["Show ideas of followed users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"]}},50849:e=>{e.exports={en:["Show splits"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"]}},39090:e=>{e.exports={en:["Sine Line"]}},66205:e=>{e.exports={en:["Square"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"]}},69217:e=>{e.exports={en:["Step line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"]}},10127:e=>{e.exports={en:["Symbol last price label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"]}},76519:e=>{e.exports={en:["Point & figure"]}},39949:e=>{e.exports={en:["Polyline"]}},371:e=>{e.exports={en:["Path"]
|
||||
}},59256:e=>{e.exports={en:["Parallel Channel"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"]}},66123:e=>{e.exports={en:["Price format is invalid."]}},72926:e=>{e.exports={en:["Price line"]}},59189:e=>{e.exports={en:["Primary"]}},75747:e=>{e.exports={en:["Projection"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"]}},2460:e=>{e.exports={en:["Regression Trend"]}},67410:e=>{e.exports={en:["Remove"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={
|
||||
en:["Reset price scale"]}},54170:e=>{e.exports={en:["Reset time scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"]}},5959:e=>{e.exports={en:["Warsaw"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"]}},20909:e=>{e.exports={en:["Time zone"]}},46852:e=>{e.exports={en:["Time Cycles"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"]}},97339:e=>{e.exports={en:["Trend Line"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"]}},99894:e=>{e.exports={en:["Unlock"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={
|
||||
en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"]}},4077:e=>{e.exports={en:["Visual order"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"]}},35400:e=>{e.exports={en:["change symbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={
|
||||
en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."]}},76104:e=>{e.exports={en:["lock {title}"]}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{
|
||||
e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={
|
||||
en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={
|
||||
en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"]},e.exports["#CHFUSD-symbol-description"]={
|
||||
en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={
|
||||
en:["EGX 30 Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"]},
|
||||
e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={
|
||||
en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},
|
||||
e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},
|
||||
e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={
|
||||
en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"]},e.exports["#TVC:US30-symbol-description"]={
|
||||
en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"]},
|
||||
e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
e.exports={en:["Flat Top/Bottom"]}},39643:e=>{e.exports={en:["Fraction part is invalid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},886:e=>{e.exports={en:["HLC bars"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"]}},25487:e=>{e.exports={en:["Horizontal Ray"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"]}},14285:e=>{e.exports={en:["Invalid Symbol"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"]}},41686:e=>{e.exports={en:["Inside Pitchfork"]}},37913:e=>{e.exports={en:["Icon"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"]}
|
||||
},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"]}},51077:e=>{e.exports={en:["Lock"]}},79777:e=>{e.exports={en:["Lock/unlock"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"]}},9394:e=>{e.exports={en:["Line with markers"]}},43588:e=>{e.exports={en:["Line break"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={
|
||||
en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"]}},76266:e=>{e.exports={en:["Save as"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"]}},71179:e=>{e.exports={en:["Send backward"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"]}},98334:e=>{e.exports={en:["Show"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"]}},37113:e=>{e.exports={en:["Show earnings"]}},10261:e=>{e.exports={en:["Show ideas of followed users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"]}},50849:e=>{e.exports={en:["Show splits"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"]}},39090:e=>{e.exports={en:["Sine Line"]}},66205:e=>{e.exports={en:["Square"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"]}},69217:e=>{e.exports={en:["Step line"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"]}},10127:e=>{e.exports={en:["Symbol last price label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"]}},76519:e=>{e.exports={en:["Point & figure"]}},
|
||||
39949:e=>{e.exports={en:["Polyline"]}},371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"]}},66123:e=>{e.exports={en:["Price format is invalid."]}},72926:e=>{e.exports={en:["Price line"]}},59189:e=>{e.exports={en:["Primary"]}},75747:e=>{e.exports={en:["Projection"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"]}},2460:e=>{e.exports={en:["Regression Trend"]}},67410:e=>{e.exports={en:["Remove"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},
|
||||
88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"]}},54170:e=>{e.exports={en:["Reset time scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"]}},5959:e=>{e.exports={en:["Warsaw"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"]}},20909:e=>{e.exports={en:["Time zone"]}},46852:e=>{e.exports={en:["Time Cycles"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"]}},97339:e=>{e.exports={en:["Trend Line"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"]}},99894:e=>{e.exports={en:["Unlock"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},81030:e=>{e.exports={
|
||||
en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"]}},4077:e=>{e.exports={en:["Visual order"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"]}},35400:e=>{
|
||||
e.exports={en:["change symbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."]}},76104:e=>{e.exports={en:["lock {title}"]}},
|
||||
20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},
|
||||
96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={
|
||||
en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},
|
||||
e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},
|
||||
e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={
|
||||
en:["British Pound / Australian Dollar"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={
|
||||
en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},
|
||||
e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"]},
|
||||
e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"]},e.exports["#TVC:IT10-symbol-description"]={
|
||||
en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={
|
||||
en:["US Government Bonds 5 YR Yield"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"]},
|
||||
e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
5
charting_library/bundles/en.7458.068c610f8718bc62a766.js
Normal file
5
charting_library/bundles/en.7458.068c610f8718bc62a766.js
Normal file
@@ -0,0 +1,5 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"]}},81849:e=>{e.exports={en:["Currency"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"]}},3159:e=>{e.exports={en:["Bottom line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"]}},79468:e=>{e.exports={en:["Background"]}},10842:e=>{e.exports={en:["Bar change values"]}},28975:e=>{e.exports={en:["Base level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"]}},78734:e=>{e.exports={en:["Description"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"]}},73185:e=>{e.exports={en:["Fill bottom area"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"]}},8249:e=>{e.exports={en:["Money"]}},70937:e=>{e.exports={en:["Margins"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{
|
||||
e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"]}},32163:e=>{e.exports={en:["Wick"]}},97118:e=>{e.exports={en:["Top"]}},89349:e=>{e.exports={en:["Top line"]}},70320:e=>{e.exports={en:["Text"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"]}},70198:e=>{e.exports={en:["Title"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{
|
||||
e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}
|
||||
},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},
|
||||
85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,6 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],es:["#{count} (barra)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],es:["#{count} (precio, barra)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],es:["(Máx.+Mín.+Cierre)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],es:["(Máx+Mín)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],es:["Color de barras en función del cierre anterior"]}},78930:e=>{e.exports={en:["Coordinates"],es:["Coordenadas"]}},24197:e=>{e.exports={en:["Center"],es:["Centro"]}},84831:e=>{e.exports={en:["Close line"],es:["Línea de cierre"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],es:["Ajustar datos de los dividendos"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],es:["Ajustar para cambios de contrato"]}},27567:e=>{e.exports={en:["Bottom"],es:["Parte inferior"]}},3159:e=>{e.exports={en:["Bottom line"],es:["Resultado final"]}},74406:e=>{e.exports={en:["Body"],es:["Cuerpo"]}},333:e=>{e.exports={en:["Borders"],es:["Bordes"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],es:["Nivel de la base"]}},71776:e=>{e.exports={en:["Down"],es:["Abajo"]}},17611:e=>{e.exports={en:["Down bars"],es:["Barras descendentes"]}},23743:e=>{e.exports={en:["Down color"],es:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],es:["Modificación de datos"]}},72942:e=>{e.exports={en:["Days"],es:["Días"]}},16564:e=>{e.exports={en:["Default"],es:["Por defecto"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],es:["Desplazamiento (precio, barra)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],es:["Información general sobre el horario de negociación electrónica"]}},819:e=>{e.exports={en:["Extend lines"],es:["Ampliar líneas"]}},41129:e=>{e.exports={en:["Fill"],es:["Rellenar"]}},61112:e=>{e.exports={en:["Fill top area"],es:["Rellenar el área superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],es:["Rellenar el área inferior"]}},886:e=>{e.exports={en:["HLC bars"],es:["Barras con el máximo, mínimo y cierre (HLC)"]}},56796:e=>{e.exports={en:["Hours"],es:["Horas"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],es:["Línea de máximos"]}},47326:e=>{e.exports={en:["Integer"],es:["Número entero"]}},21429:e=>{e.exports={en:["Inputs"],es:["Entradas de datos"]}},64075:e=>{e.exports={en:["Override min tick"],es:["Anular el tick mínimo"]}},34579:e=>{e.exports={en:["Low line"],es:["Línea de mínimos"]}},11626:e=>{e.exports={en:["Left"],es:["Izquierda"]}},43154:e=>{e.exports={en:["Months"],es:["Meses"]}},68833:e=>{e.exports={en:["Middle"],es:["En el medio"]}},42562:e=>{e.exports={en:["Minutes"],es:["Minutos"]}},65188:e=>{e.exports={en:["Seconds"],es:["Segundos"]}},13350:e=>{e.exports={en:["Pearson's R"],es:["Coeficiente de correlación de Pearson"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],es:["Información horaria pre/pos mercado"]}},59766:e=>{e.exports={
|
||||
en:["Precision"],es:["Precisión"]}},84684:e=>{e.exports={en:["Price source"],es:["Fuente de los precios"]}},73466:e=>{e.exports={en:["Projection up bars"],es:["Barras superiores de proyección"]}},77430:e=>{e.exports={en:["Projection candles"],es:["Velas de proyección"]}},88367:e=>{e.exports={en:["Projection down bars"],es:["Barras de proyección descendentes"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],es:["Precios reales en la escala (en lugar del precio Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],es:["Derecha"]}},835:e=>{e.exports={en:["Weeks"],es:["Semanas"]}},32163:e=>{e.exports={en:["Wick"],es:["Mecha"]}},97118:e=>{e.exports={en:["Top"],es:["Parte superior"]}},89349:e=>{e.exports={en:["Top line"],es:["Línea superior"]}},70320:e=>{e.exports={en:["Text"],es:["Тexto"]}},25485:e=>{e.exports={en:["Text alignment"],es:["Alineación del texto"]}},67781:e=>{e.exports={en:["Text orientation"],es:["Orientación del texto"]}},20215:e=>{e.exports={en:["Thin bars"],es:["Barras finas"]}},24821:e=>{e.exports={en:["Ticks"],es:["Tics"]}},77073:e=>{e.exports={en:["Timezone"],es:["Zona horaria"]}},22691:e=>{e.exports={en:["Up"],es:["Arriba"]}},23091:e=>{e.exports={en:["Up color"],es:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],es:["Barras superiores"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],es:["Utilizar la liquidación como cierre en intervalos diarios"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],es:["vela"]}},27068:e=>{e.exports={en:["change HLC bars"],es:["cambiar las barras HLC"]}},86866:e=>{e.exports={en:["change area fill color"],es:["cambiar el color de relleno del área"]}},89346:e=>{e.exports={en:["change area line width"],es:["cambiar el ancho de la línea del área"]}},29605:e=>{e.exports={en:["change area line color"],es:["cambiar el color de la línea del área"]}},4640:e=>{e.exports={en:["change area price source"],es:["cambiar la fuente de los precios del área"]}},42190:e=>{e.exports={en:["change base level"],es:["cambiar el nivel de referencia"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],es:["cambiar el color de la línea inferior de la línea de referencia"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],es:["cambiar el ancho de la línea inferior de la línea de referencia"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],es:["cambiar el color de relleno del área inferior de la línea de referencia"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],es:["cambiar el color de relleno del área superior de la línea de referencia"]}},68609:e=>{e.exports={en:["change baseline price source"],es:["cambiar la fuente de precios de referencia"]}},69044:e=>{e.exports={en:["change baseline top line color"],es:["cambiar el color de la línea superior de la línea de referencia"]}},68197:e=>{e.exports={en:["change baseline top line width"],es:["cambiar el ancho de la línea superior de la línea de referencia"]}},33464:e=>{e.exports={
|
||||
en:["change bar up color"],es:["cambiar el color superior de la barra"]}},2066:e=>{e.exports={en:["change bar X coordinate"],es:["cambiar la coordenada X de las barras"]}},59622:e=>{e.exports={en:["change bar down color"],es:["cambiar el color inferior de la barra"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],es:["cambiar el color de las barras en función del valor de cierre anterior"]}},88324:e=>{e.exports={en:["change column up color"],es:["cambiar color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],es:["cambiar color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],es:["cambiar la fuente del precio de la columna"]}},82063:e=>{e.exports={en:["change decimal places"],es:["cambiar las posiciones decimales"]}},44223:e=>{e.exports={en:["change extended hours color"],es:["cambiar el color del horario ampliado"]}},47393:e=>{e.exports={en:["change electronic trading hours"],es:["modificar el horario de negociación electrónica"]}},6026:e=>{e.exports={en:["change high-low body color"],es:["cambiar el color del cuerpo de máximos y mínimos"]}},73021:e=>{e.exports={en:["change high-low body visibility"],es:["cambiar la visibilidad del cuerpo de máximos y mínimos"]}},46844:e=>{e.exports={en:["change high-low border color"],es:["cambiar el color del borde del máximos y mínimos"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],es:["cambiar la visibilidad de los bordes de máximos y mínimos"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],es:["cambiar la visibilidad de las etiquetas de máximos y mínimos"]}},56961:e=>{e.exports={en:["change high-low labels color"],es:["cambiar el color de las etiquetas de máximos y mínimos"]}},88640:e=>{e.exports={en:["change line color"],es:["cambiar el color de línea"]}},41837:e=>{e.exports={en:["change line price source"],es:["cambiar la fuente de precios de la línea"]}},48339:e=>{e.exports={en:["change line width"],es:["cambiar el ancho de línea"]}},38730:e=>{e.exports={en:["change post market color"],es:["cambiar el color posmercado"]}},44371:e=>{e.exports={en:["change pre market color"],es:["cambiar el color de la sesión premercado"]}},11737:e=>{e.exports={en:["change price Y coordinate"],es:["cambiar la coordenada Y de los precios"]}},16241:e=>{e.exports={en:["change range bars style"],es:["cambiar estilo de las barras de rango"]}},65821:e=>{e.exports={en:["change range thin bars"],es:["cambiar el rango de las barras finas"]}},75487:e=>{e.exports={en:["change renko wick down color"],es:["cambiar el color inferior de la mecha renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],es:["cambiar el color inferior de la mecha renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],es:["cambiar la visibilidad de las mechas renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],es:["cambiar ticks mínimos de la superposición del estudio"]}},82924:e=>{e.exports={en:["change study overlay style"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],es:["#{count} (barra)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],es:["#{count} (precio, barra)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],es:["(Máx.+Mín.+Cierre)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],es:["(Máx+Mín)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],es:["Color de barras en función del cierre anterior"]}},78930:e=>{e.exports={en:["Coordinates"],es:["Coordenadas"]}},24197:e=>{e.exports={en:["Center"],es:["Centro"]}},84831:e=>{e.exports={en:["Close line"],es:["Línea de cierre"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],es:["Ajustar datos de los dividendos"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],es:["Ajustar para cambios de contrato"]}},27567:e=>{e.exports={en:["Bottom"],es:["Parte inferior"]}},3159:e=>{e.exports={en:["Bottom line"],es:["Resultado final"]}},74406:e=>{e.exports={en:["Body"],es:["Cuerpo"]}},333:e=>{e.exports={en:["Borders"],es:["Bordes"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],es:["Nivel de la base"]}},71776:e=>{e.exports={en:["Down"],es:["Abajo"]}},17611:e=>{e.exports={en:["Down bars"],es:["Barras descendentes"]}},23743:e=>{e.exports={en:["Down color"],es:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],es:["Modificación de datos"]}},72942:e=>{e.exports={en:["Days"],es:["Días"]}},16564:e=>{e.exports={en:["Default"],es:["Por defecto"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],es:["Desplazamiento (precio, barra)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],es:["Información general sobre el horario de negociación electrónica"]}},819:e=>{e.exports={en:["Extend lines"],es:["Ampliar líneas"]}},41129:e=>{e.exports={en:["Fill"],es:["Rellenar"]}},61112:e=>{e.exports={en:["Fill top area"],es:["Rellenar el área superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],es:["Rellenar el área inferior"]}},56796:e=>{e.exports={en:["Hours"],es:["Horas"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],es:["Línea de máximos"]}},47326:e=>{e.exports={en:["Integer"],es:["Número entero"]}},21429:e=>{e.exports={en:["Inputs"],es:["Entradas de datos"]}},64075:e=>{e.exports={en:["Override min tick"],es:["Anular el tick mínimo"]}},34579:e=>{e.exports={en:["Low line"],es:["Línea de mínimos"]}},11626:e=>{e.exports={en:["Left"],es:["Izquierda"]}},43154:e=>{e.exports={en:["Months"],es:["Meses"]}},68833:e=>{e.exports={en:["Middle"],es:["En el medio"]}},42562:e=>{e.exports={en:["Minutes"],es:["Minutos"]}},65188:e=>{e.exports={en:["Seconds"],es:["Segundos"]}},13350:e=>{e.exports={en:["Pearson's R"],es:["Coeficiente de correlación de Pearson"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],es:["Información horaria pre/pos mercado"]}},59766:e=>{e.exports={en:["Precision"],
|
||||
es:["Precisión"]}},84684:e=>{e.exports={en:["Price source"],es:["Fuente de los precios"]}},73466:e=>{e.exports={en:["Projection up bars"],es:["Barras superiores de proyección"]}},77430:e=>{e.exports={en:["Projection candles"],es:["Velas de proyección"]}},88367:e=>{e.exports={en:["Projection down bars"],es:["Barras de proyección descendentes"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],es:["Precios reales en la escala (en lugar del precio Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],es:["Derecha"]}},835:e=>{e.exports={en:["Weeks"],es:["Semanas"]}},32163:e=>{e.exports={en:["Wick"],es:["Mecha"]}},97118:e=>{e.exports={en:["Top"],es:["Parte superior"]}},89349:e=>{e.exports={en:["Top line"],es:["Línea superior"]}},70320:e=>{e.exports={en:["Text"],es:["Тexto"]}},25485:e=>{e.exports={en:["Text alignment"],es:["Alineación del texto"]}},67781:e=>{e.exports={en:["Text orientation"],es:["Orientación del texto"]}},20215:e=>{e.exports={en:["Thin bars"],es:["Barras finas"]}},24821:e=>{e.exports={en:["Ticks"],es:["Tics"]}},77073:e=>{e.exports={en:["Timezone"],es:["Zona horaria"]}},22691:e=>{e.exports={en:["Up"],es:["Arriba"]}},23091:e=>{e.exports={en:["Up color"],es:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],es:["Barras superiores"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],es:["Utilizar la liquidación como cierre en intervalos diarios"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],es:["vela"]}},27068:e=>{e.exports={en:["change HLC bars"],es:["cambiar las barras HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],es:["cambiar el color de relleno del área"]}},89346:e=>{e.exports={en:["change area line width"],es:["cambiar el ancho de la línea del área"]}},29605:e=>{e.exports={en:["change area line color"],es:["cambiar el color de la línea del área"]}},4640:e=>{e.exports={en:["change area price source"],es:["cambiar la fuente de los precios del área"]}},42190:e=>{e.exports={en:["change base level"],es:["cambiar el nivel de referencia"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],es:["cambiar el color de la línea inferior de la línea de referencia"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],es:["cambiar el ancho de la línea inferior de la línea de referencia"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],es:["cambiar el color de relleno del área inferior de la línea de referencia"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],es:["cambiar el color de relleno del área superior de la línea de referencia"]}},68609:e=>{e.exports={en:["change baseline price source"],es:["cambiar la fuente de precios de referencia"]}},69044:e=>{e.exports={en:["change baseline top line color"],es:["cambiar el color de la línea superior de la línea de referencia"]}},68197:e=>{e.exports={en:["change baseline top line width"],es:["cambiar el ancho de la línea superior de la línea de referencia"]}
|
||||
},33464:e=>{e.exports={en:["change bar up color"],es:["cambiar el color superior de la barra"]}},2066:e=>{e.exports={en:["change bar X coordinate"],es:["cambiar la coordenada X de las barras"]}},59622:e=>{e.exports={en:["change bar down color"],es:["cambiar el color inferior de la barra"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],es:["cambiar el color de las barras en función del valor de cierre anterior"]}},88324:e=>{e.exports={en:["change column up color"],es:["cambiar color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],es:["cambiar color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],es:["cambiar la fuente del precio de la columna"]}},82063:e=>{e.exports={en:["change decimal places"],es:["cambiar las posiciones decimales"]}},44223:e=>{e.exports={en:["change extended hours color"],es:["cambiar el color del horario ampliado"]}},47393:e=>{e.exports={en:["change electronic trading hours"],es:["modificar el horario de negociación electrónica"]}},6026:e=>{e.exports={en:["change high-low body color"],es:["cambiar el color del cuerpo de máximos y mínimos"]}},73021:e=>{e.exports={en:["change high-low body visibility"],es:["cambiar la visibilidad del cuerpo de máximos y mínimos"]}},46844:e=>{e.exports={en:["change high-low border color"],es:["cambiar el color del borde del máximos y mínimos"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],es:["cambiar la visibilidad de los bordes de máximos y mínimos"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],es:["cambiar la visibilidad de las etiquetas de máximos y mínimos"]}},56961:e=>{e.exports={en:["change high-low labels color"],es:["cambiar el color de las etiquetas de máximos y mínimos"]}},88640:e=>{e.exports={en:["change line color"],es:["cambiar el color de línea"]}},41837:e=>{e.exports={en:["change line price source"],es:["cambiar la fuente de precios de la línea"]}},48339:e=>{e.exports={en:["change line width"],es:["cambiar el ancho de línea"]}},38730:e=>{e.exports={en:["change post market color"],es:["cambiar el color posmercado"]}},44371:e=>{e.exports={en:["change pre market color"],es:["cambiar el color de la sesión premercado"]}},11737:e=>{e.exports={en:["change price Y coordinate"],es:["cambiar la coordenada Y de los precios"]}},16241:e=>{e.exports={en:["change range bars style"],es:["cambiar estilo de las barras de rango"]}},65821:e=>{e.exports={en:["change range thin bars"],es:["cambiar el rango de las barras finas"]}},75487:e=>{e.exports={en:["change renko wick down color"],es:["cambiar el color inferior de la mecha renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],es:["cambiar el color inferior de la mecha renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],es:["cambiar la visibilidad de las mechas renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],es:["cambiar ticks mínimos de la superposición del estudio"]}},82924:e=>{e.exports={en:["change study overlay style"],
|
||||
es:["cambio estilo de superposición del estudio"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],es:["cambiar la visualización de los precios reales en la escala de precios (en lugar del precio Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],es:["cambiar las barras finas"]}},78509:e=>{e.exports={en:["change {title} base line color"],es:["cambiar el color de la línea de referencia de {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],es:["cambiar el estilo de la línea de referencia de {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],es:["cambiar la visibilidad de la línea de referencia de {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],es:["cambiar el ancho de la línea de referencia de {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],es:["cambiar color de la línea inferior de {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],es:["cambiar el estilo de la línea descendente de {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],es:["cambiar la visibilidad de la línea descendente de {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],es:["cambiar el ancho de la línea inferior de {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],es:["cambiar los días de {title} hasta"]}},91201:e=>{e.exports={en:["change {title} days from"],es:["cambiar los días de {title} desde"]}},76295:e=>{e.exports={en:["change {title} extend lines"],es:["cambiar ampliar líneas en {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],es:["cambiar las horas de {title} desde"]}},67233:e=>{e.exports={en:["change {title} hours to"],es:["cambiar las horas de {title} hasta"]}},99122:e=>{e.exports={en:["change {title} months from"],es:["cambiar los meses desde de {title}"]}},10518:e=>{e.exports={en:["change {title} months to"],es:["cambiar los meses de {title} hasta"]}},38011:e=>{e.exports={en:["change {title} minutes to"],es:["cambiar los minutos de {title} hasta"]}},59820:e=>{e.exports={en:["change {title} minutes from"],es:["cambiar los minutos de {title} desde"]}},6573:e=>{e.exports={en:["change {title} seconds to"],es:["cambiar los segundos de {title} hasta"]}},86780:e=>{e.exports={en:["change {title} seconds from"],es:["cambiar los segundos desde de {title}"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],es:["cambiar la visibilidad r de Pearson de {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],es:["cambiar las semanas de {title} desde"]}},18678:e=>{e.exports={en:["change {title} weeks to"],es:["cambiar las semanas de {title} hasta"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],es:["cambiar la visibilidad de la línea superior de {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],es:["cambiar el ancho de la línea superior de {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],
|
||||
es:["cambiar el color de la línea superior de {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],es:["cambiar el estilo de la línea superior de {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],es:["cambiar la visibilidad en ticks de {title}"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],es:["cambiar la visibilidad en semanas de {title}"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],es:["cambiar la visibilidad de {title} en {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],es:["cambiar la visibilidad en días de {title}"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],es:["cambiar la visibilidad en horas de {title}"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],es:["cambiar la visibilidad en minutos de {title}"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],es:["cambiar la visibilidad en meses de {title}"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],es:["cambiar la visibilidad en segundos de {title}"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],es:["cambiar el color del borde superior de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],es:["cambiar el color superior de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],es:["cambiar el color inferior de la mecha de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],es:["cambiar el color superior de la mecha de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],es:["cambiar la visibilidad de la mecha {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],es:["cambiar la visibilidad del cuerpo de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],es:["cambiar la visibilidad del borde de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],es:["cambiar el color del borde inferior de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],es:["cambiar el color inferior de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],es:["cambiar el color inferior del borde de la barra de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],es:["cambiar el color superior del borde de la barra de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],es:["cambiar el color inferior de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],es:["cambiar el color superior del borde de la barra de proyección de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],es:["cambiar el color inferior de la barra de proyección de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],es:["cambiar el color superior de la barra de proyección de {chartType}"]}},6970:e=>{e.exports={
|
||||
en:["change {chartType} up color"],es:["cambiar el color superior de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],es:["cambiar propiedad de {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],es:["cambiar la propiedad de {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],es:["ajustar datos de los dividendos"]}},1433:e=>{e.exports={en:["adjust for contract changes"],es:["ajustar para cambios de contrato"]}},35813:e=>{e.exports={en:["days"],es:["días"]}},89919:e=>{e.exports={en:["days to"],es:["días hasta"]}},59215:e=>{e.exports={en:["days from"],es:["días desde"]}},2359:e=>{e.exports={en:["hours"],es:["horas"]}},82267:e=>{e.exports={en:["hours from"],es:["horas desde"]}},15600:e=>{e.exports={en:["hours to"],es:["horas hasta"]}},92598:e=>{e.exports={en:["hollow candles"],es:["velas huecas"]}},76261:e=>{e.exports={en:["move drawings"],es:["mover dibujos"]}},95300:e=>{e.exports={en:["months"],es:["meses"]}},17250:e=>{e.exports={en:["months from"],es:["meses desde"]}},2828:e=>{e.exports={en:["months to"],es:["meses hasta"]}},18726:e=>{e.exports={en:["minutes"],es:["minutos"]}},67649:e=>{e.exports={en:["minutes to"],es:["minutos hasta"]}},22476:e=>{e.exports={en:["minutes from"],es:["minutos desde"]}},751:e=>{e.exports={en:["seconds"],es:["segundos"]}},73419:e=>{e.exports={en:["seconds to"],es:["segundos hasta"]}},35801:e=>{e.exports={en:["seconds from"],es:["segundos desde"]}},57243:e=>{e.exports={en:["range","ranges"],es:["rango","rangos"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"],es:["semanas"]}},92859:e=>{e.exports={en:["weeks from"],es:["semanas desde"]}},44127:e=>{e.exports={en:["weeks to"],es:["semanas hasta"]}},3539:e=>{e.exports={en:["ticks"],es:["Tics"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],es:["utilizar la liquidación como cierre en intervalos diarios"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],es:["{value} decimal","{value} decimales"]}}}]);
|
||||
en:["change {chartType} up color"],es:["cambiar el color superior de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],es:["cambiar propiedad de {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],es:["cambiar la propiedad de {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],es:["ajustar datos de los dividendos"]}},1433:e=>{e.exports={en:["adjust for contract changes"],es:["ajustar para cambios de contrato"]}},35813:e=>{e.exports={en:["days"],es:["días"]}},89919:e=>{e.exports={en:["days to"],es:["días hasta"]}},59215:e=>{e.exports={en:["days from"],es:["días desde"]}},2359:e=>{e.exports={en:["hours"],es:["horas"]}},82267:e=>{e.exports={en:["hours from"],es:["horas desde"]}},15600:e=>{e.exports={en:["hours to"],es:["horas hasta"]}},92598:e=>{e.exports={en:["hollow candles"],es:["velas huecas"]}},76261:e=>{e.exports={en:["move drawings"],es:["mover dibujos"]}},95300:e=>{e.exports={en:["months"],es:["meses"]}},17250:e=>{e.exports={en:["months from"],es:["meses desde"]}},2828:e=>{e.exports={en:["months to"],es:["meses hasta"]}},18726:e=>{e.exports={en:["minutes"],es:["minutos"]}},67649:e=>{e.exports={en:["minutes to"],es:["minutos hasta"]}},22476:e=>{e.exports={en:["minutes from"],es:["minutos desde"]}},751:e=>{e.exports={en:["seconds"],es:["segundos"]}},73419:e=>{e.exports={en:["seconds to"],es:["segundos hasta"]}},35801:e=>{e.exports={en:["seconds from"],es:["segundos desde"]}},57243:e=>{e.exports={en:["range","ranges"],es:["rango","rangos"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"],es:["semanas"]}},92859:e=>{e.exports={en:["weeks from"],es:["semanas desde"]}},44127:e=>{e.exports={en:["weeks to"],es:["semanas hasta"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],es:["Tics"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],es:["utilizar la liquidación como cierre en intervalos diarios"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],es:["{value} decimal","{value} decimales"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],es:["Punto"]}},41256:e=>{e.exports={en:["Back"],es:["Atrás"]}},53174:e=>{e.exports={en:["Right"],es:["Right (derecho de suscripción)"]}},57e3:e=>{e.exports={en:["Compare"],es:["Comparar"]}},93111:e=>{e.exports={en:["Content"],es:["Contenido"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],es:["Copiar el enlace a la imagen del gráfico"]}},4543:e=>{e.exports={en:["Cancel"],es:["Cancelar"]}},59934:e=>{e.exports={en:["Channels"],es:["Canales"]}},63245:e=>{e.exports={en:["Change symbol"],es:["Cambiar símbolo"]}},56281:e=>{e.exports={en:["Chart style Columns"],es:["Estilo de gráfico: Columnas"]}},64526:e=>{e.exports={en:["Chart style Candles"],es:["Estilo de gráfico: Velas"]}},9537:e=>{e.exports={en:["Chart style Area"],es:["Estilo de gráfico: Área"]}},19265:e=>{e.exports={en:["Chart style Bars"],es:["Estilo de gráfico: Barras"]}},19579:e=>{e.exports={en:["Chart style Baseline"],es:["Estilo de gráfico: Línea de referencia"]}},47189:e=>{e.exports={en:["Chart style Kagi"],es:["Estilo de gráfico: Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],es:["Estilo de gráfico: Área HLC"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],es:["Estilo de gráfico: Velas huecas"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],es:["Estilo de gráfico: Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],es:["Estilo de gráfico: Mín-max"]}},92911:e=>{e.exports={en:["Chart style Line"],es:["Estilo de gráfico: Línea"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],es:["Estilo de gráfico: Línea con marcadores"]}},11604:e=>{e.exports={en:["Chart style Line break"],es:["Estilo de gráfico: Ruptura de línea"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],es:["Estilo de gráfico de Perfil de volumen de la sesión"]}},40447:e=>{e.exports={en:["Chart style Step line"],es:["Estilo de gráfico: Línea de pasos"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],es:["Estilo de gráfico: Punto y figura"]}},49942:e=>{e.exports={en:["Chart style Range"],es:["Estilo de gráfico: Rango"]}},80082:e=>{e.exports={en:["Chart style Renko"],es:["Estilo de gráfico: Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],es:["Estilo de gráfico: Oportunidad de precios en el tiempo"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],es:["Estilo de gráfico: Velas de volumen"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],es:["Estilo de gráfico Huella (footprint) de volumen"]}},53438:e=>{e.exports={en:["Chart template"],es:["Plantilla de gráfico"]}},47742:e=>{e.exports={en:["Close menu"],es:["Cerrar menú"]}},81578:e=>{e.exports={en:["Cursors"],es:["Cursores"]}},77915:e=>{e.exports={en:["Cycles"],es:["Ciclos"]}},32064:e=>{e.exports={en:["Annotation tools"],es:["Herramientas de anotación"]}},69207:e=>{e.exports={en:["Add to favorites"],es:["Añadir a favoritos"]}},34040:e=>{e.exports={en:["All sources"],es:["Todas las fuentes"]}},
|
||||
19147:e=>{e.exports={en:["Arrows"],es:["Flechas"]}},42358:e=>{e.exports={en:["Bond"],es:["Bono"]}},65695:e=>{e.exports={en:["Brushes"],es:["Pinceles"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],es:["Herramientas Gann y Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],es:["Figuras geométricas"]}},57157:e=>{e.exports={en:["Dot"],es:["Punto"]}},25848:e=>{e.exports={en:["Dark theme"],es:["Modo oscuro"]}},14939:e=>{e.exports={en:["Demonstration"],es:["Demostración"]}},78734:e=>{e.exports={en:["Description"],es:["Descripción"]}},74385:e=>{e.exports={en:["Drawings"],es:["Dibujos"]}},44255:e=>{e.exports={en:["Elliott waves"],es:["Ondas de Elliott"]}},8727:e=>{e.exports={en:["Eraser"],es:["Borrador"]}},93308:e=>{e.exports={en:["Extended session"],es:["Sesión con horario ampliado"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],es:["Herramientas de previsión y medida"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],es:["Modo pantalla completa"]}},83576:e=>{e.exports={en:["Function"],es:["Función"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],es:["Mantenga pulsada {hotKey_0} para dibujar temporalmente"]}},27077:e=>{e.exports={en:["Open Object Tree"],es:["Abrir Árbol de objetos"]}},7386:e=>{e.exports={en:["Open chart layout"],es:["Abrir el diseño del gráfico"]}},79451:e=>{e.exports={en:["Lock all drawings"],es:["Bloquear todos los dibujos"]}},35112:e=>{e.exports={en:["Move chart back"],es:["Mover el gráfico hacia atrás"]}},12754:e=>{e.exports={en:["Move chart forward"],es:["Mover el gráfico hacia adelante"]}},37117:e=>{e.exports={en:["More"],es:["Más"]}},35553:e=>{e.exports={en:["Magic"],es:["Magia"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],es:["El modo Magnet acerca los dibujos próximos a las barras de precios, al valor más cercano OHLC"]}},81031:e=>{e.exports={en:["Manage layout drawings"],es:["Gestionar los dibujos de los diseños"]}},91563:e=>{e.exports={en:["Measure"],es:["Medida"]}},97050:e=>{e.exports={en:["Measurer"],es:["Medidor"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],es:["Agrupar todas las escalas a la izquierda"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],es:["Agrupar todas las escalas a la derecha"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],es:["No hay mercados de valores que coincidan con sus criterios."]}},76822:e=>{e.exports={en:["No symbols match your criteria"],es:["Ningún símbolo coincide con sus criterios"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],es:["Nada que coincida con sus criterios"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],es:["Los nuevos dibujos se reproducen en todos los gráficos y se muestran cuando se selecciona el mismo ticker"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],es:["Los nuevos dibujos se sincronizarán globalmente"]
|
||||
}},93027:e=>{e.exports={en:["New drawings will sync in layout"],es:["Las nuevas plantillas se sincronizarán en la plantilla"]}},28628:e=>{e.exports={en:["Sources"],es:["Fuentes"]}},41569:e=>{e.exports={en:["Save chart layout"],es:["Guardar diseño de gráfico"]}},8573:e=>{e.exports={en:["Search"],es:["Buscar"]}},79354:e=>{e.exports={en:["Search tool or function"],es:["Buscar una herramienta o función"]}},57640:e=>{e.exports={en:["Select source"],es:["Seleccionar fuente"]}},65781:e=>{e.exports={en:["Shapes"],es:["Figuras"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],es:["Mostrar herramientas ocultas"]}},85786:e=>{e.exports={en:["Show Object Tree"],es:["Mostrar árbol de objetos"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],es:["Permanecer en modo dibujo"]}},94593:e=>{e.exports={en:["Strong Magnet"],es:["Imán fuerte"]}},95481:e=>{e.exports={en:["Symbol"],es:["Símbolo"]}},74007:e=>{e.exports={en:["Symbol & description"],es:["Símbolo y descripción"]}},51165:e=>{e.exports={en:["Symbol Search"],es:["Búsqueda de símbolos"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],es:["Sincronizar dibujos en todos los gráficos"]}},46417:e=>{e.exports={en:["Patterns"],es:["Patrones"]}},36167:e=>{e.exports={en:["Pitchforks"],es:["Tridentes"]}},79366:e=>{e.exports={en:["Previous day close price line"],es:["Línea con el precio de cierre del día anterior"]}},76753:e=>{e.exports={en:["Recent search"],es:["Busqueda reciente"]}},28051:e=>{e.exports={en:["Regular session"],es:["Sesión ordinaria"]}},57118:e=>{e.exports={en:["Remove Drawings"],es:["Eliminar dibujos"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],es:["Eliminar todas las herramientas de dibujo e indicadores"]}},96374:e=>{e.exports={en:["Remove drawings"],es:["Eliminar dibujos"]}},85106:e=>{e.exports={en:["Remove from favorites"],es:["Eliminar de favoritos"]}},99984:e=>{e.exports={en:["Remove indicators"],es:["Eliminar Indicadores"]}},38206:e=>{e.exports={en:["Rename chart layout"],es:["Cambiar el nombre del diseño del gráfico"]}},31789:e=>{e.exports={en:["Reset chart"],es:["Restablecer gráfico"]}},3519:e=>{e.exports={en:["Weak Magnet"],es:["Imán débil"]}},65831:e=>{e.exports={en:["Text & Notes"],es:["Texto y notas"]}},48773:e=>{e.exports={en:["Trend line tools"],es:["Herramientas de líneas de tendencia"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],es:["Busque herramientas de dibujo, funciones y configuraciones"]}},69260:e=>{e.exports={en:["Volume-based"],es:["Basado en volumen"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],es:["Está cambiando la interfaz de usuario al esquema {name}. ¿Le gustaría cambiar el esquema de la plantilla del gráfico también?"]}},55774:e=>{e.exports={en:["Zoom In"],es:["Aumentar"]}},37310:e=>{e.exports={en:["Zoom Out"],es:["Alejar"]}},70932:e=>{e.exports={en:["commodity"],es:["materia prima"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={
|
||||
en:["change ideas visibility on chart"],es:["cambiar la visibilidad de las ideas en el gráfico"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],es:["cambiar la visibilidad de las etiquetas con el nombre de los indicadores y de la información financiera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],es:["cambiar la visibilidad de las etiquetas con el valor de los indicadores y la información financiera"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],es:["cambiar la visibilidad de las líneas de precios pre/pos mercado"]}},46128:e=>{e.exports={en:["crypto"],es:["cripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],es:["economía"]}},17770:e=>{e.exports={en:["forex"],es:["Forex"]}},4723:e=>{e.exports={en:["futures"],es:["futuros"]}},87464:e=>{e.exports={en:["index"],es:["índice"]}},90250:e=>{e.exports={en:["indices"],es:["índices"]}},76752:e=>{e.exports={en:["stock"],es:["acciones"]}},94521:e=>{e.exports={en:["sync drawings"],es:["sincronizar dibujos"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],es:["{hotKey_0} + Clic en el gráfico"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],es:["{hotKey_0}: círculo"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],es:["{hotKey_0}: dibujar una línea recta en ángulos de 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],es:["{hotKey_0}: incrementos fijos"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],es:["{hotKey_0}: cuadrado"]}}}]);
|
||||
4
charting_library/bundles/es.4211.932ffa2dc04657916b72.js
Normal file
4
charting_library/bundles/es.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],es:["Punto"]}},41256:e=>{e.exports={en:["Back"],es:["Atrás"]}},53174:e=>{e.exports={en:["Right"],es:["Right (derecho de suscripción)"]}},57e3:e=>{e.exports={en:["Compare"],es:["Comparar"]}},93111:e=>{e.exports={en:["Content"],es:["Contenido"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],es:["Copiar el enlace a la imagen del gráfico"]}},4543:e=>{e.exports={en:["Cancel"],es:["Cancelar"]}},59934:e=>{e.exports={en:["Channels"],es:["Canales"]}},63245:e=>{e.exports={en:["Change symbol"],es:["Cambiar símbolo"]}},56281:e=>{e.exports={en:["Chart style Columns"],es:["Estilo de gráfico: Columnas"]}},64526:e=>{e.exports={en:["Chart style Candles"],es:["Estilo de gráfico: Velas"]}},9537:e=>{e.exports={en:["Chart style Area"],es:["Estilo de gráfico: Área"]}},19265:e=>{e.exports={en:["Chart style Bars"],es:["Estilo de gráfico: Barras"]}},19579:e=>{e.exports={en:["Chart style Baseline"],es:["Estilo de gráfico: Línea de referencia"]}},47189:e=>{e.exports={en:["Chart style Kagi"],es:["Estilo de gráfico: Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],es:["Estilo de gráfico: Área HLC"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],es:["Estilo de gráfico: Velas huecas"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],es:["Estilo de gráfico: Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],es:["Estilo de gráfico: Mín-max"]}},92911:e=>{e.exports={en:["Chart style Line"],es:["Estilo de gráfico: Línea"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],es:["Estilo de gráfico: Línea con marcadores"]}},11604:e=>{e.exports={en:["Chart style Line break"],es:["Estilo de gráfico: Ruptura de línea"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],es:["Estilo de gráfico de Perfil de volumen de la sesión"]}},40447:e=>{e.exports={en:["Chart style Step line"],es:["Estilo de gráfico: Línea de pasos"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],es:["Estilo de gráfico: Punto y figura"]}},49942:e=>{e.exports={en:["Chart style Range"],es:["Estilo de gráfico: Rango"]}},80082:e=>{e.exports={en:["Chart style Renko"],es:["Estilo de gráfico: Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],es:["Estilo de gráfico: Oportunidad de precios en el tiempo"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],es:["Estilo de gráfico: Velas de volumen"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],es:["Estilo de gráfico Huella (footprint) de volumen"]}},53438:e=>{e.exports={en:["Chart template"],es:["Plantilla de gráfico"]}},47742:e=>{e.exports={en:["Close menu"],es:["Cerrar menú"]}},81578:e=>{e.exports={en:["Cursors"],es:["Cursores"]}},77915:e=>{e.exports={en:["Cycles"],es:["Ciclos"]}},32064:e=>{e.exports={en:["Annotation tools"],es:["Herramientas de anotación"]}},69207:e=>{e.exports={en:["Add to favorites"],es:["Añadir a favoritos"]}},34040:e=>{e.exports={
|
||||
en:["All sources"],es:["Todas las fuentes"]}},19147:e=>{e.exports={en:["Arrows"],es:["Flechas"]}},42358:e=>{e.exports={en:["Bond"],es:["Bono"]}},65695:e=>{e.exports={en:["Brushes"],es:["Pinceles"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],es:["Herramientas Gann y Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],es:["Figuras geométricas"]}},57157:e=>{e.exports={en:["Dot"],es:["Punto"]}},25848:e=>{e.exports={en:["Dark theme"],es:["Modo oscuro"]}},14939:e=>{e.exports={en:["Demonstration"],es:["Demostración"]}},78734:e=>{e.exports={en:["Description"],es:["Descripción"]}},74385:e=>{e.exports={en:["Drawings"],es:["Dibujos"]}},44255:e=>{e.exports={en:["Elliott waves"],es:["Ondas de Elliott"]}},8727:e=>{e.exports={en:["Eraser"],es:["Borrador"]}},93308:e=>{e.exports={en:["Extended session"],es:["Sesión con horario ampliado"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],es:["Herramientas de previsión y medida"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],es:["Modo pantalla completa"]}},83576:e=>{e.exports={en:["Function"],es:["Función"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],es:["Mantenga pulsada {hotKey_0} para dibujar temporalmente"]}},27077:e=>{e.exports={en:["Open Object Tree"],es:["Abrir Árbol de objetos"]}},7386:e=>{e.exports={en:["Open chart layout"],es:["Abrir el diseño del gráfico"]}},79451:e=>{e.exports={en:["Lock all drawings"],es:["Bloquear todos los dibujos"]}},35112:e=>{e.exports={en:["Move chart back"],es:["Mover el gráfico hacia atrás"]}},12754:e=>{e.exports={en:["Move chart forward"],es:["Mover el gráfico hacia adelante"]}},37117:e=>{e.exports={en:["More"],es:["Más"]}},35553:e=>{e.exports={en:["Magic"],es:["Magia"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],es:["El modo Magnet acerca los dibujos próximos a las barras de precios, al valor más cercano OHLC"]}},81031:e=>{e.exports={en:["Manage layout drawings"],es:["Gestionar los dibujos de los diseños"]}},91563:e=>{e.exports={en:["Measure"],es:["Medida"]}},97050:e=>{e.exports={en:["Measurer"],es:["Medidor"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],es:["Agrupar todas las escalas a la izquierda"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],es:["Agrupar todas las escalas a la derecha"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],es:["No hay mercados de valores que coincidan con sus criterios."]}},76822:e=>{e.exports={en:["No symbols match your criteria"],es:["Ningún símbolo coincide con sus criterios"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],es:["Nada que coincida con sus criterios"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],es:["Los nuevos dibujos se reproducen en todos los gráficos y se muestran cuando se selecciona el mismo ticker"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],
|
||||
es:["Los nuevos dibujos se sincronizarán globalmente"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],es:["Las nuevas plantillas se sincronizarán en la plantilla"]}},28628:e=>{e.exports={en:["Sources"],es:["Fuentes"]}},41569:e=>{e.exports={en:["Save chart layout"],es:["Guardar diseño de gráfico"]}},8573:e=>{e.exports={en:["Search"],es:["Buscar"]}},79354:e=>{e.exports={en:["Search tool or function"],es:["Buscar una herramienta o función"]}},57640:e=>{e.exports={en:["Select source"],es:["Seleccionar fuente"]}},65781:e=>{e.exports={en:["Shapes"],es:["Figuras"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],es:["Mostrar herramientas ocultas"]}},85786:e=>{e.exports={en:["Show Object Tree"],es:["Mostrar árbol de objetos"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],es:["Permanecer en modo dibujo"]}},94593:e=>{e.exports={en:["Strong Magnet"],es:["Imán fuerte"]}},95481:e=>{e.exports={en:["Symbol"],es:["Símbolo"]}},74007:e=>{e.exports={en:["Symbol & description"],es:["Símbolo y descripción"]}},51165:e=>{e.exports={en:["Symbol Search"],es:["Búsqueda de símbolos"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],es:["Sincronizar dibujos en todos los gráficos"]}},46417:e=>{e.exports={en:["Patterns"],es:["Patrones"]}},36167:e=>{e.exports={en:["Pitchforks"],es:["Tridentes"]}},79366:e=>{e.exports={en:["Previous day close price line"],es:["Línea con el precio de cierre del día anterior"]}},76753:e=>{e.exports={en:["Recent search"],es:["Busqueda reciente"]}},28051:e=>{e.exports={en:["Regular session"],es:["Sesión ordinaria"]}},57118:e=>{e.exports={en:["Remove Drawings"],es:["Eliminar dibujos"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],es:["Eliminar todas las herramientas de dibujo e indicadores"]}},96374:e=>{e.exports={en:["Remove drawings"],es:["Eliminar dibujos"]}},85106:e=>{e.exports={en:["Remove from favorites"],es:["Eliminar de favoritos"]}},99984:e=>{e.exports={en:["Remove indicators"],es:["Eliminar Indicadores"]}},38206:e=>{e.exports={en:["Rename chart layout"],es:["Cambiar el nombre del diseño del gráfico"]}},31789:e=>{e.exports={en:["Reset chart"],es:["Restablecer gráfico"]}},3519:e=>{e.exports={en:["Weak Magnet"],es:["Imán débil"]}},65831:e=>{e.exports={en:["Text & Notes"],es:["Texto y notas"]}},48773:e=>{e.exports={en:["Trend line tools"],es:["Herramientas de líneas de tendencia"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],es:["Busque herramientas de dibujo, funciones y configuraciones"]}},69260:e=>{e.exports={en:["Volume-based"],es:["Basado en volumen"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],es:["Está cambiando la interfaz de usuario al esquema {name}. ¿Le gustaría cambiar el esquema de la plantilla del gráfico también?"]}},55774:e=>{e.exports={en:["Zoom In"],es:["Aumentar"]}},37310:e=>{e.exports={en:["Zoom Out"],es:["Alejar"]}},70932:e=>{e.exports={en:["commodity"],es:["materia prima"]}},79599:e=>{e.exports={en:["cfd"]}},
|
||||
13489:e=>{e.exports={en:["change ideas visibility on chart"],es:["cambiar la visibilidad de las ideas en el gráfico"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],es:["cambiar la visibilidad de las etiquetas con el nombre de los indicadores y de la información financiera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],es:["cambiar la visibilidad de las etiquetas con el valor de los indicadores y la información financiera"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],es:["cambiar la visibilidad de las líneas de precios pre/pos mercado"]}},46128:e=>{e.exports={en:["crypto"],es:["cripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],es:["economía"]}},17770:e=>{e.exports={en:["forex"],es:["Forex"]}},4723:e=>{e.exports={en:["futures"],es:["futuros"]}},87464:e=>{e.exports={en:["index"],es:["índice"]}},90250:e=>{e.exports={en:["indices"],es:["índices"]}},76752:e=>{e.exports={en:["stock"],es:["acciones"]}},94521:e=>{e.exports={en:["sync drawings"],es:["sincronizar dibujos"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],es:["{hotKey_0} + Clic en el gráfico"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],es:["{hotKey_0}: círculo"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],es:["{hotKey_0}: dibujar una línea recta en ángulos de 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],es:["{hotKey_0}: incrementos fijos"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],es:["{hotKey_0}: cuadrado"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],es:["Oscuro"]}},96870:e=>{e.exports={en:["Light"],es:["Claro"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],es:["Copia {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],es:["S"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],es:["Color de nivel -0,236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],es:["Color de nivel -0,382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],es:["Color de nivel -0,618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],es:["Color de nivel -0,65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],es:["Color de nivel 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],es:["Color de nivel 0,236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],es:["Color de nivel 0,382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],es:["Color de nivel 0,5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],es:["Color de nivel 0,618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],es:["Color de nivel 0,65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],es:["Color de nivel 0,786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],es:["Color de nivel 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],es:["Color de nivel 1,272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],es:["Color de nivel 1,414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],es:["Color de nivel 1,618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],es:["Color de nivel 1,65"]},e.exports["1st Period_input"]={en:["1st Period"],es:["Primer periodo"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],es:["Color de nivel 2,618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],es:["Color de nivel 2,65"]},e.exports["2nd Period_input"]={en:["2nd Period"],es:["Segundo periodo"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],es:["Color de nivel 3,618"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],es:["Color de nivel 3,65"]},
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],es:["Oscuro"]}},96870:e=>{e.exports={en:["Light"],es:["Claro"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],es:["Copia {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],es:["S"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],es:["Color de nivel -0,236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],es:["Color de nivel -0,382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],es:["Color de nivel -0,618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],es:["Color de nivel -0,65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],es:["Color de nivel 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],es:["Color de nivel 0,236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],es:["Color de nivel 0,382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],es:["Color de nivel 0,5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],es:["Color de nivel 0,618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],es:["Color de nivel 0,65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],es:["Color de nivel 0,786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],es:["Color de nivel 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],es:["Color de nivel 1,272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],es:["Color de nivel 1,414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],es:["Color de nivel 1,618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],es:["Color de nivel 1,65"]},e.exports["1st Period_input"]={en:["1st Period"],es:["Primer periodo"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],es:["Color de nivel 2,618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],es:["Color de nivel 2,65"]},e.exports["2nd Period_input"]={en:["2nd Period"],es:["Segundo periodo"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],es:["Color de nivel 3,618"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],es:["Color de nivel 3,65"]},
|
||||
e.exports["3rd Period_input"]={en:["3rd Period"],es:["Tercer periodo"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],es:["Color de nivel 4,236"]},e.exports["4th Period_input"]={en:["4th Period"],es:["Cuarto periodo"]},e.exports["5th Period_input"]={en:["5th Period"],es:["Quinto periodo"]},e.exports["6th Period_input"]={en:["6th Period"],es:["Sexto periodo"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],es:["ADX suavizado"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],es:["ADX suavizado"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"],es:["Rango verdadero medio (ATR) mult"]},e.exports["ATR length_input"]={en:["ATR length"],es:["Longitud del Rango verdadero medio (ATR)"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],es:["Acumulación/distribución"]},e.exports["All items_combobox_input"]={en:["All items"],es:["Todos los elementos"]},e.exports.All_input={en:["All"],es:["Todo"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],es:["Periodo de referencia"]},e.exports["Another symbol_input"]={en:["Another symbol"],es:["Otro símbolo"]},e.exports["Aroon Down_input"]={en:["Aroon Down"],es:["Aroon abajo (Aroon Down)"]},e.exports["Aroon Up_input"]={en:["Aroon Up"],es:["Aroon arriba (Aroon Up)"]},e.exports.Average_input={en:["Average"],es:["Media"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],es:["Períodos del promedio"]},e.exports.Back_input={en:["Back"],es:["Atrás"]},e.exports["Bands style_input"]={en:["Bands style"],es:["Estilo de bandas"]},e.exports.Bar_input={en:["Bar"],es:["Barra"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],es:["Períodos de la línea de referencia"]},e.exports["Base Line_input"]={en:["Base Line"],es:["Línea de referencia"]},e.exports.Basis_input={en:["Basis"],es:["Base"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],es:["Bandas de Bollinger %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],es:["Ancho de las bandas de Bollinger"]},e.exports.Borders_input={en:["Borders"],es:["Bordes"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],es:["Método de asignación del tamaño del recuadro"]},e.exports["Box size_input"]={en:["Box size"],es:["Tamaño del recuadro"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"],es:["Cancelar"]},e.exports.Candles_input={en:["Candles"],es:["Velas"]},e.exports.Centered_input={en:["Centered"],es:["Centrado"]},e.exports.Century_input={en:["Century"],es:["Siglo"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],es:["Oscilador de Chaikin"]},e.exports["Chande MO_input"]={en:["Chande MO"],es:["Oscilador de momento de Chande"]},e.exports.Close_input={en:["Close"],es:["Cierre"]},e.exports["Color 0_input"]={en:["Color 0"]},e.exports["Color 1_input"]={en:["Color 1"]},
|
||||
e.exports["Color 2_input"]={en:["Color 2"]},e.exports["Color 3_input"]={en:["Color 3"]},e.exports["Color 4_input"]={en:["Color 4"]},e.exports["Color 5_input"]={en:["Color 5"]},e.exports["Color 6_input"]={en:["Color 6"]},e.exports["Color 7_input"]={en:["Color 7"]},e.exports["Color 8_input"]={en:["Color 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],es:["Barras de colores en función del cierre anterior"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],es:["Color basado en el cierre anterior"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],es:["Períodos de la línea de conversión"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],es:["Línea de conversión"]},e.exports.Correlation_input={en:["Correlation"],es:["Correlación"]},e.exports.Count_input={en:["Count"],es:["Recuento"]},e.exports.Crosses_input={en:["Crosses"],es:["Cruces"]},e.exports.Custom_input={en:["Custom"],es:["Personalizado"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],es:["Longitud DI"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],es:["Día"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],es:["Días por año"]},e.exports.Decade_input={en:["Decade"],es:["Década"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"],es:["Profundidad"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"],es:["Oscilador de precio sin tendencia"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],es:["Desarrollar Poc"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],es:["Desviación (%)"]},e.exports.Deviation_input={en:["Deviation"],es:["Desviación"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"],es:["Volumen descendente"]},e.exports["Down bars_input"]={en:["Down bars"],es:["Barras descendentes"]},e.exports["Down color_input"]={en:["Down color"],es:["Color descendente"]},e.exports["Down fractals_input"]={en:["Down fractals"],es:["Fractales bajistas"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],es:["Todas (premercado, mercado, posmercado)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],es:["Índice de fuerza de Elder"]},e.exports["Equality Line_input"]={en:["Equality Line"],es:["Línea de igualdad"]},e.exports.Exponential_input={en:["Exponential"],es:["Exponencial"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"],es:["Ampliar POC a la derecha"]},e.exports["Extend Right_input"]={en:["Extend Right"],es:["Ampliar a la derecha"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],es:["Ampliar límite superior de la zona de valor (VAH) a la derecha"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],es:["Ampliar límite inferior de la zona de valor (VAL) a la derecha"]},
|
||||
e.exports["Extend to last bar_input"]={en:["Extend to last bar"],es:["Ampliar hasta la última barra"]},e.exports.Falling_input={en:["Falling"],es:["Descendente"]},e.exports["Fast Length_input"]={en:["Fast Length"],es:["Longitud rápida"]},e.exports["Fast length_input"]={en:["Fast length"],es:["Longitud rápida"]},e.exports.Fill_input={en:["Fill"],es:["Cumplimentar"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],es:["Creciendo"]},e.exports["HLC bars_input"]={en:["HLC bars"],es:["Barras HLC"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],es:["Recuadro del histograma"]},e.exports.Histogram_input={en:["Histogram"],es:["Histograma"]},e.exports["Hull MA_input"]={en:["Hull MA"],es:["MV de Hull"]},e.exports.Increment_input={en:["Increment"],es:["Incremento"]},e.exports.Indicator_input={en:["Indicator"],es:["Indicador"]},e.exports["Instrument 1_input"]={en:["Instrument 1"],es:["Instrumento 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"],es:["Instrumento 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],es:["Período EMA 1 para inversores"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],es:["Período EMA 2 para inversores"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],es:["Período EMA 3 para inversores"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],es:["Período EMA 4 para inversores"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],es:["Período EMA 5 para inversores"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],es:["Período EMA 6 para inversores"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],es:["Longitud de la mandíbula"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"],es:["Jaw Offset (mandíbula)"]},e.exports.Jaw_input={en:["Jaw"],es:["Mandíbula"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],es:["Posición de las etiquetas"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],es:["Etiquetas en la escala de precios"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],es:["Períodos de intervalo de retardo"]},e.exports["Lagging Span_input"]={en:["Lagging Span"],es:["Tramo de desfase"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],es:["Períodos de cambios significativos"]},e.exports["Leading Span A_input"]={en:["Leading Span A"]},e.exports["Leading Span B_input"]={en:["Leading Span B"],es:["Período principal B (Leading Span B)"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],es:["Periodos Leading Span"]},e.exports["Length EMA_input"]={en:["Length EMA"],es:["Longitud EMA"]},e.exports["Length MA_input"]={en:["Length MA"],es:["Longitud MA"]},e.exports.Length1_input={en:["Length1"],es:["Longitud1"]},e.exports.Length2_input={en:["Length2"],es:["Longitud2"]},e.exports.Length3_input={en:["Length3"],es:["Longitud3"]},
|
||||
@@ -30,31 +30,31 @@ e.exports={en:["Candles"],es:["Velas"]}},30948:e=>{e.exports={en:["Caracas"]}},7
|
||||
e.exports={en:["Anchored VWAP"],es:["Precio medio ponderado por volumen (VWAP) anclado"]}},77401:e=>{e.exports={en:["Access error"],es:["Error de acceso"]}},46501:e=>{e.exports={en:["Add Symbol"],es:["Añadir símbolo"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],es:["Añadir métricas financieras en {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],es:["Añadir indicador/estrategia en {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],es:["Aplicar estos parámetros financieros a todo el diseño"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],es:["Añadir esta métrica financiera a favoritos"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],es:["Añadir este indicador a todo el diseño"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],es:["Añadir este indicador a favoritos"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],es:["Añadir esta estrategia a todo el diseño"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],es:["Añadir este símbolo a todo el diseño"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],es:["Siempre invisible"]}},36299:e=>{e.exports={en:["Always visible"],es:["Siempre visible"]}},58026:e=>{e.exports={en:["All intervals"],es:["Todos los intervalos"]}},78358:e=>{e.exports={en:["Apply default"],es:["Aplicar configuración por defecto"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],es:["Aplicar estos indicadores a todo el diseño"]}},27072:e=>{e.exports={en:["Apr"],es:["Abr"]}},59324:e=>{e.exports={en:["Arc"],es:["Arco"]}},34456:e=>{e.exports={en:["Area"],es:["Área"]}},11858:e=>{e.exports={en:["Arrow"],es:["Flecha"]}},34247:e=>{e.exports={en:["Arrow Down"],es:["Flecha descendente"]}},36352:e=>{e.exports={en:["Arrow Marker"],es:["Marcador de flecha"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],es:["Marca de la flecha descendente"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],es:["Marca de la flecha hacia la izquierda"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],es:["Marca de la flecha hacia la derecha"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],es:["Marca de la flecha hacia arriba"]}},77231:e=>{e.exports={en:["Arrow Up"],es:["Flecha hacia rriba"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],es:["Asjabad"]}},72445:e=>{e.exports={en:["At close"],es:["Al cierre"]}},73702:e=>{e.exports={en:["Athens"],es:["Atenas"]}},21469:e=>{e.exports={en:["Auto"],es:["Automático"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],es:["Automático (adapta los datos a la pantalla)"]}},46450:e=>{e.exports={en:["Aug"],es:["Ago"]}},21841:e=>{e.exports={en:["Average close price label"],es:["Etiqueta del precio medio de cierre"]}},16138:e=>{e.exports={en:["Average close price line"],es:["Línea con el precio medio de cierre"]}},73025:e=>{e.exports={en:["Avg"],es:["Promedio"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"],
|
||||
es:["Bogotá"]}},90594:e=>{e.exports={en:["Bahrain"],es:["Bahrein"]}},70540:e=>{e.exports={en:["Balloon"],es:["Globo"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],es:["La Reproducción de barras no está disponible para este tipo de gráfico. ¿Desea salir de la Reproducción de barras?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],es:["La Reproducción de barras no está disponible para este símbolo. ¿Desea salir de la Reproducción de barras?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],es:["La Reproducción de barras no está disponible para este intervalo de tiempo. ¿Desea salir de la Reproducción de barras?"]}},27377:e=>{e.exports={en:["Bars"],es:["Barras"]}},81994:e=>{e.exports={en:["Bars Pattern"],es:["Patrón de barras"]}},59213:e=>{e.exports={en:["Baseline"],es:["Línea de referencia"]}},71797:e=>{e.exports={en:["Belgrade"],es:["Belgrado"]}},64313:e=>{e.exports={en:["Berlin"],es:["Berlín"]}},43539:e=>{e.exports={en:["Brush"],es:["Pincel"]}},91499:e=>{e.exports={en:["Brussels"],es:["Bruselas"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],es:["Traer hacia delante"]}},17293:e=>{e.exports={en:["Bring to front"],es:["Traer al frente"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"],es:["Bucarest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],es:["Por TradingView"]}},54280:e=>{e.exports={en:["Go to date"],es:["Ir a la fecha"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],es:["Vaya a {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],es:["Entendido"]}},47460:e=>{e.exports={en:["Gann Box"],es:["Cuadrícula de Gann"]}},48683:e=>{e.exports={en:["Gann Fan"],es:["Abanico de Gann"]}},44763:e=>{e.exports={en:["Gann Square"],es:["Cuadrado de Gann"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],es:["Cuadrado de Gann fijo"]}},46808:e=>{e.exports={en:["Ghost Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"],es:["Gran superciclo"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"],es:["¿Está seguro de que quiere borrar la plantilla de indicadores '{name}'?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],es:["¿Está seguro de que desea eliminar el estudio y todos sus hijos?"]}},77125:e=>{e.exports={en:["Double Curve"],es:["Doble curva"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],es:["Haga doble clic en cualquiera de los bordes para restablecer la cuadrícula de la plantilla"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],es:["Haga doble clic para finalizar la Ruta (Path)"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],es:["Haga doble clic para finalizar la polilínea"]}},36539:e=>{e.exports={
|
||||
en:["Double-tap any edge to reset layout grid"],es:["Tocar dos veces cualquier borde para restablecer la cuadrícula de diseño"]}},57131:e=>{e.exports={en:["Data Provided by"],es:["Datos proporcionados por"]}},22677:e=>{e.exports={en:["Date"],es:["Fecha"]}},85444:e=>{e.exports={en:["Date Range"],es:["Rango de fechas"]}},47017:e=>{e.exports={en:["Date and Price Range"],es:["Rango de fecha y precio"]}},32084:e=>{e.exports={en:["Dec"],es:["Dic"]}},23403:e=>{e.exports={en:["Degree"],es:["Grado"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],es:["Diamante"]}},91544:e=>{e.exports={en:["Disjoint Channel"],es:["Canal disjunto"]}},70132:e=>{e.exports={en:["Displacement"],es:["Desplazamiento"]}},93864:e=>{e.exports={en:["Drawings toolbar"],es:["Barra de herramientas de dibujos"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],es:["Dibujar línea horizontal en {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"],es:["Dublín"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],es:["Introduzca un nuevo nombre para el diseño del gráfico"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],es:["Onda correctiva de Elliott (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],es:["Onda de Elliott de doble combinación (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],es:["Onda de impulso de Elliott (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],es:["Onda triangular de Elliott (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],es:["Onda de Elliott de triple combinación (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],es:["Elipse"]}},52788:e=>{e.exports={en:["Extended Line"],es:["Línea extendida"]}},86905:e=>{e.exports={en:["Exchange"],es:["Mercado bursátil"]}},19271:e=>{e.exports={en:["Existing pane above"],es:["Panel existente arriba"]}},46545:e=>{e.exports={en:["Existing pane below"],es:["Panel existente debajo"]}},20138:e=>{e.exports={en:["Forecast"],es:["Previsión"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],es:["Canal de Fibonacci"]}},82330:e=>{e.exports={en:["Fib Circles"],es:["Círculos de Fibonacci"]}},55986:e=>{e.exports={en:["Fib Retracement"],es:["Retroceso de Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],es:["Arcos de Fibonacci de resistencia de velocidad"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],es:["Abanico de Fibonacci de resistencia de velocidad"]}},39014:e=>{e.exports={en:["Fib Spiral"],es:["Espiral de Fibonacci"]}},30622:e=>{e.exports={en:["Fib Time Zone"],es:["Zona horaria de Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],es:["Cuña de Fibonacci"]}},33885:e=>{e.exports={en:["Flag"],es:["Bandera"]}},14600:e=>{e.exports={en:["Flag Mark"],es:["Marca con bandera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],es:["Plano superior/inferior"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],
|
||||
es:["La parte de la fracción no es correcta."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],es:["Ya no se encuentran disponible los estudios fundamentales en los gráficos."]}},31561:e=>{e.exports={en:["Kolkata"],es:["Calcuta"]}},54533:e=>{e.exports={en:["Kathmandu"],es:["Katmandú"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],es:["Área HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],es:["Velas huecas"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],es:["Línea horizontal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],es:["Rayo horizontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],es:["Cabeza y hombros"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],es:["Ocultar"]}},47074:e=>{e.exports={en:["Hide all"],es:["Ocultar todo"]}},52563:e=>{e.exports={en:["Hide all drawings"],es:["Ocultar todos los dibujos"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],es:["Ocultar todos los dibujos e indicadores"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],es:["Ocultar todos los dibujos, indicadores, posiciones y órdenes"]}},78525:e=>{e.exports={en:["Hide all indicators"],es:["Ocultar todos los indicadores"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],es:["Ocultar todas las posiciones y órdenes"]}},3217:e=>{e.exports={en:["Hide drawings"],es:["Ocultar dibujos"]}},97878:e=>{e.exports={en:["Hide events on chart"],es:["Ocultar eventos en el gráfico"]}},72351:e=>{e.exports={en:["Hide indicators"],es:["Ocultar indicadores"]}},28345:e=>{e.exports={en:["Hide marks on bars"],es:["Ocultar marcadores en las barras"]}},92226:e=>{e.exports={en:["Hide positions & orders"],es:["Ocultar posiciones y órdenes"]}},78254:e=>{e.exports={en:["High"],es:["Máximo"]}},98236:e=>{e.exports={en:["High-low"],es:["Máximo-mínimo"]}},99479:e=>{e.exports={en:["High and low price labels"],es:["Etiquetas de precios máximos y mínimos"]}},33766:e=>{e.exports={en:["High and low price lines"],es:["Líneas de precios máximos y mínimos"]}},69476:e=>{e.exports={en:["Highlighter"],es:["Resaltador"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],es:["El histograma es demasiado grande, aumente el {boldHighlightStart}Tamaño de la fila{boldHighlightEnd} en la ventana de configuración."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],es:["El histograma es demasiado grande, aumente los {boldHighlightStart}Ticks por fila{boldHighlightEnd} en la ventana de configuración."]}},66751:e=>{e.exports={
|
||||
en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],es:["El histograma es demasiado grande, reduzca el {boldHighlightStart}Tamaño de la fila{boldHighlightEnd} en la ventana de configuración."]}},68065:e=>{e.exports={en:["Image"],es:["Imagen"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],es:["No se admiten los intervalos inferiores a {resolution} para {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],es:["Intermediario"]}},14285:e=>{e.exports={en:["Invalid Symbol"],es:["Símbolo incorrecto"]}},52969:e=>{e.exports={en:["Invalid symbol"],es:["Símbolo incorrecto"]}},37189:e=>{e.exports={en:["Invert scale"],es:["Invertir escala"]}},89999:e=>{e.exports={en:["Indexed to 100"],es:["Indexado a 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],es:["Etiquetas con los valores de los indicadores"]}},54418:e=>{e.exports={en:["Indicators name labels"],es:["Etiquetas con los nombres de los indicadores"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],es:["Indicadores, métricas y estrategias. Pulsar la tecla de la barra"]}},15992:e=>{e.exports={en:["Info Line"],es:["Línea de información"]}},87829:e=>{e.exports={en:["Insert indicator"],es:["Añadir indicador"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],es:["Tridente interno"]}},37913:e=>{e.exports={en:["Icon"],es:["Icono"]}},78326:e=>{e.exports={en:["Istanbul"],es:["Estambul"]}},39585:e=>{e.exports={en:["Johannesburg"],es:["Johanesburgo"]}},14995:e=>{e.exports={en:["Jakarta"],es:["Yakarta"]}},62310:e=>{e.exports={en:["Jan"],es:["Ene"]}},36057:e=>{e.exports={en:["Jerusalem"],es:["Jerusalén"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],es:["A la izquierda"]}},55813:e=>{e.exports={en:["On the right"],es:["A la derecha"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],es:["Solo se admiten intervalos {availableResolutions} para {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],es:["¡Vaya!"]}},51221:e=>{e.exports={en:["Object Tree"],es:["Árbol de objetos"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"],es:["Apertura"]}},27884:e=>{e.exports={en:["Open layout. Press period"],es:["Abrir diseño. Pulsar punto"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],es:["Mínimo"]}},51077:e=>{e.exports={en:["Lock"],es:["Bloquear"]}},79777:e=>{e.exports={en:["Lock/unlock"],es:["Bloquear/Desbloquear"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],es:["Bloquear la línea vertical del cursor por tiempo"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],es:["Bloquear la relación precio/barra"]}},16170:e=>{e.exports={en:["Logarithmic"],es:["Logarítmico"]}},19439:e=>{e.exports={en:["London"],es:["Londres"]}},74832:e=>{e.exports={en:["Long Position"],es:["Posición larga"]}},28733:e=>{e.exports={en:["Los Angeles"],es:["Los Ángeles"]}},85924:e=>{
|
||||
e.exports={en:["Label Down"],es:["Etiqueta descendente"]}},52402:e=>{e.exports={en:["Label Up"],es:["Etiqueta ascendente"]}},5119:e=>{e.exports={en:["Labels"],es:["Etiquetas"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],es:["Cambio del último día"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],es:["Línea"]}},9394:e=>{e.exports={en:["Line with markers"],es:["Línea con marcadores"]}},43588:e=>{e.exports={en:["Line break"],es:["Ruptura de línea"]}},56982:e=>{e.exports={en:["Lines"],es:["Líneas"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],es:["Enlace a la imagen del gráfico copiado al portapapeles {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],es:["Lisboa"]}},81038:e=>{e.exports={en:["Luxembourg"],es:["Luxemburgo"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],es:["Mueva el punto para posicionar el anclaje y después, toque para colocar"]}},35049:e=>{e.exports={en:["Move to"],es:["Mover a"]}},26493:e=>{e.exports={en:["Move scale to left"],es:["Mover escala hacia la izquierda"]}},40789:e=>{e.exports={en:["Move scale to right"],es:["Mover escala hacia la derecha"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],es:["Tridente de Schiff modificado"]}},93907:e=>{e.exports={en:["More settings"],es:["Más ajustes"]}},64039:e=>{e.exports={en:["Moscow"],es:["Moscú"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"],es:["Ciudad de Mexico"]}},88314:e=>{e.exports={en:["Merge all scales into one"],es:["Combinar todas las escalas en una"]}},54215:e=>{e.exports={en:["Mixed"],es:["Mixto"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"],es:["Minúsculo"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"],es:["No disponible"]}},36252:e=>{e.exports={en:["No data here"],es:["Aquí no hay datos"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],es:["Sin escala (pantalla completa)"]}},9140:e=>{e.exports={en:["No sync"],es:["No sincronizar"]}},50910:e=>{e.exports={en:["No volume data"],es:["Sin datos sobre el volumen"]}},99024:e=>{e.exports={en:["No, keep them"],es:["No, guárdelos"]}},94389:e=>{e.exports={en:["Note"],es:["Nota"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],es:["Isla de Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"],es:["Nueva York"]}},66103:e=>{e.exports={en:["New Zealand"],es:["Nueva Zelanda"]}},15512:e=>{e.exports={en:["New pane above"],es:["Nuevo panel superior"]}},52160:e=>{e.exports={en:["New pane below"],es:["Nuevo panel inferior"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],es:["Algo ha fallado"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],
|
||||
es:["Algo ha ido mal al crear el indicador."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],es:["Algo ha fallado. Rogamos vuelva a intentarlo más tarde."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],es:["Guardar nuevo diseño de gráfico"]}},76266:e=>{e.exports={en:["Save as"],es:["Guardar como"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],es:["Moneda de escala"]}},43758:e=>{e.exports={en:["Scale price chart only"],es:["Solo gráfico de precios a escala"]}},40012:e=>{e.exports={en:["Scale unit"],es:["Unidad de escala"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],es:["Tridente de Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],es:["Puede que no se actualice el script si abandona la página."]}},32514:e=>{e.exports={en:["Settings"],es:["Opciones de configuración"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],es:["La segunda parte de la fracción no es correcta"]}},75594:e=>{e.exports={en:["Security info"],es:["Información del valor"]}},21973:e=>{e.exports={en:["Send to back"],es:["Enviar al fondo"]}},71179:e=>{e.exports={en:["Send backward"],es:["Enviar hacia atrás"]}},26820:e=>{e.exports={en:["Seoul"],es:["Seúl"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"],es:["Sesión"]}},83298:e=>{e.exports={en:["Session volume profile"],es:["Perfil de volumen de la sesión"]}},66707:e=>{e.exports={en:["Session breaks"],es:["Ruptura de las sesiones"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],es:["Posición corta"]}},98334:e=>{e.exports={en:["Show"],es:["Mostrar"]}},85891:e=>{e.exports={en:["Show all drawings"],es:["Mostrar todos los dibujos"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],es:["Mostrar todos los dibujos e indicadores"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],es:["Mostrar todos los dibujos, indicadores, posiciones y órdenes"]}},98753:e=>{e.exports={en:["Show all indicators"],es:["Mostrar todos los indicadores"]}},55418:e=>{e.exports={en:["Show all ideas"],es:["Mostrar todas las ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"],es:["Mostrar todas las posiciones y órdenes"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],es:["Mostrar el cambio de contrato continuo"]}},81465:e=>{e.exports={en:["Show contract expiration"],es:["Mostrar el vencimiento del contrato"]}},29449:e=>{e.exports={en:["Show dividends"],es:["Mostrar dividendos"]}},37113:e=>{e.exports={en:["Show earnings"],es:["Mostrar beneficios"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],es:["Mostrar ideas de usuarios seguidos"]}},62986:e=>{e.exports={en:["Show latest news"],es:["Mostrar últimas noticias"]}},44020:e=>{e.exports={en:["Show my ideas only"],es:["Mostrar solo mis ideas"]}},50849:e=>{e.exports={en:["Show splits"],es:["Mostrar splits"]}},67751:e=>{e.exports={en:["Signpost"],
|
||||
es:["Señal"]}},77377:e=>{e.exports={en:["Singapore"],es:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"],es:["Línea del seno"]}},66205:e=>{e.exports={en:["Square"],es:["Cuadrado"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],es:["Se ha excedido el límite de estudios: {number} por diseño.\nElimine algunos estudios."]}},92516:e=>{e.exports={en:["Style"],es:["Estilo"]}},61507:e=>{e.exports={en:["Stack on the left"],es:["Apilar a la izquierda"]}},97800:e=>{e.exports={en:["Stack on the right"],es:["Apilar a la derecha"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],es:["Empiece a utilizar el modo de navegación por teclado. Pulse {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],es:["Permanecer en modo dibujo"]}},69217:e=>{e.exports={en:["Step line"],es:["Línea de pasos"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"],es:["Estocolmo"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"],es:["Submilenio"]}},30585:e=>{e.exports={en:["Subminuette"],es:["Subminutte"]}},67948:e=>{e.exports={en:["Supercycle"],es:["Superciclo"]}},3348:e=>{e.exports={en:["Supermillennium"],es:["Supermilenio"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],es:["Cambiar a {resolution}"]}},31622:e=>{e.exports={en:["Sydney"],es:["Sidney"]}},70963:e=>{e.exports={en:["Symbol Error"],es:["Error de símbolo"]}},32390:e=>{e.exports={en:["Symbol name label"],es:["Etiqueta con el nombre del símbolo"]}},10127:e=>{e.exports={en:["Symbol last price label"],es:["Etiqueta del símbolo con el último precio"]}},39079:e=>{e.exports={en:["Sync globally"],es:["Sincronizar globalmente"]}},46607:e=>{e.exports={en:["Sync in layout"],es:["Sincronizar en el diseño"]}},76519:e=>{e.exports={en:["Point & figure"],es:["Punto y figura"]}},39949:e=>{e.exports={en:["Polyline"],es:["Polilínea"]}},371:e=>{e.exports={en:["Path"],es:["Ruta (Path)"]}},59256:e=>{e.exports={en:["Parallel Channel"],es:["Canal paralelo"]}},61879:e=>{e.exports={en:["Paris"],es:["París"]}},35140:e=>{e.exports={en:["Paste"],es:["Pegar"]}},6919:e=>{e.exports={en:["Percent"],es:["Porcentaje"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"],es:["Tridente abanico o Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],es:["Tridente"]}},86631:e=>{e.exports={en:["Pin"],es:["Fijar"]}},33110:e=>{e.exports={en:["Pin to new left scale"],es:["Fijar a la nueva escala izquierda"]}},28280:e=>{e.exports={en:["Pin to new right scale"],es:["Fijar a la nueva escala derecha"]}},14115:e=>{e.exports={en:["Pin to left scale"],es:["Fijar a la escala izquierda"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],es:["Fijar a la escala izquierda (oculto)"]}},81054:e=>{e.exports={en:["Pin to right scale"],es:["Fijar a escala derecha"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],es:["Fijar a la escala derecha (oculto)"]}},60035:e=>{e.exports={
|
||||
en:["Pin to scale (now left)"],es:["Fijar a escala (ahora a la izquierda)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],es:["Fijar a escala (ahora sin escala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],es:["Fijar a escala (ahora a la derecha)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],es:["Fijar a la escala (ahora {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],es:["Fijar a escala {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],es:["Fijar a la escala {label} (oculto)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],es:["Fijado a la escala izquierda"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],es:["Fijado a la escala izquierda (oculto)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],es:["Fijado a la escala derecha"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],es:["Fijado a escala derecha (oculto)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],es:["Fijado a la escala {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],es:["Fijado a la escala {label} (oculto)"]}},71566:e=>{e.exports={en:["Plus button"],es:['Botón "más"']}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],es:["Por favor, denos permiso de escritura desde el portapapeles en su navegador o presione {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],es:["Praga"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],es:["Mantenga presionada la tecla {key} mientras hace zoom para mantener la posición del gráfico"]}},91282:e=>{e.exports={en:["Price Label"],es:["Etiqueta de precio"]}},97512:e=>{e.exports={en:["Price Note"],es:["Nota sobre precios"]}},68941:e=>{e.exports={en:["Price Range"],es:["Rango de precios"]}},66123:e=>{e.exports={en:["Price format is invalid."],es:["El formato del precio no es correcto."]}},72926:e=>{e.exports={en:["Price line"],es:["Línea de precios"]}},59189:e=>{e.exports={en:["Primary"],es:["Primario"]}},75747:e=>{e.exports={en:["Projection"],es:["Proyección"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],es:["Publicado en {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"],es:["T1"]}},13534:e=>{e.exports={en:["Q2"],es:["T2"]}},14530:e=>{e.exports={en:["Q3"],es:["T3"]}},3762:e=>{e.exports={en:["Q4"],es:["T4"]}},28756:e=>{e.exports={en:["Qatar"],es:["Catar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],es:["Búsqueda rápida. Pulsar {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],es:["Rectángulo rotado"]}},52961:e=>{e.exports={en:["Rome"],es:["Roma"]}},50318:e=>{e.exports={en:["Ray"],es:["Rayo"]}},55169:e=>{e.exports={en:["Range"],es:["Rango"]}},13386:e=>{e.exports={en:["Reykjavik"],es:["Reikiavik"]}},26001:e=>{e.exports={en:["Rectangle"],es:["Rectángulo"]}},48236:e=>{e.exports={en:["Redo"],es:["Repetir"]}},2460:e=>{e.exports={en:["Regression Trend"],es:["Tendencia de regresión"]}},67410:e=>{e.exports={en:["Remove"],es:["Eliminar"]}},
|
||||
3061:e=>{e.exports={en:["Remove this financial metric from favorites"],es:["Eliminar esta métrica financiera de favoritos"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],es:["Eliminar este indicador de favoritos"]}},86285:e=>{e.exports={en:["Remove {drawings}"],es:["Eliminar {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],es:["Eliminar {drawings} y {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],es:["Eliminar {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],es:["Cambiar el nombre del diseño del gráfico"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],es:["Restablecer visualización del gráfico"]}},88853:e=>{e.exports={en:["Reset points"],es:["Restablecer puntos"]}},15332:e=>{e.exports={en:["Reset price scale"],es:["Reiniciar escala de precios"]}},54170:e=>{e.exports={en:["Reset time scale"],es:["Reiniciar escala de tiempo"]}},37974:e=>{e.exports={en:["Riyadh"],es:["Riad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],es:["Error de ejecución"]}},66719:e=>{e.exports={en:["Warning"],es:["Advertencia"]}},5959:e=>{e.exports={en:["Warsaw"],es:["Varsovia"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],es:["Tokio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],es:["Tabla"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"],es:["Tallin"]}},6686:e=>{e.exports={en:["Tehran"],es:["Teherán"]}},93553:e=>{e.exports={en:["Template"],es:["Plantilla"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],es:["El proveedor de datos no proporciona datos sobre el volumen para este símbolo."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],es:["No se pudo cargar la vista previa de la publicación. Deshabilite las extensiones de su navegador y vuelva a intentarlo."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],es:["La solicitud ha tardado demasiado en procesarse. Asegúrese de que dispone de una conexión a Internet estable. Si el problema persiste, intente reducir la duración del intervalo de tiempo solicitado."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],es:["No hay datos para el período e intervalo de tiempo del gráfico que ha seleccionado."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],es:["Este archivo es demasiado grande. El tamaño máximo es de {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],es:["Este indicador no se puede aplicar a otro indicador."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],es:["Este script contiene un error. Póngase en contacto con su autor."]}},76989:e=>{
|
||||
e.exports={en:["This script is invite-only. To request access, please contact its author."],es:["Este script requiere invitación. Para solicitar acceso, póngase en contacto con su autor."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],es:["Símbolo solo disponible en {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],es:["Patrón Three Drives"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],es:["No se encuentran disponibles los intervalos basados en ticks para {ticker}."]}},12806:e=>{e.exports={en:["Time"],es:["Hora"]}},20909:e=>{e.exports={en:["Time zone"],es:["Zona horaria"]}},46852:e=>{e.exports={en:["Time Cycles"],es:["Ciclos de tiempo"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],es:["Oportunidad de precios en el tiempo"]}},66823:e=>{e.exports={en:["Trade"],es:["Operar"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],es:["Tradingview es interactiva y dispone de comandos que se pueden utilizar mediante un lector de pantalla. A continuación puede ver una lista de comandos de teclado disponibles para interactuar con la plataforma"]}},35757:e=>{e.exports={en:["Trend Angle"],es:["Ángulo de tendencia"]}},97339:e=>{e.exports={en:["Trend Line"],es:["Línea de tendencia"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],es:["Extensión de Fibonacci basada en tendencias"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],es:["Zona temporal de Fibonacci basada en tendencias"]}},1671:e=>{e.exports={en:["Triangle"],es:["Triángulo"]}},76152:e=>{e.exports={en:["Triangle Down"],es:["Triángulo descendente"]}},90148:e=>{e.exports={en:["Triangle Pattern"],es:["Patrón de triángulo"]}},21236:e=>{e.exports={en:["Triangle Up"],es:["Triángulo ascendente"]}},21007:e=>{e.exports={en:["Tunis"],es:["Túnez"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],es:["Deshacer"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],es:["Error inesperado en el modo Backtesting profundo. Póngase en contacto con el servicio de asistencia para obtener más información."]}},15432:e=>{e.exports={en:["Units"],es:["Unidades"]}},11768:e=>{e.exports={en:["Unknown error"],es:["Error desconocido"]}},99894:e=>{e.exports={en:["Unlock"],es:["Desbloquear"]}},75546:e=>{e.exports={en:["Unsupported interval"],es:["Intervalo no admitido"]}},8580:e=>{e.exports={en:["User-defined error"],es:["Error definido por el usuario"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],es:["Perfil de volumen con rango fijo (Volume Profile Fixed Range)"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],es:["Indicador de Perfil de volumen disponible únicamente para nuestros usuarios con planes ampliados."]}},93722:e=>{e.exports={en:["Volume candles"],es:["Velas de volumen"]}},69156:e=>{
|
||||
e.exports={en:["Volume data is not provided in BIST MIXED data plan."],es:["Los datos de volumen no están disponibles en el plan de datos BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],es:["Huella (footprint) de volumen"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],es:["Línea vertical"]}},23160:e=>{e.exports={en:["Vienna"],es:["Viena"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],es:["Visibilidad"]}},54853:e=>{e.exports={en:["Visibility on intervals"],es:["Visibilidad en los intervalos"]}},58302:e=>{e.exports={en:["Visible on tap"],es:["Visible al toque"]}},10309:e=>{e.exports={en:["Visible on mouse over"],es:["Visible al pasar el ratón"]}},4077:e=>{e.exports={en:["Visual order"],es:["Orden visual"]}},11316:e=>{e.exports={en:["X Cross"],es:["Cruz en X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],es:["Patrón XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],es:["No puede ver este intervalo de tiempo de puntos pivote con esta resolución"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],es:["Tiene dibujos bloqueados en este símbolo. ¿Desea eliminar también esto dibujos?"]}},53168:e=>{e.exports={en:["Yangon"],es:["Yangón"]}},93123:e=>{e.exports={en:["Yes, remove them"],es:["Sí, quítelos"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"],es:["cambiar el grado de Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],es:["cambiar las etiquetas no superpuestas"]}},76852:e=>{e.exports={en:["change average close price label visibility"],es:["cambiar la visibilidad de la etiqueta del precio medio de cierre"]}},1022:e=>{e.exports={en:["change average close price line visibility"],es:["cambiar la visibilidad de la línea del precio medio de cierre"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],es:["cambiar la visibilidad de las etiquetas de compra y venta (bid and ask)"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],es:["cambiar la visibilidad de las líneas de compra y venta (bid and ask)"]}},32302:e=>{e.exports={en:["change currency"],es:["cambiar divisa"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],es:["cambiar la plantilla del gráfico de {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],es:["cambiar la visibilidad del cambio de contrato continuo"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],es:["cambiar la visibilidad de la cuenta atrás del cierre de barra"]}},16979:e=>{e.exports={en:["change date range"],es:["cambiar el rango de fechas"]}},53929:e=>{e.exports={en:["change dividends visibility"],es:["cambiar la visibilidad de los dividendos"]}},6119:e=>{e.exports={en:["change events visibility on chart"],es:["cambiar la visibilidad de los eventos en el gráfico"]}},6819:e=>{e.exports={en:["change earnings visibility"],
|
||||
es:["cambiar la visibilidad de los beneficios"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],es:["cambiar visibilidad del vencimiento de los contratos de futuros"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],es:["cambiar la visibilidad de las etiquetas de precios máximos y mínimos"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],es:["cambiar la visibilidad de las líneas de precios máximos y mínimos"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],es:["cambiar la visibilidad de las etiquetas con los nombres de los indicadores"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],es:["cambiar la visibilidad de las etiquetas con el valor de los indicadores"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],es:["cambiar visibilidad últimas noticias y Pensamientos"]}},88849:e=>{e.exports={en:["change linking group"],es:["cambiar el grupo de enlace"]}},14691:e=>{e.exports={en:["change pane height"],es:["cambiar la altura del panel"]}},96379:e=>{e.exports={en:["change plus button visibility"],es:["cambiar la visibilidad del botón +"]}},76660:e=>{e.exports={en:["change point"],es:["cambiar el punto"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],es:["cambiar la visibilidad de la etiqueta de precios pre/pos mercado"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],es:["cambiar la visibilidad de la línea de precios pre/pos mercado"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],es:["cambiar la visibilidad de la línea de precios del cierre anterior"]}},8662:e=>{e.exports={en:["change price line visibility"],es:["cambiar la visibilidad de la línea con los precios"]}},2509:e=>{e.exports={en:["change price to bar ratio"],es:["cambiar la ratio precio/barra"]}},32829:e=>{e.exports={en:["change resolution"],es:["cambiar resolución"]}},35400:e=>{e.exports={en:["change symbol"],es:["cambiar símbolo"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],es:["cambiar la visibilidad de las etiquetas de símbolos"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],es:["cambiar la visibilidad del último valor de los símbolos"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],es:["cambiar la visibilidad con el valor del cierre anterior de los símbolos"]}},87041:e=>{e.exports={en:["change session"],es:["cambiar la sesión"]}},38413:e=>{e.exports={en:["change session breaks visibility"],es:["cambiar la visibilidad de las rupturas de las sesiones"]}},49965:e=>{e.exports={en:["change series style"],es:["cambiar el estilo de la serie"]}},47474:e=>{e.exports={en:["change splits visibility"],es:["cambiar la visibilidad de los splits"]}},20137:e=>{e.exports={en:["change timezone"],es:["cambiar la zona horaria"]}},85975:e=>{e.exports={en:["change unit"],es:["cambiar unidad"]}},1924:e=>{e.exports={en:["change visibility"],es:["cambiar la visibilidad"]}},84331:e=>{
|
||||
e.exports={en:["change visibility at current interval"],es:["cambiar visibilidad del intervalo actual"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],es:["cambiar visibilidad del intervalo actual y superior"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],es:["cambiar visibilidad del intervalo actual e inferior"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],es:["cambiar visibilidad en todos los intervalos"]}},94566:e=>{e.exports={en:["charts by TradingView"],es:["gráficos por TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],es:["clonar las herramientas de líneas"]}},46219:e=>{e.exports={en:["create line tools group"],es:["crear grupo de herramientas de líneas"]}},95394:e=>{e.exports={en:["create line tools group from selection"],es:["crear el grupo de herramientas de líneas a partir de la selección"]}},12898:e=>{e.exports={en:["create {tool}"],es:["crear {tool}"]}},94227:e=>{e.exports={en:["cut sources"],es:["recortar fuentes"]}},11500:e=>{e.exports={en:["cut {title}"],es:["recortar {title}"]}},63869:e=>{e.exports={en:["anchor objects"],es:["anclar objetos"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],es:["añadir la herramienta de líneas {lineTool} al grupo {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],es:["añadir herramienta(s) de línea al grupo {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],es:["añadi estos parámetros financieros a todo el diseño"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],es:["añadir este indicador a todo el diseño"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],es:["añadir esta estrategia a todo el diseño"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],es:["añadir este símbolo a todo el diseño"]}},4128:e=>{e.exports={en:["align to 45 degrees"],es:["alinear a 45 grados"]}},68231:e=>{e.exports={en:["apply chart theme"],es:["aplicar esquema al gráfico"]}},99551:e=>{e.exports={en:["apply all chart properties"],es:["aplicar todas las propiedades del gráfico"]}},89720:e=>{e.exports={en:["apply drawing template"],es:["aplicar plantilla de dibujo"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],es:["aplicar los valores por defecto de fábrica a las fuentes seleccionadas"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],es:["aplicar los indicadores a todo el diseño"]}},69604:e=>{e.exports={en:["apply study template {template}"],es:["aplicar la plantilla de estudio {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],es:["aplicar el esquema de la barra de herramientas"]}},1979:e=>{e.exports={en:["bring group {title} forward"],es:["traer grupo de {title} adelante"]}},53159:e=>{e.exports={en:["bring {title} to front"],es:["traer {title} al frente"]}},41966:e=>{e.exports={en:["bring {title} forward"],es:["traer {title} hacia delante"]}},44676:e=>{e.exports={en:["by TradingView"],es:["por TradingView"]}},58850:e=>{
|
||||
e.exports={en:["date range lock"],es:["bloqueo rango de fechas"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],es:["excluir las herramientas de líneas del grupo {group}"]}},13017:e=>{e.exports={en:["hide {title}"],es:["ocultar {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],es:["ocultar las marcas en las barras"]}},56558:e=>{e.exports={en:["interval lock"],es:["bloquear intervalo"]}},6830:e=>{e.exports={en:["invert scale"],es:["invertir escala"]}},48818:e=>{e.exports={en:["insert {title}"],es:["introducir {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],es:["introducir {title} después de {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],es:["añadir {title} después de {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],es:["añadir {title} antes de {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],es:["añadir {title} antes de {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],es:["cargar la plantilla de dibujo por defecto"]}},62011:e=>{e.exports={en:["loading..."],es:["cargando..."]}},76104:e=>{e.exports={en:["lock {title}"],es:["bloquear {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],es:["bloquear grupo {group}"]}},18942:e=>{e.exports={en:["lock objects"],es:["bloquear objetos"]}},98277:e=>{e.exports={en:["move"],es:["movimiento"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],es:["mover {title} a la nueva escala izquierda"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],es:["mover {title} a la nueva escala de la derecha"]}},64077:e=>{e.exports={en:["move all scales to left"],es:["mover todas las escalas a la izquierda"]}},19013:e=>{e.exports={en:["move all scales to right"],es:["mover todas las escalas a la derecha"]}},52510:e=>{e.exports={en:["move drawing(s)"],es:["mover dibujo(s)"]}},79209:e=>{e.exports={en:["move left"],es:["mover hacia la izquierda"]}},60114:e=>{e.exports={en:["move right"],es:["mover hacia la derecha"]}},44854:e=>{e.exports={en:["move scale"],es:["mover escala"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],es:["crear {title} sin escala (pantalla completa)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],es:["hacer que no se visualice el grupo {group}"]}},45987:e=>{e.exports={en:["make group {group} visible"],es:["hacer visible el grupo {group}"]}},78055:e=>{e.exports={en:["merge down"],es:["unir por debajo"]}},41866:e=>{e.exports={en:["merge to pane"],es:["unir al panel"]}},52458:e=>{e.exports={en:["merge up"],es:["unir por encima"]}},90091:e=>{e.exports={en:["n/a"],es:["No disponible"]}},94981:e=>{e.exports={en:["scale price"],es:["escala de precios"]}},63796:e=>{e.exports={en:["scale price chart only"],es:["solo gráfico de precios a escala"]}},70771:e=>{e.exports={en:["scale time"],es:["escala de tiempo"]}},42070:e=>{e.exports={en:["scroll"],es:["desplazarse"]}},87840:e=>{e.exports={en:["scroll time"],es:["desplazarse por el horario"]}},82241:e=>{e.exports={
|
||||
en:["set price scale selection strategy to {title}"],es:["establecer la estrategia de selección de la escala de precios de {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],es:["enviar {title} hacia atrás"]}},5005:e=>{e.exports={en:["send {title} to back"],es:["enviar {title} atrás"]}},69546:e=>{e.exports={en:["send group {title} backward"],es:["enviar grupo de {title} atrás"]}},63934:e=>{e.exports={en:["share line tools globally"],es:["compartir las herramientas de línea globalmente"]}},90221:e=>{e.exports={en:["share line tools in layout"],es:["compartir las herramientas de línea en la plantilla"]}},13336:e=>{e.exports={en:["show all ideas"],es:["mostrar todas las ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"],es:["mostrar las ideas de los usuarios seguidos"]}},57460:e=>{e.exports={en:["show my ideas only"],es:["mostrar solo mis ideas"]}},4114:e=>{e.exports={en:["stay in drawing mode"],es:["permanecer en modo dibujo"]}},3350:e=>{e.exports={en:["stop syncing drawing"],es:["dejar de sincronizar los dibujos"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],es:["dejar de sincronizar las herramienta(s) de línea"]}},53278:e=>{e.exports={en:["symbol lock"],es:["bloquear símbolo"]}},91677:e=>{e.exports={en:["sync time"],es:["tiempo de sincronización"]}},3140:e=>{e.exports={en:["powered by"],es:["con tecnología de"]}},92800:e=>{e.exports={en:["powered by TradingView"],es:["con tecnología de TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],es:["pegar dibujo"]}},1064:e=>{e.exports={en:["paste indicator"],es:["pegar indicador"]}},57010:e=>{e.exports={en:["paste {title}"],es:["pegar {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],es:["fijar a la escala izquierda"]}},7495:e=>{e.exports={en:["pin to right scale"],es:["Fijar a escala derecha"]}},81566:e=>{e.exports={en:["pin to scale {label}"],es:["fijar a escala {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],es:["reordenar paneles"]}},60806:e=>{e.exports={en:["remove all indicators"],es:["eliminar todos los indicadores"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],es:["eliminar todos los indicadores y herramientas de dibujo"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],es:["eliminar las líneas en blanco no seleccionadas"]}},30538:e=>{e.exports={en:["remove drawings"],es:["eliminar dibujos"]}},1193:e=>{e.exports={en:["remove drawings group"],es:["eliminar grupo de dibujos"]}},38199:e=>{e.exports={en:["remove line data sources"],es:["eliminar las fuentes de datos de las líneas"]}},93333:e=>{e.exports={en:["remove pane"],es:["eliminar panel"]}},94543:e=>{e.exports={en:["remove {title}"],es:["eliminar {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],es:["eliminar el grupo de herramientas de líneas {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],es:["cambiar el nombre del grupo {group} a {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],es:["restablecer el tamaño de la plantilla"]}},3323:e=>{e.exports={
|
||||
en:["reset scales"],es:["restablecer escala"]}},17336:e=>{e.exports={en:["reset time scale"],es:["reiniciar escala de tiempo"]}},47418:e=>{e.exports={en:["resize layout"],es:["cambiar el tamaño de la plantilla"]}},85815:e=>{e.exports={en:["restore defaults"],es:["restablecer valores por defecto"]}},96881:e=>{e.exports={en:["restore study defaults"],es:["restaurar los valores por defecto del estudio"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],es:["cambiar el estado del panel maximizado"]}},42240:e=>{e.exports={en:["toggle auto scale"],es:["alternar escala automática"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],es:["alternar el estado del panel colapsado"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],es:["alternar indexado a una escala de 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],es:["alternar bloquear escala"]}},49403:e=>{e.exports={en:["toggle log scale"],es:["alternar escala logarítmica"]}},98994:e=>{e.exports={en:["toggle percentage scale"],es:["alternar escala de porcentajes"]}},80688:e=>{e.exports={en:["toggle regular scale"],es:["alternar escala regular"]}},46807:e=>{e.exports={en:["track time"],es:["controlar el tiempo"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],es:["desactivar la posibilidad de compartir herramientas de línea"]}},99234:e=>{e.exports={en:["unanchor objects"],es:["desanclar objetos"]}},23230:e=>{e.exports={en:["unlock objects"],es:["desbloquear objetos"]}},74590:e=>{e.exports={en:["unlock group {group}"],es:["desbloquear al grupo {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],es:["desbloquear {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],es:["desagrupar en el nuevo panel inferior"]}},79443:e=>{e.exports={en:["unmerge up"],es:["desagrupar por encima"]}},46453:e=>{e.exports={en:["unmerge down"],es:["desagrupar por debajo"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],es:["Actualmente, el tipo de gráfico {chartStyle} no está disponible para intervalos basados en ticks."]}},41643:e=>{e.exports={en:["{count} bars"],es:["{count} barras"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],es:["Información financiera de {symbol} por TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],es:["{userName} publicado en {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],es:["aumentar"]}},73638:e=>{e.exports={en:["zoom out"],es:["alejar"]}},41807:e=>{e.exports={en:["day","days"],es:["día","días"]}},42328:e=>{e.exports={en:["hour","hours"],es:["hora","horas"]}},98393:e=>{e.exports={en:["month","months"],es:["mes","meses"]}},78318:e=>{e.exports={en:["minute","minutes"],es:["minuto","minutos"]}},33232:e=>{e.exports={en:["second","seconds"],es:["segundo","segundos"]}},89937:e=>{e.exports={en:["range","ranges"],es:["rango","rangos"]}},48898:e=>{e.exports={en:["week","weeks"],es:["semana","semanas"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={
|
||||
en:["{amount} drawing","{amount} drawings"],es:["{amount} dibujo","{amount} dibujos"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],es:["{amount} indicador","{amount} indicadores"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],es:["{count}a","{count}a"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],es:["ETF Schwab Short-Term US Treasury"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],es:["Índice S&P/ASX All Australian 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],es:["Índice S&P/ASX All Australian 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],es:["Índice S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],es:["Dólar australiano/Dólar canadiense"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],es:["Dólar australiano/Franco suizo"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],es:["Dólar australiano/Yen japonés"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],es:["Dólar australiano/Dólar neozelandés"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],es:["Dólar australiano/Rublo ruso"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],es:["Dólar australiano/Dólar estadounidense"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],es:["Índice S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"],es:["Bitcoin al contado/Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],es:["Bitcoin Cash/Dólar estadounidense"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],es:["Índice BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],es:["Índice BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],es:["Bitcoin/Índice dólar estadounidense"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],es:["Índice IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],es:["Índice Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],es:["Índice IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],es:["Índice Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],es:["Índice S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={
|
||||
en:["Brazilian Real / Japanese Yen"],es:["Real brasileño/Yen japonés"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],es:["Índice S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],es:["Bitcoin/Real brasileño"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],es:["Bitcoin/Dólar Canadiense"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],es:["Bitcoin/Yuan Chino"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],es:["Bitcoin/Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],es:["Bitcoin/Libra esterlina"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],es:["Bitcoin/Yen japonés"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],es:["Bitcoin/Won Surcoreano"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],es:["Bitcoin/Esloti polaco"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],es:["Bitcoin/Rublo ruso"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],es:["Bitcoin/Baht tailandés"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],es:["Bitcoin/Dólar estadounidense"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],es:["Bitcoin Gold/Dólar estadounidense"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],es:["Índice S&P/BVL Peru General (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],es:["Índice Brazil Bovespa"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],es:["Dólar canadiense/Yen japonés"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],es:["Dólar canadiense/Dólar estadounidense"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],es:["Índice S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],es:["Índice volatilidad S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],es:["Futuros T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],es:["Futuros de maíz"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],es:["Futuros de la harina de soja"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],es:["Futuros T-Note a 10 años"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],es:["Futuros de la avena"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],es:["Futuros sobre el tipo de interés de los fondos federales a 30 días"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],es:["Futuros de arroz"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],es:["Futuros de soja"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],es:["Futuros Trigo"]},
|
||||
e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],es:["Futuros mini de soja"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],es:["Futuros mini de trigo"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],es:["Futuros E-mini Dow Jones ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],es:["Franco suizo/Yen japonés"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],es:["Franco suizo/Dólar estadounidense"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],es:["Futuros de bitcoin del CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],es:["Futuros de mantequilla: efectivo (continuo: contrato vigente con vencimiento próximo)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],es:["Futuros ganado de engorde"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],es:["Futuros carne de cerdo"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],es:["Futuros de ganado vivo"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],es:["Futuros E-mini euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],es:["Futuros E-Mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],es:["Futuros E-mini del yen japonés"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],es:["Futuros NASDAQ 100 E-mini"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],es:["Futuros del índice E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],es:["Futuros Aluminium European Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],es:["Futuros Aluminum MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],es:["Futuros de oro"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],es:["Futuros Cobre"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],es:["Futuros de la plata"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],es:["Futuros E-mini cobre"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],es:["Futuros (Mini) plata"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],es:["Futuros de oro (Mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],es:["CFDs sobre cobre"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],es:["CFDs sobre maíz"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],es:["CFDs sobre algodón"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],
|
||||
es:["Capitalización total del mercado de criptomonedas, USD"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],es:["Índice DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],es:["Índice Dow Jones Composite Average"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],es:["Índice Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],es:["Índice Dow Jones de materias primas: cacao"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],es:["Índice Dow Jones de materias primas: energía."]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],es:["Índice Dow Jones de materias primas: oro"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],es:["Índice de materias primas de Dow Jones: granos"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],es:["Índice Dow Jones de materias primas: níquel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],es:["Índice Dow Jones de materias primas: café"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],es:["Índice Dow Jones de materias primas: azúcar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],es:["Índice Dow Jones de materias primas: plata"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],es:["Índice Dow Jones Transportation Average"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],es:["Índice Dow Jones Utility Average"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],es:["Índice Dow Jones U.S. Coal"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],es:["Índice EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],es:["Ethereum Classic/Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"],es:["Ethereum Classic/Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],es:["Ethereum Classic/Dólar estadounidense"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"],es:["Ethereum/Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],es:["Ethereum/Libra británica"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],es:["Ethereum/Yen japonés"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],es:["Ethereum/Won surcoreano"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],es:["Ethereum/Baht tailandés"]},e.exports["#ETHUSD-symbol-description"]={
|
||||
en:["Ethereum / U.S. Dollar"],es:["Ethereum/Dólar estadounidense"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],es:["Futuros del Bono Alemán"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],es:["Euro/Dólar Australiano"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],es:["Euro/Real brasileño"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],es:["Euro/Dólar canadiense"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],es:["Euro/Franco suizo"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],es:["Euro/Libra esterlina"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],es:["Euro/Yen japonés"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],es:["Euro/Corona noruega"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],es:["Euro/Dólar neozelandés"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],es:["Índice AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],es:["Índice BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],es:["Índice CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],es:["Euro/Rublo ruso"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],es:["Eur/Rublo ruso TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],es:["Euro FX/Corona sueca"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],es:["Euro/Lira turca"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],es:["Euro/Dólar estadounidense"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],es:["Índice Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],es:["Indice CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],es:["Producto Interior Bruto, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],es:["Población Total: Todas las Edades incluyendo Fuerzas Armadas fuera del país"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],es:["Tasa de Desempleo"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],es:["Índice FTSE Bursa Malaysia KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],es:["Índice S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],es:["Libra esterlina/Dólar australiano"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],es:["Libra esterlina/Dólar canadiense"]},
|
||||
e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],es:["Libra esterlina/Franco suizo"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],es:["Libra Esterlina/Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],es:["Libra esterlina/Yen japonés"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],es:["Libra esterlina/Dólar neozelandés"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],es:["Libra británica/Esloti polaco"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],es:["Libra/Rublo ruso"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],es:["Libra esterlina/Dólar estadounidense"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],es:["Índice DAX"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],es:["Alphabet Inc. (Google) Clase C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],es:["Índice WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],es:["Índice Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],es:["Futuros del índice del dólar de EE. UU."]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],es:["Índice IDX Composite"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],es:["Índice MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],es:["Índice Euro STOXX 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],es:["Índice STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],es:["Índice ponderado de Taiwán"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],es:["IOTA/Dólar estadounidense"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],es:["Índice Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],es:["Yen japonés/Won surcoreano"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],es:["Yen japonés/Rublo ruso"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],es:["Yen japonés/Dólar estadounidense"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],es:["Litecoin/Real brasileño"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],es:["Litecoin/Bitcoin"]},
|
||||
e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],es:["Litecoin/Dólar estadounidense"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],es:["Luna/Dólar estadounidense"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],es:["Futuros Petroleo Brent"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],es:["Índice MOEX de Rusia"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],es:["Índice MOEX"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],es:["Futuros del índice MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],es:["Futuros índice MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],es:["Futuros del índice RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],es:["Índice RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],es:["CFD US 100 Cash"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],es:["Índice PHLX Housing Sector"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],es:["ETF iShares 7-10 Year Treasury Bond"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],es:["ETF iShares 3-7 Year Treasury Bond"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],es:["Índice Nasdaq Composite"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],es:["Índice Nasdaq 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],es:["Índice PHLX Oil Service Sector"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],es:["Índice de semiconductores de Filadelfia"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],es:["ETF Ishares 20+ Year Treasury Bond"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],es:["Índice PHLX Utility Sector"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],
|
||||
es:["Índice PHLX del sector de oro y plata"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],es:["NEO/Dólar estadounidense"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],es:["Gas natural (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],es:["Índice Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],es:["Índice Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],es:["Futuros NY Etanol"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],es:["Futuros de cacao"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],es:["Futuros de Crudo Ligero"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],es:["Futuros NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],es:["Futuros Café"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],es:["Futuros Gas Natural"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],es:["Futuros de paladio"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],es:["Futuros Platino"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],es:["Futuros Gasolina RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],es:["Futuros de algodón"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],es:["Futuros E-mini gas natural"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],es:["Futuros E-mini de crudo ligero"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],es:["Futuros E-mini gasolina"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],es:["Índice NYSE Composite"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],es:["Índice AMEX Composite"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],es:["Índice NYSE ARCA Major Market"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],es:["Dólar neozelandés/Yen japonés"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],es:["Dólar neozelandés/Dólar estadounidense"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],es:["S&P/NZX ALL Index ( Capital Index )"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],es:["S&P/NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={
|
||||
en:["CFDs on Natural Gas"],es:["CFDs sobre gas natural"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],es:["Índice S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],es:["CFDs sobre cobre (USD/LB)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],es:["Índice OMX Copenhagen 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],es:["Índice OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],es:["Índice OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],es:["Índice OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],es:["Índice OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],es:["Índice OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],es:["Índice QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],es:["Índice ruso RTS"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],es:["Índice Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],es:["Índice Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],es:["Índice Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],es:["Índice del mercado suizo"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],es:["Solana/Dólar estadounidense"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],es:["CFDs sobre soja"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],es:["Índice S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],es:["Índice S&P Goldman Sachs Commodity"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],es:["El Índice S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],es:["Índice Value S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],es:["Índice S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],es:["CFDs sobre azúcar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],es:["Índice Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],es:["Índice Tadawul All Shares"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],es:["Índice TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],es:["Índice S&P/TSX Composite"]},
|
||||
e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],es:["Índice S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],es:["Bonos de deuda pública Australia a 10A"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Australia a 10A"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],es:["Índice de divisas del dólar australiano"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],es:["Índice de divisas de la libra esterlina"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],es:["Bonos de deuda pública canadiense, 10 años"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Canadá a 10A"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],es:["Índice CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],es:["Bonos deuda pública China a 10A"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública China a 10A"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],es:["Índice de divisas del dólar canadiense"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],es:["Bonos deuda pública Alemania 10A"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Alemania a 10A"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],es:["Índice DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],es:["Índice del dólar de EE. UU."]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],es:["Bonos deuda pública España a 10A"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública España a 10A"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],es:["Índice de divisas del euro"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],es:["Bonos deuda pública Francia a 10A"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Francia a 10A"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"],es:["Índice Milano Italia Borsa"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],es:["Bonos deuda pública Reino Unido a 2 A"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],es:["Bonos deuda pública Reino Unido a 10A"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],
|
||||
es:["Rend. bonos deuda pública Reino Unido a 10A"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],es:["CFDs sobre oro (USD/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],es:["Índice Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],es:["Índice IBEX 35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],es:["Bonos de deuda púbica Indonesia a 3 A"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],es:["Bonos deuda pública Indonesia a 10A"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Indonesia a 10A"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],es:["Bono deuda pública India a 10A"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública India a 10A"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],es:["Bonos deuda pública Italia a 10A"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Italia a 10A"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],es:["Índice US Composite"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],es:["Bonos deuda pública Japón a 10A"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Japón a 10A"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],es:["Índice de divisas del yen japonés"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],es:["Índice Korea Composite Stock Price"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],es:["Bonos deuda pública Corea a 10A"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Corea a 10A"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],es:["Bonos deuda pública Malasia a 10A"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Malasia a 10A"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],es:["Índice US 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],es:["Índice Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],es:["Bonos de deuda pública neerlandesa, 10 años"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Países Bajos a 10A"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],es:["Índice NYSE Composite"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],es:["Bonos de deuda pública neozelandesa, 10 años"]},
|
||||
e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Nueva Zelanda a 10A"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],es:["CFDs sibre paladio (USD/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],es:["Bonos de deuda pública de Polonia a 5A"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],es:["Bonos de deuda pública Polonia a 10A"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],es:["CFDs sobre platino (USD/OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],es:["Bonos de deuda pública Portugal de 10A"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Portugal a 10A"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],es:["Índice South Africa Top 40"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],es:["CFDs sobre plata (USD/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],es:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],es:["Índice de mercado suizo"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],es:["Índice Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],es:["Índice Euro Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],es:["Índice de divisas del franco suizo"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],es:["Bono deuda pública Turquía a 10A"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Turquía a 10A"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],es:["CFDs sobre petróleo crudo Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],es:["Índice UK 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],es:["Bonos de deuda pública de EE. UU. a 2A"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],es:["Rendimiento bonos de deuda pública de EE. UU. a 2A"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],es:["Bonos de deuda pública EE. UU. a 5A"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],es:["Rendimiento bonos deuda pública de EE. UU. a 5A"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],es:["Bonos deuda pública EE. UU. a 10A"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública EE. UU. a 10A"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],es:["Bonos de deuda pública de EE. UU. a 30A"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],
|
||||
es:["CFDs sobre petróleo crudo WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],es:["Índice Volatility S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],es:["Índice de divisas del dólar neozelandés"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],es:["Índice ponderado de Taiwán"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],es:["Índice de capitalización de acciones ponderadas de Taiwan"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],es:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],es:["Índice FTSE100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],es:["CFDs sobre petróleo (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],es:["Uniswap/Dólar estadounidense"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],es:["Dólar estadounidense/Dólar australiano"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],es:["Dólar estadounidense/Real brasileño"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],es:["Dólar estadounidense/Dólar canadiense"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],es:["Dólar estadounidense/Franco suizo"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],es:["Dólar estadounidense/Yuan chino"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],es:["Dólar estadounidense/Corona danesa"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],es:["Dólar estadounidense/Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],es:["Dólar estadounidense/Libra esterlina"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],es:["Dólar estadounidense/Dólar de Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],es:["Dólar estadounidense/Florín húngaro"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],es:["Dólar estadounidense/Rupia"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],es:["Dólar norteamericano/Shekel Israelí"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],es:["Dólar estadounidense/Rupia india"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],es:["Dólar estadounidense/Yen japonés"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],es:["Dólar estadounidense/Won surcoreano"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],es:["Dólar estadounidense/Peso mexicano"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],es:["Dólar estadounidense/Dólar neozelandés"]},
|
||||
e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],es:["Dólar estadounidense/Peso filipino"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],es:["Dólar estadounidense/Esloti polaco"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],es:["Dólar estadounidense/Rublo ruso"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],es:["Dólar estadounidense/Rublo ruso TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],es:["Dólar estadounidense/Corona sueca"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],es:["Dólar estadounidense/Dólar singapurense"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],es:["Dólar estadounidense/Baht tailandés"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],es:["Dólar estadounidense/Lira turca"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],es:["Dólar estadounidense/Rand sudafricano"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],es:["CFDs sobre petróleo (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],es:["CFDs sobre trigo"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],es:["Plata/Dólar estadounidense"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],es:["Oro al contado/Dólar estadounidense"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],es:["Bitcoin/Dólar canadiense"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],es:["Índice DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],es:["Monero/Dólar estadounidense"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],es:["CFDs sobre paladio"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],es:["Platino/Dólar estadounidense"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],es:["XRP/Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],es:["XRP/Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],es:["XRP/Dólar estadounidense"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],es:["Zcash/Dólar estadounidense"]}}}]);
|
||||
es:["La parte de la fracción no es correcta."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],es:["Ya no se encuentran disponible los estudios fundamentales en los gráficos."]}},31561:e=>{e.exports={en:["Kolkata"],es:["Calcuta"]}},54533:e=>{e.exports={en:["Kathmandu"],es:["Katmandú"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],es:["Área HLC"]}},886:e=>{e.exports={en:["HLC bars"],es:["Barras con el máximo, mínimo y cierre (HLC)"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],es:["Velas huecas"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],es:["Línea horizontal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],es:["Rayo horizontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],es:["Cabeza y hombros"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],es:["Ocultar"]}},47074:e=>{e.exports={en:["Hide all"],es:["Ocultar todo"]}},52563:e=>{e.exports={en:["Hide all drawings"],es:["Ocultar todos los dibujos"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],es:["Ocultar todos los dibujos e indicadores"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],es:["Ocultar todos los dibujos, indicadores, posiciones y órdenes"]}},78525:e=>{e.exports={en:["Hide all indicators"],es:["Ocultar todos los indicadores"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],es:["Ocultar todas las posiciones y órdenes"]}},3217:e=>{e.exports={en:["Hide drawings"],es:["Ocultar dibujos"]}},97878:e=>{e.exports={en:["Hide events on chart"],es:["Ocultar eventos en el gráfico"]}},72351:e=>{e.exports={en:["Hide indicators"],es:["Ocultar indicadores"]}},28345:e=>{e.exports={en:["Hide marks on bars"],es:["Ocultar marcadores en las barras"]}},92226:e=>{e.exports={en:["Hide positions & orders"],es:["Ocultar posiciones y órdenes"]}},78254:e=>{e.exports={en:["High"],es:["Máximo"]}},98236:e=>{e.exports={en:["High-low"],es:["Máximo-mínimo"]}},99479:e=>{e.exports={en:["High and low price labels"],es:["Etiquetas de precios máximos y mínimos"]}},33766:e=>{e.exports={en:["High and low price lines"],es:["Líneas de precios máximos y mínimos"]}},69476:e=>{e.exports={en:["Highlighter"],es:["Resaltador"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],es:["El histograma es demasiado grande, aumente el {boldHighlightStart}Tamaño de la fila{boldHighlightEnd} en la ventana de configuración."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],
|
||||
es:["El histograma es demasiado grande, aumente los {boldHighlightStart}Ticks por fila{boldHighlightEnd} en la ventana de configuración."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],es:["El histograma es demasiado grande, reduzca el {boldHighlightStart}Tamaño de la fila{boldHighlightEnd} en la ventana de configuración."]}},68065:e=>{e.exports={en:["Image"],es:["Imagen"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],es:["No se admiten los intervalos inferiores a {resolution} para {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],es:["Intermediario"]}},14285:e=>{e.exports={en:["Invalid Symbol"],es:["Símbolo incorrecto"]}},52969:e=>{e.exports={en:["Invalid symbol"],es:["Símbolo incorrecto"]}},37189:e=>{e.exports={en:["Invert scale"],es:["Invertir escala"]}},89999:e=>{e.exports={en:["Indexed to 100"],es:["Indexado a 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],es:["Etiquetas con los valores de los indicadores"]}},54418:e=>{e.exports={en:["Indicators name labels"],es:["Etiquetas con los nombres de los indicadores"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],es:["Indicadores, métricas y estrategias. Pulsar la tecla de la barra"]}},15992:e=>{e.exports={en:["Info Line"],es:["Línea de información"]}},87829:e=>{e.exports={en:["Insert indicator"],es:["Añadir indicador"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],es:["Tridente interno"]}},37913:e=>{e.exports={en:["Icon"],es:["Icono"]}},78326:e=>{e.exports={en:["Istanbul"],es:["Estambul"]}},39585:e=>{e.exports={en:["Johannesburg"],es:["Johanesburgo"]}},14995:e=>{e.exports={en:["Jakarta"],es:["Yakarta"]}},62310:e=>{e.exports={en:["Jan"],es:["Ene"]}},36057:e=>{e.exports={en:["Jerusalem"],es:["Jerusalén"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],es:["A la izquierda"]}},55813:e=>{e.exports={en:["On the right"],es:["A la derecha"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],es:["Solo se admiten intervalos {availableResolutions} para {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],es:["¡Vaya!"]}},51221:e=>{e.exports={en:["Object Tree"],es:["Árbol de objetos"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"],es:["Apertura"]}},27884:e=>{e.exports={en:["Open layout. Press period"],es:["Abrir diseño. Pulsar punto"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],es:["Mínimo"]}},51077:e=>{e.exports={en:["Lock"],es:["Bloquear"]}},79777:e=>{e.exports={en:["Lock/unlock"],es:["Bloquear/Desbloquear"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],es:["Bloquear la línea vertical del cursor por tiempo"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],es:["Bloquear la relación precio/barra"]}},16170:e=>{e.exports={en:["Logarithmic"],es:["Logarítmico"]}},19439:e=>{e.exports={
|
||||
en:["London"],es:["Londres"]}},74832:e=>{e.exports={en:["Long Position"],es:["Posición larga"]}},28733:e=>{e.exports={en:["Los Angeles"],es:["Los Ángeles"]}},85924:e=>{e.exports={en:["Label Down"],es:["Etiqueta descendente"]}},52402:e=>{e.exports={en:["Label Up"],es:["Etiqueta ascendente"]}},5119:e=>{e.exports={en:["Labels"],es:["Etiquetas"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],es:["Cambio del último día"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],es:["Línea"]}},9394:e=>{e.exports={en:["Line with markers"],es:["Línea con marcadores"]}},43588:e=>{e.exports={en:["Line break"],es:["Ruptura de línea"]}},56982:e=>{e.exports={en:["Lines"],es:["Líneas"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],es:["Enlace a la imagen del gráfico copiado al portapapeles {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],es:["Lisboa"]}},81038:e=>{e.exports={en:["Luxembourg"],es:["Luxemburgo"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],es:["Mueva el punto para posicionar el anclaje y después, toque para colocar"]}},35049:e=>{e.exports={en:["Move to"],es:["Mover a"]}},26493:e=>{e.exports={en:["Move scale to left"],es:["Mover escala hacia la izquierda"]}},40789:e=>{e.exports={en:["Move scale to right"],es:["Mover escala hacia la derecha"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],es:["Tridente de Schiff modificado"]}},93907:e=>{e.exports={en:["More settings"],es:["Más ajustes"]}},64039:e=>{e.exports={en:["Moscow"],es:["Moscú"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"],es:["Ciudad de Mexico"]}},88314:e=>{e.exports={en:["Merge all scales into one"],es:["Combinar todas las escalas en una"]}},54215:e=>{e.exports={en:["Mixed"],es:["Mixto"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"],es:["Minúsculo"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"],es:["No disponible"]}},36252:e=>{e.exports={en:["No data here"],es:["Aquí no hay datos"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],es:["Sin escala (pantalla completa)"]}},9140:e=>{e.exports={en:["No sync"],es:["No sincronizar"]}},50910:e=>{e.exports={en:["No volume data"],es:["Sin datos sobre el volumen"]}},99024:e=>{e.exports={en:["No, keep them"],es:["No, guárdelos"]}},94389:e=>{e.exports={en:["Note"],es:["Nota"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],es:["Isla de Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"],es:["Nueva York"]}},66103:e=>{e.exports={en:["New Zealand"],es:["Nueva Zelanda"]}},15512:e=>{e.exports={en:["New pane above"],es:["Nuevo panel superior"]}},52160:e=>{e.exports={en:["New pane below"],es:["Nuevo panel inferior"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{
|
||||
e.exports={en:["Something went wrong"],es:["Algo ha fallado"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],es:["Algo ha ido mal al crear el indicador."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],es:["Algo ha fallado. Rogamos vuelva a intentarlo más tarde."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],es:["Guardar nuevo diseño de gráfico"]}},76266:e=>{e.exports={en:["Save as"],es:["Guardar como"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],es:["Moneda de escala"]}},43758:e=>{e.exports={en:["Scale price chart only"],es:["Solo gráfico de precios a escala"]}},40012:e=>{e.exports={en:["Scale unit"],es:["Unidad de escala"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],es:["Tridente de Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],es:["Puede que no se actualice el script si abandona la página."]}},32514:e=>{e.exports={en:["Settings"],es:["Opciones de configuración"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],es:["La segunda parte de la fracción no es correcta"]}},75594:e=>{e.exports={en:["Security info"],es:["Información del valor"]}},21973:e=>{e.exports={en:["Send to back"],es:["Enviar al fondo"]}},71179:e=>{e.exports={en:["Send backward"],es:["Enviar hacia atrás"]}},26820:e=>{e.exports={en:["Seoul"],es:["Seúl"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"],es:["Sesión"]}},83298:e=>{e.exports={en:["Session volume profile"],es:["Perfil de volumen de la sesión"]}},66707:e=>{e.exports={en:["Session breaks"],es:["Ruptura de las sesiones"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],es:["Posición corta"]}},98334:e=>{e.exports={en:["Show"],es:["Mostrar"]}},85891:e=>{e.exports={en:["Show all drawings"],es:["Mostrar todos los dibujos"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],es:["Mostrar todos los dibujos e indicadores"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],es:["Mostrar todos los dibujos, indicadores, posiciones y órdenes"]}},98753:e=>{e.exports={en:["Show all indicators"],es:["Mostrar todos los indicadores"]}},55418:e=>{e.exports={en:["Show all ideas"],es:["Mostrar todas las ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"],es:["Mostrar todas las posiciones y órdenes"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],es:["Mostrar el cambio de contrato continuo"]}},81465:e=>{e.exports={en:["Show contract expiration"],es:["Mostrar el vencimiento del contrato"]}},29449:e=>{e.exports={en:["Show dividends"],es:["Mostrar dividendos"]}},37113:e=>{e.exports={en:["Show earnings"],es:["Mostrar beneficios"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],es:["Mostrar ideas de usuarios seguidos"]}},62986:e=>{e.exports={en:["Show latest news"],es:["Mostrar últimas noticias"]}},44020:e=>{e.exports={
|
||||
en:["Show my ideas only"],es:["Mostrar solo mis ideas"]}},50849:e=>{e.exports={en:["Show splits"],es:["Mostrar splits"]}},67751:e=>{e.exports={en:["Signpost"],es:["Señal"]}},77377:e=>{e.exports={en:["Singapore"],es:["Singapur"]}},39090:e=>{e.exports={en:["Sine Line"],es:["Línea del seno"]}},66205:e=>{e.exports={en:["Square"],es:["Cuadrado"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],es:["Se ha excedido el límite de estudios: {number} por diseño.\nElimine algunos estudios."]}},92516:e=>{e.exports={en:["Style"],es:["Estilo"]}},61507:e=>{e.exports={en:["Stack on the left"],es:["Apilar a la izquierda"]}},97800:e=>{e.exports={en:["Stack on the right"],es:["Apilar a la derecha"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],es:["Empiece a utilizar el modo de navegación por teclado. Pulse {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],es:["Permanecer en modo dibujo"]}},69217:e=>{e.exports={en:["Step line"],es:["Línea de pasos"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"],es:["Estocolmo"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"],es:["Submilenio"]}},30585:e=>{e.exports={en:["Subminuette"],es:["Subminutte"]}},67948:e=>{e.exports={en:["Supercycle"],es:["Superciclo"]}},3348:e=>{e.exports={en:["Supermillennium"],es:["Supermilenio"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],es:["Cambiar a {resolution}"]}},31622:e=>{e.exports={en:["Sydney"],es:["Sidney"]}},70963:e=>{e.exports={en:["Symbol Error"],es:["Error de símbolo"]}},32390:e=>{e.exports={en:["Symbol name label"],es:["Etiqueta con el nombre del símbolo"]}},10127:e=>{e.exports={en:["Symbol last price label"],es:["Etiqueta del símbolo con el último precio"]}},39079:e=>{e.exports={en:["Sync globally"],es:["Sincronizar globalmente"]}},46607:e=>{e.exports={en:["Sync in layout"],es:["Sincronizar en el diseño"]}},76519:e=>{e.exports={en:["Point & figure"],es:["Punto y figura"]}},39949:e=>{e.exports={en:["Polyline"],es:["Polilínea"]}},371:e=>{e.exports={en:["Path"],es:["Ruta (Path)"]}},59256:e=>{e.exports={en:["Parallel Channel"],es:["Canal paralelo"]}},61879:e=>{e.exports={en:["Paris"],es:["París"]}},35140:e=>{e.exports={en:["Paste"],es:["Pegar"]}},6919:e=>{e.exports={en:["Percent"],es:["Porcentaje"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"],es:["Tridente abanico o Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],es:["Tridente"]}},86631:e=>{e.exports={en:["Pin"],es:["Fijar"]}},33110:e=>{e.exports={en:["Pin to new left scale"],es:["Fijar a la nueva escala izquierda"]}},28280:e=>{e.exports={en:["Pin to new right scale"],es:["Fijar a la nueva escala derecha"]}},14115:e=>{e.exports={en:["Pin to left scale"],es:["Fijar a la escala izquierda"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],es:["Fijar a la escala izquierda (oculto)"]}},81054:e=>{e.exports={en:["Pin to right scale"],
|
||||
es:["Fijar a escala derecha"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],es:["Fijar a la escala derecha (oculto)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],es:["Fijar a escala (ahora a la izquierda)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],es:["Fijar a escala (ahora sin escala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],es:["Fijar a escala (ahora a la derecha)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],es:["Fijar a la escala (ahora {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],es:["Fijar a escala {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],es:["Fijar a la escala {label} (oculto)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],es:["Fijado a la escala izquierda"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],es:["Fijado a la escala izquierda (oculto)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],es:["Fijado a la escala derecha"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],es:["Fijado a escala derecha (oculto)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],es:["Fijado a la escala {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],es:["Fijado a la escala {label} (oculto)"]}},71566:e=>{e.exports={en:["Plus button"],es:['Botón "más"']}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],es:["Por favor, denos permiso de escritura desde el portapapeles en su navegador o presione {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],es:["Praga"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],es:["Mantenga presionada la tecla {key} mientras hace zoom para mantener la posición del gráfico"]}},91282:e=>{e.exports={en:["Price Label"],es:["Etiqueta de precio"]}},97512:e=>{e.exports={en:["Price Note"],es:["Nota sobre precios"]}},68941:e=>{e.exports={en:["Price Range"],es:["Rango de precios"]}},66123:e=>{e.exports={en:["Price format is invalid."],es:["El formato del precio no es correcto."]}},72926:e=>{e.exports={en:["Price line"],es:["Línea de precios"]}},59189:e=>{e.exports={en:["Primary"],es:["Primario"]}},75747:e=>{e.exports={en:["Projection"],es:["Proyección"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],es:["Publicado en {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"],es:["T1"]}},13534:e=>{e.exports={en:["Q2"],es:["T2"]}},14530:e=>{e.exports={en:["Q3"],es:["T3"]}},3762:e=>{e.exports={en:["Q4"],es:["T4"]}},28756:e=>{e.exports={en:["Qatar"],es:["Catar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],es:["Búsqueda rápida. Pulsar {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],es:["Rectángulo rotado"]}},52961:e=>{e.exports={en:["Rome"],es:["Roma"]}},50318:e=>{e.exports={en:["Ray"],es:["Rayo"]}},55169:e=>{e.exports={en:["Range"],es:["Rango"]}},13386:e=>{e.exports={en:["Reykjavik"],es:["Reikiavik"]}},26001:e=>{e.exports={en:["Rectangle"],es:["Rectángulo"]}},48236:e=>{e.exports={en:["Redo"],
|
||||
es:["Repetir"]}},2460:e=>{e.exports={en:["Regression Trend"],es:["Tendencia de regresión"]}},67410:e=>{e.exports={en:["Remove"],es:["Eliminar"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],es:["Eliminar esta métrica financiera de favoritos"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],es:["Eliminar este indicador de favoritos"]}},86285:e=>{e.exports={en:["Remove {drawings}"],es:["Eliminar {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],es:["Eliminar {drawings} y {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],es:["Eliminar {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],es:["Cambiar el nombre del diseño del gráfico"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],es:["Restablecer visualización del gráfico"]}},88853:e=>{e.exports={en:["Reset points"],es:["Restablecer puntos"]}},15332:e=>{e.exports={en:["Reset price scale"],es:["Reiniciar escala de precios"]}},54170:e=>{e.exports={en:["Reset time scale"],es:["Reiniciar escala de tiempo"]}},37974:e=>{e.exports={en:["Riyadh"],es:["Riad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],es:["Error de ejecución"]}},66719:e=>{e.exports={en:["Warning"],es:["Advertencia"]}},5959:e=>{e.exports={en:["Warsaw"],es:["Varsovia"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],es:["Tokio"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],es:["Tabla"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"],es:["Tallin"]}},6686:e=>{e.exports={en:["Tehran"],es:["Teherán"]}},93553:e=>{e.exports={en:["Template"],es:["Plantilla"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],es:["El proveedor de datos no proporciona datos sobre el volumen para este símbolo."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],es:["No se pudo cargar la vista previa de la publicación. Deshabilite las extensiones de su navegador y vuelva a intentarlo."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],es:["La solicitud ha tardado demasiado en procesarse. Asegúrese de que dispone de una conexión a Internet estable. Si el problema persiste, intente reducir la duración del intervalo de tiempo solicitado."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],es:["No hay datos para el período e intervalo de tiempo del gráfico que ha seleccionado."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],es:["Este archivo es demasiado grande. El tamaño máximo es de {value}."]}},59519:e=>{e.exports={
|
||||
en:["This indicator cannot be applied to another indicator."],es:["Este indicador no se puede aplicar a otro indicador."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],es:["Este script contiene un error. Póngase en contacto con su autor."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],es:["Este script requiere invitación. Para solicitar acceso, póngase en contacto con su autor."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],es:["Símbolo solo disponible en {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],es:["Patrón Three Drives"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],es:["No se encuentran disponibles los intervalos basados en ticks para {ticker}."]}},12806:e=>{e.exports={en:["Time"],es:["Hora"]}},20909:e=>{e.exports={en:["Time zone"],es:["Zona horaria"]}},46852:e=>{e.exports={en:["Time Cycles"],es:["Ciclos de tiempo"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],es:["Oportunidad de precios en el tiempo"]}},66823:e=>{e.exports={en:["Trade"],es:["Operar"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],es:["Tradingview es interactiva y dispone de comandos que se pueden utilizar mediante un lector de pantalla. A continuación puede ver una lista de comandos de teclado disponibles para interactuar con la plataforma"]}},35757:e=>{e.exports={en:["Trend Angle"],es:["Ángulo de tendencia"]}},97339:e=>{e.exports={en:["Trend Line"],es:["Línea de tendencia"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],es:["Extensión de Fibonacci basada en tendencias"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],es:["Zona temporal de Fibonacci basada en tendencias"]}},1671:e=>{e.exports={en:["Triangle"],es:["Triángulo"]}},76152:e=>{e.exports={en:["Triangle Down"],es:["Triángulo descendente"]}},90148:e=>{e.exports={en:["Triangle Pattern"],es:["Patrón de triángulo"]}},21236:e=>{e.exports={en:["Triangle Up"],es:["Triángulo ascendente"]}},21007:e=>{e.exports={en:["Tunis"],es:["Túnez"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],es:["Deshacer"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],es:["Error inesperado en el modo Backtesting profundo. Póngase en contacto con el servicio de asistencia para obtener más información."]}},15432:e=>{e.exports={en:["Units"],es:["Unidades"]}},11768:e=>{e.exports={en:["Unknown error"],es:["Error desconocido"]}},99894:e=>{e.exports={en:["Unlock"],es:["Desbloquear"]}},75546:e=>{e.exports={en:["Unsupported interval"],es:["Intervalo no admitido"]}},8580:e=>{e.exports={en:["User-defined error"],es:["Error definido por el usuario"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],
|
||||
es:["Perfil de volumen con rango fijo (Volume Profile Fixed Range)"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],es:["Indicador de Perfil de volumen disponible únicamente para nuestros usuarios con planes ampliados."]}},93722:e=>{e.exports={en:["Volume candles"],es:["Velas de volumen"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],es:["Los datos de volumen no están disponibles en el plan de datos BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],es:["Huella (footprint) de volumen"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],es:["Línea vertical"]}},23160:e=>{e.exports={en:["Vienna"],es:["Viena"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],es:["Visibilidad"]}},54853:e=>{e.exports={en:["Visibility on intervals"],es:["Visibilidad en los intervalos"]}},58302:e=>{e.exports={en:["Visible on tap"],es:["Visible al toque"]}},10309:e=>{e.exports={en:["Visible on mouse over"],es:["Visible al pasar el ratón"]}},4077:e=>{e.exports={en:["Visual order"],es:["Orden visual"]}},11316:e=>{e.exports={en:["X Cross"],es:["Cruz en X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],es:["Patrón XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],es:["No puede ver este intervalo de tiempo de puntos pivote con esta resolución"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],es:["Tiene dibujos bloqueados en este símbolo. ¿Desea eliminar también esto dibujos?"]}},53168:e=>{e.exports={en:["Yangon"],es:["Yangón"]}},93123:e=>{e.exports={en:["Yes, remove them"],es:["Sí, quítelos"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"],es:["cambiar el grado de Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],es:["cambiar las etiquetas no superpuestas"]}},76852:e=>{e.exports={en:["change average close price label visibility"],es:["cambiar la visibilidad de la etiqueta del precio medio de cierre"]}},1022:e=>{e.exports={en:["change average close price line visibility"],es:["cambiar la visibilidad de la línea del precio medio de cierre"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],es:["cambiar la visibilidad de las etiquetas de compra y venta (bid and ask)"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],es:["cambiar la visibilidad de las líneas de compra y venta (bid and ask)"]}},32302:e=>{e.exports={en:["change currency"],es:["cambiar divisa"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],es:["cambiar la plantilla del gráfico de {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],es:["cambiar la visibilidad del cambio de contrato continuo"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],es:["cambiar la visibilidad de la cuenta atrás del cierre de barra"]}},16979:e=>{e.exports={en:["change date range"],
|
||||
es:["cambiar el rango de fechas"]}},53929:e=>{e.exports={en:["change dividends visibility"],es:["cambiar la visibilidad de los dividendos"]}},6119:e=>{e.exports={en:["change events visibility on chart"],es:["cambiar la visibilidad de los eventos en el gráfico"]}},6819:e=>{e.exports={en:["change earnings visibility"],es:["cambiar la visibilidad de los beneficios"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],es:["cambiar visibilidad del vencimiento de los contratos de futuros"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],es:["cambiar la visibilidad de las etiquetas de precios máximos y mínimos"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],es:["cambiar la visibilidad de las líneas de precios máximos y mínimos"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],es:["cambiar la visibilidad de las etiquetas con los nombres de los indicadores"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],es:["cambiar la visibilidad de las etiquetas con el valor de los indicadores"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],es:["cambiar visibilidad últimas noticias y Pensamientos"]}},88849:e=>{e.exports={en:["change linking group"],es:["cambiar el grupo de enlace"]}},14691:e=>{e.exports={en:["change pane height"],es:["cambiar la altura del panel"]}},96379:e=>{e.exports={en:["change plus button visibility"],es:["cambiar la visibilidad del botón +"]}},76660:e=>{e.exports={en:["change point"],es:["cambiar el punto"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],es:["cambiar la visibilidad de la etiqueta de precios pre/pos mercado"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],es:["cambiar la visibilidad de la línea de precios pre/pos mercado"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],es:["cambiar la visibilidad de la línea de precios del cierre anterior"]}},8662:e=>{e.exports={en:["change price line visibility"],es:["cambiar la visibilidad de la línea con los precios"]}},2509:e=>{e.exports={en:["change price to bar ratio"],es:["cambiar la ratio precio/barra"]}},32829:e=>{e.exports={en:["change resolution"],es:["cambiar resolución"]}},35400:e=>{e.exports={en:["change symbol"],es:["cambiar símbolo"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],es:["cambiar la visibilidad de las etiquetas de símbolos"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],es:["cambiar la visibilidad del último valor de los símbolos"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],es:["cambiar la visibilidad con el valor del cierre anterior de los símbolos"]}},87041:e=>{e.exports={en:["change session"],es:["cambiar la sesión"]}},38413:e=>{e.exports={en:["change session breaks visibility"],es:["cambiar la visibilidad de las rupturas de las sesiones"]}},49965:e=>{e.exports={en:["change series style"],es:["cambiar el estilo de la serie"]}},47474:e=>{
|
||||
e.exports={en:["change splits visibility"],es:["cambiar la visibilidad de los splits"]}},20137:e=>{e.exports={en:["change timezone"],es:["cambiar la zona horaria"]}},85975:e=>{e.exports={en:["change unit"],es:["cambiar unidad"]}},1924:e=>{e.exports={en:["change visibility"],es:["cambiar la visibilidad"]}},84331:e=>{e.exports={en:["change visibility at current interval"],es:["cambiar visibilidad del intervalo actual"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],es:["cambiar visibilidad del intervalo actual y superior"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],es:["cambiar visibilidad del intervalo actual e inferior"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],es:["cambiar visibilidad en todos los intervalos"]}},94566:e=>{e.exports={en:["charts by TradingView"],es:["gráficos por TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],es:["clonar las herramientas de líneas"]}},46219:e=>{e.exports={en:["create line tools group"],es:["crear grupo de herramientas de líneas"]}},95394:e=>{e.exports={en:["create line tools group from selection"],es:["crear el grupo de herramientas de líneas a partir de la selección"]}},12898:e=>{e.exports={en:["create {tool}"],es:["crear {tool}"]}},94227:e=>{e.exports={en:["cut sources"],es:["recortar fuentes"]}},11500:e=>{e.exports={en:["cut {title}"],es:["recortar {title}"]}},63869:e=>{e.exports={en:["anchor objects"],es:["anclar objetos"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],es:["añadir la herramienta de líneas {lineTool} al grupo {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],es:["añadir herramienta(s) de línea al grupo {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],es:["añadi estos parámetros financieros a todo el diseño"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],es:["añadir este indicador a todo el diseño"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],es:["añadir esta estrategia a todo el diseño"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],es:["añadir este símbolo a todo el diseño"]}},4128:e=>{e.exports={en:["align to 45 degrees"],es:["alinear a 45 grados"]}},68231:e=>{e.exports={en:["apply chart theme"],es:["aplicar esquema al gráfico"]}},99551:e=>{e.exports={en:["apply all chart properties"],es:["aplicar todas las propiedades del gráfico"]}},89720:e=>{e.exports={en:["apply drawing template"],es:["aplicar plantilla de dibujo"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],es:["aplicar los valores por defecto de fábrica a las fuentes seleccionadas"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],es:["aplicar los indicadores a todo el diseño"]}},69604:e=>{e.exports={en:["apply study template {template}"],es:["aplicar la plantilla de estudio {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],es:["aplicar el esquema de la barra de herramientas"]}},1979:e=>{e.exports={
|
||||
en:["bring group {title} forward"],es:["traer grupo de {title} adelante"]}},53159:e=>{e.exports={en:["bring {title} to front"],es:["traer {title} al frente"]}},41966:e=>{e.exports={en:["bring {title} forward"],es:["traer {title} hacia delante"]}},44676:e=>{e.exports={en:["by TradingView"],es:["por TradingView"]}},58850:e=>{e.exports={en:["date range lock"],es:["bloqueo rango de fechas"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],es:["excluir las herramientas de líneas del grupo {group}"]}},13017:e=>{e.exports={en:["hide {title}"],es:["ocultar {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],es:["ocultar las marcas en las barras"]}},56558:e=>{e.exports={en:["interval lock"],es:["bloquear intervalo"]}},6830:e=>{e.exports={en:["invert scale"],es:["invertir escala"]}},48818:e=>{e.exports={en:["insert {title}"],es:["introducir {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],es:["introducir {title} después de {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],es:["añadir {title} después de {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],es:["añadir {title} antes de {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],es:["añadir {title} antes de {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],es:["cargar la plantilla de dibujo por defecto"]}},62011:e=>{e.exports={en:["loading..."],es:["cargando..."]}},76104:e=>{e.exports={en:["lock {title}"],es:["bloquear {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],es:["bloquear grupo {group}"]}},18942:e=>{e.exports={en:["lock objects"],es:["bloquear objetos"]}},98277:e=>{e.exports={en:["move"],es:["movimiento"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],es:["mover {title} a la nueva escala izquierda"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],es:["mover {title} a la nueva escala de la derecha"]}},64077:e=>{e.exports={en:["move all scales to left"],es:["mover todas las escalas a la izquierda"]}},19013:e=>{e.exports={en:["move all scales to right"],es:["mover todas las escalas a la derecha"]}},52510:e=>{e.exports={en:["move drawing(s)"],es:["mover dibujo(s)"]}},79209:e=>{e.exports={en:["move left"],es:["mover hacia la izquierda"]}},60114:e=>{e.exports={en:["move right"],es:["mover hacia la derecha"]}},44854:e=>{e.exports={en:["move scale"],es:["mover escala"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],es:["crear {title} sin escala (pantalla completa)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],es:["hacer que no se visualice el grupo {group}"]}},45987:e=>{e.exports={en:["make group {group} visible"],es:["hacer visible el grupo {group}"]}},78055:e=>{e.exports={en:["merge down"],es:["unir por debajo"]}},41866:e=>{e.exports={en:["merge to pane"],es:["unir al panel"]}},52458:e=>{e.exports={en:["merge up"],es:["unir por encima"]}},90091:e=>{e.exports={en:["n/a"],es:["No disponible"]}},94981:e=>{e.exports={en:["scale price"],
|
||||
es:["escala de precios"]}},63796:e=>{e.exports={en:["scale price chart only"],es:["solo gráfico de precios a escala"]}},70771:e=>{e.exports={en:["scale time"],es:["escala de tiempo"]}},42070:e=>{e.exports={en:["scroll"],es:["desplazarse"]}},87840:e=>{e.exports={en:["scroll time"],es:["desplazarse por el horario"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],es:["establecer la estrategia de selección de la escala de precios de {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],es:["enviar {title} hacia atrás"]}},5005:e=>{e.exports={en:["send {title} to back"],es:["enviar {title} atrás"]}},69546:e=>{e.exports={en:["send group {title} backward"],es:["enviar grupo de {title} atrás"]}},63934:e=>{e.exports={en:["share line tools globally"],es:["compartir las herramientas de línea globalmente"]}},90221:e=>{e.exports={en:["share line tools in layout"],es:["compartir las herramientas de línea en la plantilla"]}},13336:e=>{e.exports={en:["show all ideas"],es:["mostrar todas las ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"],es:["mostrar las ideas de los usuarios seguidos"]}},57460:e=>{e.exports={en:["show my ideas only"],es:["mostrar solo mis ideas"]}},4114:e=>{e.exports={en:["stay in drawing mode"],es:["permanecer en modo dibujo"]}},3350:e=>{e.exports={en:["stop syncing drawing"],es:["dejar de sincronizar los dibujos"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],es:["dejar de sincronizar las herramienta(s) de línea"]}},53278:e=>{e.exports={en:["symbol lock"],es:["bloquear símbolo"]}},91677:e=>{e.exports={en:["sync time"],es:["tiempo de sincronización"]}},3140:e=>{e.exports={en:["powered by"],es:["con tecnología de"]}},92800:e=>{e.exports={en:["powered by TradingView"],es:["con tecnología de TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],es:["pegar dibujo"]}},1064:e=>{e.exports={en:["paste indicator"],es:["pegar indicador"]}},57010:e=>{e.exports={en:["paste {title}"],es:["pegar {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],es:["fijar a la escala izquierda"]}},7495:e=>{e.exports={en:["pin to right scale"],es:["Fijar a escala derecha"]}},81566:e=>{e.exports={en:["pin to scale {label}"],es:["fijar a escala {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],es:["reordenar paneles"]}},60806:e=>{e.exports={en:["remove all indicators"],es:["eliminar todos los indicadores"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],es:["eliminar todos los indicadores y herramientas de dibujo"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],es:["eliminar las líneas en blanco no seleccionadas"]}},30538:e=>{e.exports={en:["remove drawings"],es:["eliminar dibujos"]}},1193:e=>{e.exports={en:["remove drawings group"],es:["eliminar grupo de dibujos"]}},38199:e=>{e.exports={en:["remove line data sources"],es:["eliminar las fuentes de datos de las líneas"]}},93333:e=>{e.exports={en:["remove pane"],es:["eliminar panel"]}},94543:e=>{e.exports={en:["remove {title}"],
|
||||
es:["eliminar {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],es:["eliminar el grupo de herramientas de líneas {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],es:["cambiar el nombre del grupo {group} a {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],es:["restablecer el tamaño de la plantilla"]}},3323:e=>{e.exports={en:["reset scales"],es:["restablecer escala"]}},17336:e=>{e.exports={en:["reset time scale"],es:["reiniciar escala de tiempo"]}},47418:e=>{e.exports={en:["resize layout"],es:["cambiar el tamaño de la plantilla"]}},85815:e=>{e.exports={en:["restore defaults"],es:["restablecer valores por defecto"]}},96881:e=>{e.exports={en:["restore study defaults"],es:["restaurar los valores por defecto del estudio"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],es:["cambiar el estado del panel maximizado"]}},42240:e=>{e.exports={en:["toggle auto scale"],es:["alternar escala automática"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],es:["alternar el estado del panel colapsado"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],es:["alternar indexado a una escala de 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],es:["alternar bloquear escala"]}},49403:e=>{e.exports={en:["toggle log scale"],es:["alternar escala logarítmica"]}},98994:e=>{e.exports={en:["toggle percentage scale"],es:["alternar escala de porcentajes"]}},80688:e=>{e.exports={en:["toggle regular scale"],es:["alternar escala regular"]}},46807:e=>{e.exports={en:["track time"],es:["controlar el tiempo"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],es:["desactivar la posibilidad de compartir herramientas de línea"]}},99234:e=>{e.exports={en:["unanchor objects"],es:["desanclar objetos"]}},23230:e=>{e.exports={en:["unlock objects"],es:["desbloquear objetos"]}},74590:e=>{e.exports={en:["unlock group {group}"],es:["desbloquear al grupo {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],es:["desbloquear {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],es:["desagrupar en el nuevo panel inferior"]}},79443:e=>{e.exports={en:["unmerge up"],es:["desagrupar por encima"]}},46453:e=>{e.exports={en:["unmerge down"],es:["desagrupar por debajo"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],es:["Actualmente, el tipo de gráfico {chartStyle} no está disponible para intervalos basados en ticks."]}},41643:e=>{e.exports={en:["{count} bars"],es:["{count} barras"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],es:["Información financiera de {symbol} por TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],es:["{userName} publicado en {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],es:["aumentar"]}},73638:e=>{e.exports={en:["zoom out"],es:["alejar"]}},41807:e=>{e.exports={en:["day","days"],es:["día","días"]}},42328:e=>{e.exports={en:["hour","hours"],es:["hora","horas"]}},98393:e=>{e.exports={
|
||||
en:["month","months"],es:["mes","meses"]}},78318:e=>{e.exports={en:["minute","minutes"],es:["minuto","minutos"]}},33232:e=>{e.exports={en:["second","seconds"],es:["segundo","segundos"]}},89937:e=>{e.exports={en:["range","ranges"],es:["rango","rangos"]}},48898:e=>{e.exports={en:["week","weeks"],es:["semana","semanas"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],es:["{amount} dibujo","{amount} dibujos"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],es:["{amount} indicador","{amount} indicadores"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],es:["{count}a","{count}a"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],es:["ETF Schwab Short-Term US Treasury"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],es:["Índice S&P/ASX All Australian 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],es:["Índice S&P/ASX All Australian 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],es:["Índice S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],es:["Dólar australiano/Dólar canadiense"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],es:["Dólar australiano/Franco suizo"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],es:["Dólar australiano/Yen japonés"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],es:["Dólar australiano/Dólar neozelandés"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],es:["Dólar australiano/Rublo ruso"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],es:["Dólar australiano/Dólar estadounidense"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],es:["Índice S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"],es:["Bitcoin al contado/Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],es:["Bitcoin Cash/Dólar estadounidense"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],es:["Índice BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],es:["Índice BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],es:["Bitcoin/Índice dólar estadounidense"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],es:["Índice IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],es:["Índice Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],es:["Índice IBrasil"]},
|
||||
e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],es:["Índice Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],es:["Índice S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],es:["Real brasileño/Yen japonés"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],es:["Índice S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],es:["Bitcoin/Real brasileño"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],es:["Bitcoin/Dólar Canadiense"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],es:["Bitcoin/Yuan Chino"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],es:["Bitcoin/Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],es:["Bitcoin/Libra esterlina"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],es:["Bitcoin/Yen japonés"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],es:["Bitcoin/Won Surcoreano"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],es:["Bitcoin/Esloti polaco"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],es:["Bitcoin/Rublo ruso"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],es:["Bitcoin/Baht tailandés"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],es:["Bitcoin/Dólar estadounidense"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],es:["Bitcoin Gold/Dólar estadounidense"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],es:["Índice S&P/BVL Peru General (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],es:["Índice Brazil Bovespa"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],es:["Dólar canadiense/Yen japonés"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],es:["Dólar canadiense/Dólar estadounidense"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],es:["Índice S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],es:["Índice volatilidad S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],es:["Futuros T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],es:["Futuros de maíz"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],es:["Futuros de la harina de soja"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],es:["Futuros T-Note a 10 años"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],es:["Futuros de la avena"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],
|
||||
es:["Futuros sobre el tipo de interés de los fondos federales a 30 días"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],es:["Futuros de arroz"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],es:["Futuros de soja"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],es:["Futuros Trigo"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],es:["Futuros mini de soja"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],es:["Futuros mini de trigo"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],es:["Futuros E-mini Dow Jones ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],es:["Franco suizo/Yen japonés"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],es:["Franco suizo/Dólar estadounidense"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],es:["Futuros de bitcoin del CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],es:["Futuros de mantequilla: efectivo (continuo: contrato vigente con vencimiento próximo)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],es:["Futuros ganado de engorde"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],es:["Futuros carne de cerdo"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],es:["Futuros de ganado vivo"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],es:["Futuros E-mini euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],es:["Futuros E-Mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],es:["Futuros E-mini del yen japonés"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],es:["Futuros NASDAQ 100 E-mini"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],es:["Futuros del índice E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],es:["Futuros Aluminium European Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],es:["Futuros Aluminum MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],es:["Futuros de oro"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],es:["Futuros Cobre"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],es:["Futuros de la plata"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],es:["Futuros E-mini cobre"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],es:["Futuros (Mini) plata"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],es:["Futuros de oro (Mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],
|
||||
es:["CFDs sobre cobre"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],es:["CFDs sobre maíz"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],es:["CFDs sobre algodón"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],es:["Capitalización total del mercado de criptomonedas, USD"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],es:["Índice DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],es:["Índice Dow Jones Composite Average"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],es:["Índice Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],es:["Índice Dow Jones de materias primas: cacao"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],es:["Índice Dow Jones de materias primas: energía."]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],es:["Índice Dow Jones de materias primas: oro"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],es:["Índice de materias primas de Dow Jones: granos"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],es:["Índice Dow Jones de materias primas: níquel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],es:["Índice Dow Jones de materias primas: café"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],es:["Índice Dow Jones de materias primas: azúcar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],es:["Índice Dow Jones de materias primas: plata"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],es:["Índice Dow Jones Transportation Average"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],es:["Índice Dow Jones Utility Average"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],es:["Índice Dow Jones U.S. Coal"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],es:["Índice EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],es:["Ethereum Classic/Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"],es:["Ethereum Classic/Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],es:["Ethereum Classic/Dólar estadounidense"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"],es:["Ethereum/Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],es:["Ethereum/Libra británica"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],
|
||||
es:["Ethereum/Yen japonés"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],es:["Ethereum/Won surcoreano"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],es:["Ethereum/Baht tailandés"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],es:["Ethereum/Dólar estadounidense"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],es:["Futuros del Bono Alemán"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],es:["Euro/Dólar Australiano"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],es:["Euro/Real brasileño"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],es:["Euro/Dólar canadiense"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],es:["Euro/Franco suizo"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],es:["Euro/Libra esterlina"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],es:["Euro/Yen japonés"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],es:["Euro/Corona noruega"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],es:["Euro/Dólar neozelandés"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],es:["Índice AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],es:["Índice BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],es:["Índice CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],es:["Euro/Rublo ruso"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],es:["Eur/Rublo ruso TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],es:["Euro FX/Corona sueca"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],es:["Euro/Lira turca"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],es:["Euro/Dólar estadounidense"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],es:["Índice Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],es:["Indice CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],es:["Producto Interior Bruto, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],es:["Población Total: Todas las Edades incluyendo Fuerzas Armadas fuera del país"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],es:["Tasa de Desempleo"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],es:["Índice FTSE Bursa Malaysia KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],es:["Índice S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},
|
||||
e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],es:["Libra esterlina/Dólar australiano"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],es:["Libra esterlina/Dólar canadiense"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],es:["Libra esterlina/Franco suizo"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],es:["Libra Esterlina/Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],es:["Libra esterlina/Yen japonés"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],es:["Libra esterlina/Dólar neozelandés"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],es:["Libra británica/Esloti polaco"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],es:["Libra/Rublo ruso"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],es:["Libra esterlina/Dólar estadounidense"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],es:["Índice DAX"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],es:["Alphabet Inc. (Google) Clase C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],es:["Índice WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],es:["Índice Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],es:["Futuros del índice del dólar de EE. UU."]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],es:["Índice IDX Composite"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],es:["Índice MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],es:["Índice Euro STOXX 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],es:["Índice STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],es:["Índice ponderado de Taiwán"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],es:["IOTA/Dólar estadounidense"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],es:["Índice Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],es:["Yen japonés/Won surcoreano"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],es:["Yen japonés/Rublo ruso"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],es:["Yen japonés/Dólar estadounidense"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},
|
||||
e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],es:["Litecoin/Real brasileño"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],es:["Litecoin/Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],es:["Litecoin/Dólar estadounidense"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],es:["Luna/Dólar estadounidense"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],es:["Futuros Petroleo Brent"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],es:["Índice MOEX de Rusia"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],es:["Índice MOEX"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],es:["Futuros del índice MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],es:["Futuros índice MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],es:["Futuros del índice RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],es:["Índice RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],es:["CFD US 100 Cash"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],es:["Índice PHLX Housing Sector"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],es:["ETF iShares 7-10 Year Treasury Bond"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],es:["ETF iShares 3-7 Year Treasury Bond"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],es:["Índice Nasdaq Composite"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],es:["Índice Nasdaq 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],es:["Índice PHLX Oil Service Sector"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],es:["Índice de semiconductores de Filadelfia"]},e.exports["#NASDAQ:TLT-symbol-description"]={
|
||||
en:["Ishares 20+ Year Treasury Bond ETF"],es:["ETF Ishares 20+ Year Treasury Bond"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],es:["Índice PHLX Utility Sector"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],es:["Índice PHLX del sector de oro y plata"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],es:["NEO/Dólar estadounidense"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],es:["Gas natural (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],es:["Índice Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],es:["Índice Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],es:["Futuros NY Etanol"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],es:["Futuros de cacao"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],es:["Futuros de Crudo Ligero"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],es:["Futuros NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],es:["Futuros Café"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],es:["Futuros Gas Natural"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],es:["Futuros de paladio"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],es:["Futuros Platino"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],es:["Futuros Gasolina RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],es:["Futuros de algodón"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],es:["Futuros E-mini gas natural"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],es:["Futuros E-mini de crudo ligero"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],es:["Futuros E-mini gasolina"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],es:["Índice NYSE Composite"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],es:["Índice AMEX Composite"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],es:["Índice NYSE ARCA Major Market"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],es:["Dólar neozelandés/Yen japonés"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],es:["Dólar neozelandés/Dólar estadounidense"]},
|
||||
e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],es:["S&P/NZX ALL Index ( Capital Index )"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],es:["S&P/NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],es:["CFDs sobre gas natural"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],es:["Índice S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],es:["CFDs sobre cobre (USD/LB)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],es:["Índice OMX Copenhagen 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],es:["Índice OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],es:["Índice OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],es:["Índice OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],es:["Índice OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],es:["Índice OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],es:["Índice QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],es:["Índice ruso RTS"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],es:["Índice Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],es:["Índice Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],es:["Índice Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],es:["Índice del mercado suizo"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],es:["Solana/Dólar estadounidense"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],es:["CFDs sobre soja"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],es:["Índice S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],es:["Índice S&P Goldman Sachs Commodity"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],es:["El Índice S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],es:["Índice Value S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],es:["Índice S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],es:["CFDs sobre azúcar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],es:["Índice Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},
|
||||
e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],es:["Índice Tadawul All Shares"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],es:["Índice TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],es:["Índice S&P/TSX Composite"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],es:["Índice S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],es:["Bonos de deuda pública Australia a 10A"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Australia a 10A"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],es:["Índice de divisas del dólar australiano"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],es:["Índice de divisas de la libra esterlina"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],es:["Bonos de deuda pública canadiense, 10 años"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Canadá a 10A"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],es:["Índice CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],es:["Bonos deuda pública China a 10A"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública China a 10A"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],es:["Índice de divisas del dólar canadiense"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],es:["Bonos deuda pública Alemania 10A"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Alemania a 10A"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],es:["Índice DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],es:["Índice del dólar de EE. UU."]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],es:["Bonos deuda pública España a 10A"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública España a 10A"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],es:["Índice de divisas del euro"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],es:["Bonos deuda pública Francia a 10A"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Francia a 10A"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"],es:["Índice Milano Italia Borsa"]},e.exports["#TVC:GB02-symbol-description"]={
|
||||
en:["UK Government Bonds 2 YR"],es:["Bonos deuda pública Reino Unido a 2 A"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],es:["Bonos deuda pública Reino Unido a 10A"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Reino Unido a 10A"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],es:["CFDs sobre oro (USD/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],es:["Índice Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],es:["Índice IBEX 35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],es:["Bonos de deuda púbica Indonesia a 3 A"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],es:["Bonos deuda pública Indonesia a 10A"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Indonesia a 10A"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],es:["Bono deuda pública India a 10A"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública India a 10A"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],es:["Bonos deuda pública Italia a 10A"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Italia a 10A"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],es:["Índice US Composite"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],es:["Bonos deuda pública Japón a 10A"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Japón a 10A"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],es:["Índice de divisas del yen japonés"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],es:["Índice Korea Composite Stock Price"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],es:["Bonos deuda pública Corea a 10A"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Corea a 10A"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],es:["Bonos deuda pública Malasia a 10A"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Malasia a 10A"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],es:["Índice US 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],es:["Índice Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],es:["Bonos de deuda pública neerlandesa, 10 años"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],
|
||||
es:["Rend. bonos deuda pública Países Bajos a 10A"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],es:["Índice NYSE Composite"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],es:["Bonos de deuda pública neozelandesa, 10 años"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Nueva Zelanda a 10A"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],es:["CFDs sibre paladio (USD/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],es:["Bonos de deuda pública de Polonia a 5A"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],es:["Bonos de deuda pública Polonia a 10A"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],es:["CFDs sobre platino (USD/OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],es:["Bonos de deuda pública Portugal de 10A"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Portugal a 10A"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],es:["Índice South Africa Top 40"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],es:["CFDs sobre plata (USD/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],es:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],es:["Índice de mercado suizo"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],es:["Índice Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],es:["Índice Euro Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],es:["Índice de divisas del franco suizo"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],es:["Bono deuda pública Turquía a 10A"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública Turquía a 10A"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],es:["CFDs sobre petróleo crudo Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],es:["Índice UK 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],es:["Bonos de deuda pública de EE. UU. a 2A"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],es:["Rendimiento bonos de deuda pública de EE. UU. a 2A"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],es:["Bonos de deuda pública EE. UU. a 5A"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],es:["Rendimiento bonos deuda pública de EE. UU. a 5A"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],es:["Bonos deuda pública EE. UU. a 10A"]},e.exports["#TVC:US10Y-symbol-description"]={
|
||||
en:["US Government Bonds 10 YR Yield"],es:["Rend. bonos deuda pública EE. UU. a 10A"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],es:["Bonos de deuda pública de EE. UU. a 30A"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],es:["CFDs sobre petróleo crudo WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],es:["Índice Volatility S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],es:["Índice de divisas del dólar neozelandés"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],es:["Índice ponderado de Taiwán"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],es:["Índice de capitalización de acciones ponderadas de Taiwan"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],es:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],es:["Índice FTSE100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],es:["CFDs sobre petróleo (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],es:["Uniswap/Dólar estadounidense"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],es:["Índice Dow Jones Industrial Average"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],es:["Dólar estadounidense/Dólar australiano"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],es:["Dólar estadounidense/Real brasileño"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],es:["Dólar estadounidense/Dólar canadiense"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],es:["Dólar estadounidense/Franco suizo"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],es:["Dólar estadounidense/Yuan chino"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],es:["Dólar estadounidense/Corona danesa"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],es:["Dólar estadounidense/Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],es:["Dólar estadounidense/Libra esterlina"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],es:["Dólar estadounidense/Dólar de Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],es:["Dólar estadounidense/Florín húngaro"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],es:["Dólar estadounidense/Rupia"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],es:["Dólar norteamericano/Shekel Israelí"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],es:["Dólar estadounidense/Rupia india"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],es:["Dólar estadounidense/Yen japonés"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],
|
||||
es:["Dólar estadounidense/Won surcoreano"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],es:["Dólar estadounidense/Peso mexicano"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],es:["Dólar estadounidense/Dólar neozelandés"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],es:["Dólar estadounidense/Peso filipino"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],es:["Dólar estadounidense/Esloti polaco"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],es:["Dólar estadounidense/Rublo ruso"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],es:["Dólar estadounidense/Rublo ruso TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],es:["Dólar estadounidense/Corona sueca"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],es:["Dólar estadounidense/Dólar singapurense"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],es:["Dólar estadounidense/Baht tailandés"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],es:["Dólar estadounidense/Lira turca"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],es:["Dólar estadounidense/Rand sudafricano"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],es:["CFDs sobre petróleo (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],es:["CFDs sobre trigo"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],es:["Plata/Dólar estadounidense"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],es:["Oro al contado/Dólar estadounidense"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],es:["Bitcoin/Dólar canadiense"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],es:["Índice DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],es:["Monero/Dólar estadounidense"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],es:["CFDs sobre paladio"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],es:["Platino/Dólar estadounidense"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],es:["XRP/Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],es:["XRP/Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],es:["XRP/Dólar estadounidense"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],es:["Zcash/Dólar estadounidense"]}}}]);
|
||||
@@ -1,8 +1,8 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],es:["barras"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],es:["(Máx.+Mín.+Cierre)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],es:["(Máx+Mín)/2"]}},31882:e=>{e.exports={en:["12-hours"],es:["12 horas"]}},5797:e=>{e.exports={en:["24-hours"],es:["24 horas"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],es:["Color de barras en función del cierre anterior"]}},23739:e=>{e.exports={en:["Canvas"],es:["Lienzo"]}},24197:e=>{e.exports={en:["Center"],es:["Centro"]}},15153:e=>{e.exports={en:["Chart basic styles"],es:["Estilos básicos del gráfico"]}},45639:e=>{e.exports={en:["Chart values"],es:["Valores del gráfico"]}},84831:e=>{e.exports={en:["Close line"],es:["Línea de cierre"]}},74622:e=>{e.exports={en:["Crosshair"],es:["Retícula"]}},81849:e=>{e.exports={en:["Currency"],es:["Divisa"]}},3015:e=>{e.exports={en:["Currency and Unit"],es:["Divisa y unidad"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],es:["Ajustar datos de los dividendos"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],es:["Ajustar para cambios de contrato"]}},36620:e=>{e.exports={en:["Alerts"],es:["Alertas"]}},14119:e=>{e.exports={en:["Arguments"],es:["Argumentos"]}},68650:e=>{e.exports={en:["Average close"],es:["Cierre medio"]}},27567:e=>{e.exports={en:["Bottom"],es:["Parte inferior"]}},3159:e=>{e.exports={en:["Bottom line"],es:["Resultado final"]}},74406:e=>{e.exports={en:["Body"],es:["Cuerpo"]}},333:e=>{e.exports={en:["Borders"],es:["Bordes"]}},79468:e=>{e.exports={en:["Background"],es:["Fondo"]}},10842:e=>{e.exports={en:["Bar change values"],es:["Valores de los cambios en la barra"]}},28975:e=>{e.exports={en:["Base level"],es:["Nivel de la base"]}},76473:e=>{e.exports={en:["Bid and ask"],es:["Compra y venta (bid/ask)"]}},32744:e=>{e.exports={en:["Buttons"],es:["Botones"]}},68662:e=>{e.exports={en:["Grid lines"],es:["Líneas cuadrícula"]}},17611:e=>{e.exports={en:["Down bars"],es:["Barras descendentes"]}},23743:e=>{e.exports={en:["Down color"],es:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],es:["Modificación de datos"]}},84838:e=>{e.exports={en:["Date format"],es:["Formato de fecha"]}},42357:e=>{e.exports={en:["Day of week on labels"],es:["Día de la semana en las etiquetas"]}},16564:e=>{e.exports={en:["Default"],es:["Por defecto"]}},78734:e=>{e.exports={en:["Description"],es:["Descripción"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],es:["Información general sobre el horario de negociación electrónica"]}},69808:e=>{e.exports={en:["Events"],es:["Eventos"]}},41129:e=>{e.exports={en:["Fill"],es:["Rellenar"]}},61112:e=>{e.exports={en:["Fill top area"],es:["Rellenar el área superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],es:["Rellenar el área inferior"]}},886:e=>{e.exports={en:["HLC bars"],es:["Barras con el máximo, mínimo y cierre (HLC)"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={
|
||||
en:["Horz only"],es:["Solo horiz"]}},14180:e=>{e.exports={en:["High and low"],es:["Máximo y mínimo"]}},56359:e=>{e.exports={en:["High line"],es:["Línea de máximos"]}},47326:e=>{e.exports={en:["Integer"],es:["Número entero"]}},84549:e=>{e.exports={en:["Indicators"],es:["Indicadores"]}},78082:e=>{e.exports={en:["Indicators and financials"],es:["Indicadores y datos financieros"]}},25765:e=>{e.exports={en:["Open market status"],es:["Situación de la apertura del mercado"]}},34579:e=>{e.exports={en:["Low line"],es:["Línea de mínimos"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],es:["Descripción larga"]}},72423:e=>{e.exports={en:["Last day change values"],es:["Valores del cambio del último día"]}},11626:e=>{e.exports={en:["Left"],es:["Izquierda"]}},8249:e=>{e.exports={en:["Money"],es:["Dinero"]}},70937:e=>{e.exports={en:["Margins"],es:["Márgenes"]}},68833:e=>{e.exports={en:["Middle"],es:["En el medio"]}},58589:e=>{e.exports={en:["No overlapping labels"],es:["Sin etiquetas superpuestas"]}},60798:e=>{e.exports={en:["None"],es:["Ninguno"]}},51019:e=>{e.exports={en:["Navigation"],es:["Navegación"]}},99709:e=>{e.exports={en:["Name"],es:["Nombre"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],es:["Guardar la posición del borde izquierdo del gráfico al cambiar el intervalo"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],es:["Modos de escala (A y L)"]}},93968:e=>{e.exports={en:["Scales"],es:["Escalas"]}},90275:e=>{e.exports={en:["Scales and lines"],es:["Escalas y líneas"]}},30042:e=>{e.exports={en:["Scales placement"],es:["Colocación de escalas"]}},28715:e=>{e.exports={en:["Status line"],es:["Linea de estado"]}},95481:e=>{e.exports={en:["Symbol"],es:["Símbolo"]}},53263:e=>{e.exports={en:["Pane"],es:["Panel"]}},82894:e=>{e.exports={en:["Pane separators"],es:["Separadores del panel"]}},16207:e=>{e.exports={en:["Percentage"],es:["Porcentaje"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],es:["Pre/pos mercado"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],es:["Información horaria pre/pos mercado"]}},59766:e=>{e.exports={en:["Precision"],es:["Precisión"]}},83811:e=>{e.exports={en:["Previous day close"],es:["Cierre del día anterior"]}},35082:e=>{e.exports={en:["Price Scale"],es:["Escala de precios"]}},27632:e=>{e.exports={en:["Price and percentage value"],es:["Precio y valor porcentual"]}},62142:e=>{e.exports={en:["Price labels & lines"],es:["Etiquetas y líneas de precios"]}},84684:e=>{e.exports={en:["Price source"],es:["Fuente de los precios"]}},73466:e=>{e.exports={en:["Projection up bars"],es:["Barras superiores de proyección"]}},77430:e=>{e.exports={en:["Projection candles"],es:["Velas de proyección"]}},88367:e=>{e.exports={en:["Projection down bars"],es:["Barras de proyección descendentes"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],es:["Precios reales en la escala (en lugar del precio Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],es:["Derecha"]}},
|
||||
62532:e=>{e.exports={en:["Right Margin"],es:["Margen derecho"]}},41571:e=>{e.exports={en:["Watermark"],es:["Marca de agua"]}},32163:e=>{e.exports={en:["Wick"],es:["Mecha"]}},97118:e=>{e.exports={en:["Top"],es:["Parte superior"]}},89349:e=>{e.exports={en:["Top line"],es:["Línea superior"]}},70320:e=>{e.exports={en:["Text"],es:["Тexto"]}},25485:e=>{e.exports={en:["Text alignment"],es:["Alineación del texto"]}},67781:e=>{e.exports={en:["Text orientation"],es:["Orientación del texto"]}},20215:e=>{e.exports={en:["Thin bars"],es:["Barras finas"]}},70198:e=>{e.exports={en:["Title"],es:["Título"]}},29854:e=>{e.exports={en:["Titles"],es:["Títulos"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"],es:["Ticker y descripción"]}},24821:e=>{e.exports={en:["Ticks"],es:["Tics"]}},93965:e=>{e.exports={en:["Time Scale"],es:["Escala de tiempo"]}},5591:e=>{e.exports={en:["Time hours format"],es:["Formato de las horas"]}},77073:e=>{e.exports={en:["Timezone"],es:["Zona horaria"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],es:["Unidad"]}},23091:e=>{e.exports={en:["Up color"],es:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],es:["Barras superiores"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],es:["Utilizar la liquidación como cierre en intervalos diarios"]}},37644:e=>{e.exports={en:["Volume"],es:["Volumen"]}},51514:e=>{e.exports={en:["Value"],es:["Valor"]}},31218:e=>{e.exports={en:["Value according to scale"],es:["Valor conforme a la escala"]}},60092:e=>{e.exports={en:["Values"],es:["Valores"]}},83594:e=>{e.exports={en:["Vert and horz"],es:["Vert y horiz"]}},8402:e=>{e.exports={en:["Vert only"],es:["Solo vert"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],es:["vela"]}},27068:e=>{e.exports={en:["change HLC bars"],es:["cambiar las barras HLC"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],es:["cambiar la visibilidad de los botones de navegación"]}},96227:e=>{e.exports={en:["change open market status visibility"],es:["cambiar visibilidad de la situación de la apertura del mercado"]}},43231:e=>{e.exports={en:["change average close price line width"],es:["cambiar anchura de la línea del precio medio de cierre"]}},47026:e=>{e.exports={en:["change average close price line color"],es:["cambiar color de la línea del precio medio de cierre"]}},86866:e=>{e.exports={en:["change area fill color"],es:["cambiar el color de relleno del área"]}},89346:e=>{e.exports={en:["change area line width"],es:["cambiar el ancho de la línea del área"]}},29605:e=>{e.exports={en:["change area line color"],es:["cambiar el color de la línea del área"]}},4640:e=>{e.exports={en:["change area price source"],es:["cambiar la fuente de los precios del área"]}},98407:e=>{e.exports={en:["change ask line color"],es:["cambiar el color de la línea de venta (ask)"]}},42190:e=>{e.exports={en:["change base level"],es:["cambiar el nivel de referencia"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],es:["barras"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],es:["(Máx.+Mín.+Cierre)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],es:["(Máx+Mín)/2"]}},31882:e=>{e.exports={en:["12-hours"],es:["12 horas"]}},5797:e=>{e.exports={en:["24-hours"],es:["24 horas"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],es:["Color de barras en función del cierre anterior"]}},23739:e=>{e.exports={en:["Canvas"],es:["Lienzo"]}},24197:e=>{e.exports={en:["Center"],es:["Centro"]}},15153:e=>{e.exports={en:["Chart basic styles"],es:["Estilos básicos del gráfico"]}},45639:e=>{e.exports={en:["Chart values"],es:["Valores del gráfico"]}},84831:e=>{e.exports={en:["Close line"],es:["Línea de cierre"]}},74622:e=>{e.exports={en:["Crosshair"],es:["Retícula"]}},81849:e=>{e.exports={en:["Currency"],es:["Divisa"]}},3015:e=>{e.exports={en:["Currency and Unit"],es:["Divisa y unidad"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],es:["Ajustar datos de los dividendos"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],es:["Ajustar para cambios de contrato"]}},36620:e=>{e.exports={en:["Alerts"],es:["Alertas"]}},14119:e=>{e.exports={en:["Arguments"],es:["Argumentos"]}},68650:e=>{e.exports={en:["Average close"],es:["Cierre medio"]}},27567:e=>{e.exports={en:["Bottom"],es:["Parte inferior"]}},3159:e=>{e.exports={en:["Bottom line"],es:["Resultado final"]}},74406:e=>{e.exports={en:["Body"],es:["Cuerpo"]}},333:e=>{e.exports={en:["Borders"],es:["Bordes"]}},79468:e=>{e.exports={en:["Background"],es:["Fondo"]}},10842:e=>{e.exports={en:["Bar change values"],es:["Valores de los cambios en la barra"]}},28975:e=>{e.exports={en:["Base level"],es:["Nivel de la base"]}},76473:e=>{e.exports={en:["Bid and ask"],es:["Compra y venta (bid/ask)"]}},32744:e=>{e.exports={en:["Buttons"],es:["Botones"]}},68662:e=>{e.exports={en:["Grid lines"],es:["Líneas cuadrícula"]}},17611:e=>{e.exports={en:["Down bars"],es:["Barras descendentes"]}},23743:e=>{e.exports={en:["Down color"],es:["Color inferior"]}},48225:e=>{e.exports={en:["Data modification"],es:["Modificación de datos"]}},84838:e=>{e.exports={en:["Date format"],es:["Formato de fecha"]}},42357:e=>{e.exports={en:["Day of week on labels"],es:["Día de la semana en las etiquetas"]}},16564:e=>{e.exports={en:["Default"],es:["Por defecto"]}},78734:e=>{e.exports={en:["Description"],es:["Descripción"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],es:["Información general sobre el horario de negociación electrónica"]}},69808:e=>{e.exports={en:["Events"],es:["Eventos"]}},41129:e=>{e.exports={en:["Fill"],es:["Rellenar"]}},61112:e=>{e.exports={en:["Fill top area"],es:["Rellenar el área superior"]}},73185:e=>{e.exports={en:["Fill bottom area"],es:["Rellenar el área inferior"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"],es:["Solo horiz"]}
|
||||
},14180:e=>{e.exports={en:["High and low"],es:["Máximo y mínimo"]}},56359:e=>{e.exports={en:["High line"],es:["Línea de máximos"]}},47326:e=>{e.exports={en:["Integer"],es:["Número entero"]}},84549:e=>{e.exports={en:["Indicators"],es:["Indicadores"]}},78082:e=>{e.exports={en:["Indicators and financials"],es:["Indicadores y datos financieros"]}},25765:e=>{e.exports={en:["Open market status"],es:["Situación de la apertura del mercado"]}},34579:e=>{e.exports={en:["Low line"],es:["Línea de mínimos"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],es:["Descripción larga"]}},72423:e=>{e.exports={en:["Last day change values"],es:["Valores del cambio del último día"]}},11626:e=>{e.exports={en:["Left"],es:["Izquierda"]}},8249:e=>{e.exports={en:["Money"],es:["Dinero"]}},70937:e=>{e.exports={en:["Margins"],es:["Márgenes"]}},68833:e=>{e.exports={en:["Middle"],es:["En el medio"]}},58589:e=>{e.exports={en:["No overlapping labels"],es:["Sin etiquetas superpuestas"]}},60798:e=>{e.exports={en:["None"],es:["Ninguno"]}},51019:e=>{e.exports={en:["Navigation"],es:["Navegación"]}},99709:e=>{e.exports={en:["Name"],es:["Nombre"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],es:["Guardar la posición del borde izquierdo del gráfico al cambiar el intervalo"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],es:["Modos de escala (A y L)"]}},93968:e=>{e.exports={en:["Scales"],es:["Escalas"]}},90275:e=>{e.exports={en:["Scales and lines"],es:["Escalas y líneas"]}},30042:e=>{e.exports={en:["Scales placement"],es:["Colocación de escalas"]}},28715:e=>{e.exports={en:["Status line"],es:["Linea de estado"]}},95481:e=>{e.exports={en:["Symbol"],es:["Símbolo"]}},53263:e=>{e.exports={en:["Pane"],es:["Panel"]}},82894:e=>{e.exports={en:["Pane separators"],es:["Separadores del panel"]}},16207:e=>{e.exports={en:["Percentage"],es:["Porcentaje"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],es:["Pre/pos mercado"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],es:["Información horaria pre/pos mercado"]}},59766:e=>{e.exports={en:["Precision"],es:["Precisión"]}},83811:e=>{e.exports={en:["Previous day close"],es:["Cierre del día anterior"]}},35082:e=>{e.exports={en:["Price Scale"],es:["Escala de precios"]}},27632:e=>{e.exports={en:["Price and percentage value"],es:["Precio y valor porcentual"]}},62142:e=>{e.exports={en:["Price labels & lines"],es:["Etiquetas y líneas de precios"]}},84684:e=>{e.exports={en:["Price source"],es:["Fuente de los precios"]}},73466:e=>{e.exports={en:["Projection up bars"],es:["Barras superiores de proyección"]}},77430:e=>{e.exports={en:["Projection candles"],es:["Velas de proyección"]}},88367:e=>{e.exports={en:["Projection down bars"],es:["Barras de proyección descendentes"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],es:["Precios reales en la escala (en lugar del precio Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],es:["Derecha"]}},62532:e=>{e.exports={en:["Right Margin"],
|
||||
es:["Margen derecho"]}},41571:e=>{e.exports={en:["Watermark"],es:["Marca de agua"]}},32163:e=>{e.exports={en:["Wick"],es:["Mecha"]}},97118:e=>{e.exports={en:["Top"],es:["Parte superior"]}},89349:e=>{e.exports={en:["Top line"],es:["Línea superior"]}},70320:e=>{e.exports={en:["Text"],es:["Тexto"]}},25485:e=>{e.exports={en:["Text alignment"],es:["Alineación del texto"]}},67781:e=>{e.exports={en:["Text orientation"],es:["Orientación del texto"]}},20215:e=>{e.exports={en:["Thin bars"],es:["Barras finas"]}},70198:e=>{e.exports={en:["Title"],es:["Título"]}},29854:e=>{e.exports={en:["Titles"],es:["Títulos"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"],es:["Ticker y descripción"]}},24821:e=>{e.exports={en:["Ticks"],es:["Tics"]}},93965:e=>{e.exports={en:["Time Scale"],es:["Escala de tiempo"]}},5591:e=>{e.exports={en:["Time hours format"],es:["Formato de las horas"]}},77073:e=>{e.exports={en:["Timezone"],es:["Zona horaria"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],es:["Unidad"]}},23091:e=>{e.exports={en:["Up color"],es:["Color superior"]}},36957:e=>{e.exports={en:["Up bars"],es:["Barras superiores"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],es:["Utilizar la liquidación como cierre en intervalos diarios"]}},37644:e=>{e.exports={en:["Volume"],es:["Volumen"]}},51514:e=>{e.exports={en:["Value"],es:["Valor"]}},31218:e=>{e.exports={en:["Value according to scale"],es:["Valor conforme a la escala"]}},60092:e=>{e.exports={en:["Values"],es:["Valores"]}},83594:e=>{e.exports={en:["Vert and horz"],es:["Vert y horiz"]}},8402:e=>{e.exports={en:["Vert only"],es:["Solo vert"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],es:["vela"]}},27068:e=>{e.exports={en:["change HLC bars"],es:["cambiar las barras HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],es:["cambiar la visibilidad de los botones de navegación"]}},96227:e=>{e.exports={en:["change open market status visibility"],es:["cambiar visibilidad de la situación de la apertura del mercado"]}},43231:e=>{e.exports={en:["change average close price line width"],es:["cambiar anchura de la línea del precio medio de cierre"]}},47026:e=>{e.exports={en:["change average close price line color"],es:["cambiar color de la línea del precio medio de cierre"]}},86866:e=>{e.exports={en:["change area fill color"],es:["cambiar el color de relleno del área"]}},89346:e=>{e.exports={en:["change area line width"],es:["cambiar el ancho de la línea del área"]}},29605:e=>{e.exports={en:["change area line color"],es:["cambiar el color de la línea del área"]}},4640:e=>{e.exports={en:["change area price source"],es:["cambiar la fuente de los precios del área"]}},98407:e=>{e.exports={en:["change ask line color"],es:["cambiar el color de la línea de venta (ask)"]}},42190:e=>{e.exports={en:["change base level"],es:["cambiar el nivel de referencia"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],
|
||||
es:["cambiar el color de la línea inferior de la línea de referencia"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],es:["cambiar el ancho de la línea inferior de la línea de referencia"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],es:["cambiar el color de relleno del área inferior de la línea de referencia"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],es:["cambiar el color de relleno del área superior de la línea de referencia"]}},68609:e=>{e.exports={en:["change baseline price source"],es:["cambiar la fuente de precios de referencia"]}},69044:e=>{e.exports={en:["change baseline top line color"],es:["cambiar el color de la línea superior de la línea de referencia"]}},68197:e=>{e.exports={en:["change baseline top line width"],es:["cambiar el ancho de la línea superior de la línea de referencia"]}},33464:e=>{e.exports={en:["change bar up color"],es:["cambiar el color superior de la barra"]}},27426:e=>{e.exports={en:["change bar change visibility"],es:["cambiar la visibilidad del cambio de barra"]}},59622:e=>{e.exports={en:["change bar down color"],es:["cambiar el color inferior de la barra"]}},17919:e=>{e.exports={en:["change bid line color"],es:["cambiar el color de la línea de compra (bid)"]}},32094:e=>{e.exports={en:["change bottom margin"],es:["cambiar el margen inferior"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],es:["cambiar la visibilidad de las etiquetas de divisas y unidades"]}},64003:e=>{e.exports={en:["change currency label visibility"],es:["cambiar la visibilidad de la etiqueta de divisas"]}},42803:e=>{e.exports={en:["change chart background color"],es:["cambiar el color de fondo del gráfico"]}},41382:e=>{e.exports={en:["change chart background type"],es:["cambiar el tipo de fondo del gráfico"]}},79637:e=>{e.exports={en:["change chart values visibility"],es:["cambiar la visibilidad de los valores del gráfico"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],es:["cambiar el color de las barras en función del valor de cierre anterior"]}},88324:e=>{e.exports={en:["change column up color"],es:["cambiar color superior de la columna"]}},93890:e=>{e.exports={en:["change column down color"],es:["cambiar color inferior de la columna"]}},4727:e=>{e.exports={en:["change column price source"],es:["cambiar la fuente del precio de la columna"]}},50544:e=>{e.exports={en:["change crosshair width"],es:["cambiar el ancho de la retícula"]}},92885:e=>{e.exports={en:["change crosshair color"],es:["cambiar el color de la retícula"]}},68418:e=>{e.exports={en:["change crosshair style"],es:["cambiar el estilo de la retícula"]}},43109:e=>{e.exports={en:["change date format"],es:["cambiar el formato de fecha"]}},30418:e=>{e.exports={en:["change day of week on labels"],es:["cambiar día de la semana en las etiquetas"]}},82063:e=>{e.exports={en:["change decimal places"],es:["cambiar las posiciones decimales"]}},44223:e=>{e.exports={en:["change extended hours color"],es:["cambiar el color del horario ampliado"]}},
|
||||
47393:e=>{e.exports={en:["change electronic trading hours"],es:["modificar el horario de negociación electrónica"]}},73844:e=>{e.exports={en:["change grid lines visibility"],es:["cambiar visibilidad de las líneas de cuadrículas"]}},61407:e=>{e.exports={en:["change high and low price line color"],es:["cambiar color de la línea de precio máximo y mínimo"]}},39581:e=>{e.exports={en:["change high and low price line width"],es:["cambiar ancho de la línea de precios máximos y mínimos"]}},6026:e=>{e.exports={en:["change high-low body color"],es:["cambiar el color del cuerpo de máximos y mínimos"]}},73021:e=>{e.exports={en:["change high-low body visibility"],es:["cambiar la visibilidad del cuerpo de máximos y mínimos"]}},46844:e=>{e.exports={en:["change high-low border color"],es:["cambiar el color del borde del máximos y mínimos"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],es:["cambiar la visibilidad de los bordes de máximos y mínimos"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],es:["cambiar la visibilidad de las etiquetas de máximos y mínimos"]}},56961:e=>{e.exports={en:["change high-low labels color"],es:["cambiar el color de las etiquetas de máximos y mínimos"]}},21133:e=>{e.exports={en:["change horz grid lines color"],es:["cambiar el color de las líneas de la cuadrícula horizontal"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],es:["cambiar la visibilidad de los títulos de los indicadores"]}},49583:e=>{e.exports={en:["change indicator values visibility"],es:["cambiar la visibilidad de los valores de los indicadores"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],es:["cambiar la visibilidad de los argumentos de los indicadores"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],es:["cambiar la visibilidad de las etiquetas con el nombre de los indicadores y de la información financiera"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],es:["cambiar la visibilidad de las etiquetas con el valor de los indicadores y la información financiera"]}},66307:e=>{e.exports={en:["change last day change visibility"],es:["modificar la visibilidad del cambio del último día"]}},91873:e=>{e.exports={en:["change legend background transparency"],es:["cambiar la transparencia del fondo de la leyenda"]}},14246:e=>{e.exports={en:["change legend background visibility"],es:["cambiar la visibilidad del fondo de la leyenda"]}},88640:e=>{e.exports={en:["change line color"],es:["cambiar el color de línea"]}},41837:e=>{e.exports={en:["change line price source"],es:["cambiar la fuente de precios de la línea"]}},48339:e=>{e.exports={en:["change line width"],es:["cambiar el ancho de línea"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],es:["cambiar la visibilidad de los botones del panel"]}},52203:e=>{e.exports={en:["change pane separators color"],es:["Cambiar el color de los separadores de paneles"]}},38730:e=>{e.exports={en:["change post market color"],
|
||||
es:["cambiar el color posmercado"]}},28075:e=>{e.exports={en:["change post market line color"],es:["cambiar el color de la línea posmercado"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],es:["cambiar la visibilidad de las líneas de precios pre/pos mercado"]}},44371:e=>{e.exports={en:["change pre market color"],es:["cambiar el color de la sesión premercado"]}},96114:e=>{e.exports={en:["change pre market line color"],es:["cambiar el color de la línea de la sesión premercado"]}},69814:e=>{e.exports={en:["change previous close price line color"],es:["cambiar el color de la línea con el precio de cierre anterior"]}},13660:e=>{e.exports={en:["change previous close price line width"],es:["cambiar el ancho de la línea con el precio de cierre anterior"]}},87861:e=>{e.exports={en:["change price line color"],es:["cambiar el color de la línea de precios"]}},29353:e=>{e.exports={en:["change price line width"],es:["cambiar el ancho de la línea de precios"]}},16241:e=>{e.exports={en:["change range bars style"],es:["cambiar estilo de las barras de rango"]}},65821:e=>{e.exports={en:["change range thin bars"],es:["cambiar el rango de las barras finas"]}},75487:e=>{e.exports={en:["change renko wick down color"],es:["cambiar el color inferior de la mecha renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],es:["cambiar el color inferior de la mecha renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],es:["cambiar la visibilidad de las mechas renko"]}},82946:e=>{e.exports={en:["change right margin"],es:["cambiar el margen derecho"]}},79545:e=>{e.exports={en:["change right margin percentage"],es:["cambiar porcentaje del margen derecho"]}},78995:e=>{e.exports={en:["change symbol watermark color"],es:["cambiar el color de la marca de agua del símbolo"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],es:["cambiar la visibilidad de la marca de agua del símbolo"]}},88167:e=>{e.exports={en:["change symbol description visibility"],es:["cambiar la visibilidad de la descripción del símbolo"]}},12050:e=>{e.exports={en:["change symbol field visibility"],es:["cambiar la visibilidad del campo del símbolo"]}},46066:e=>{e.exports={en:["change symbol last value mode"],es:["cambiar el modo del último valor del símbolo"]}},902:e=>{e.exports={en:["change symbol legend format"],es:["cambiar el formato de la leyenda del símbolo"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],es:["cambiar guardar la posición del borde izquierdo del gráfico al cambiar el intervalo"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],es:["cambiar visibilidad de los botones de modos de escala"]}},76131:e=>{e.exports={en:["change scales text color"],es:["cambiar el color del texto de la escala"]}},27792:e=>{e.exports={en:["change scales font size"],es:["cambiar tamaño de la fuente de la escala"]}},94997:e=>{e.exports={en:["change scales lines color"],es:["cambiar el color de la línea de la escala"]}},60067:e=>{e.exports={
|
||||
en:["change sessions breaks visibility"],es:["cambiar la visibilidad de las rupturas de las sesiones"]}},28175:e=>{e.exports={en:["change sessions breaks width"],es:["cambiar el ancho de las rupturas de las sesiones"]}},33895:e=>{e.exports={en:["change sessions breaks color"],es:["cambiar el color de las rupturas de las sesiones"]}},21641:e=>{e.exports={en:["change sessions breaks style"],es:["cambiar el estilo de las rupturas de las sesiones"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],es:["cambiar la visualización de los precios reales en la escala de precios (en lugar del precio Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],es:["cambiar las barras finas"]}},39754:e=>{e.exports={en:["change time hours format"],es:["cambiar el formato de las horas"]}},74883:e=>{e.exports={en:["change top margin"],es:["cambiar el margen superior"]}},51250:e=>{e.exports={en:["change unit label visibility"],es:["cambiar la visibilidad de la etiqueta de unidades"]}},71805:e=>{e.exports={en:["change vert grid lines color"],es:["cambiar el color de las líneas de la cuadrícula vertical"]}},96201:e=>{e.exports={en:["change volume values visibility"],es:["cambiar la visibilidad de los valores de volumen"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],es:["cambiar el color del borde superior de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],es:["cambiar el color superior de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],es:["cambiar el color inferior de la mecha de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],es:["cambiar el color superior de la mecha de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],es:["cambiar la visibilidad de la mecha {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],es:["cambiar la visibilidad del cuerpo de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],es:["cambiar la visibilidad del borde de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],es:["cambiar el color del borde inferior de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],es:["cambiar el color inferior de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],es:["cambiar el color inferior del borde de la barra de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],es:["cambiar el color superior del borde de la barra de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],es:["cambiar el color inferior de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],es:["cambiar el color superior del borde de la barra de proyección de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],es:["cambiar el color inferior de la barra de proyección de {chartType}"]
|
||||
}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],es:["cambiar el color superior de la barra de proyección de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],es:["cambiar el color superior de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],es:["cambiar propiedad de {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],es:["ajustar datos de los dividendos"]}},1433:e=>{e.exports={en:["adjust for contract changes"],es:["ajustar para cambios de contrato"]}},92598:e=>{e.exports={en:["hollow candles"],es:["velas huecas"]}},57243:e=>{e.exports={en:["range","ranges"],es:["rango","rangos"]}},70282:e=>{e.exports={en:["renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],es:["utilizar la liquidación como cierre en intervalos diarios"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],es:["{value} decimal","{value} decimales"]}}}]);
|
||||
}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],es:["cambiar el color superior de la barra de proyección de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],es:["cambiar el color superior de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],es:["cambiar propiedad de {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],es:["ajustar datos de los dividendos"]}},1433:e=>{e.exports={en:["adjust for contract changes"],es:["ajustar para cambios de contrato"]}},92598:e=>{e.exports={en:["hollow candles"],es:["velas huecas"]}},57243:e=>{e.exports={en:["range","ranges"],es:["rango","rangos"]}},70282:e=>{e.exports={en:["renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],es:["utilizar la liquidación como cierre en intervalos diarios"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],es:["{value} decimal","{value} decimales"]}}}]);
|
||||
@@ -1,3 +0,0 @@
|
||||
"use strict";(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[9498],{99992:(e,l,t)=>{t.r(l),t.d(l,{exportData:()=>m});var s=t(11542),i=t(50151),n=t(19466),o=t(79036),u=t(91988),a=t(8025),d=t(68805),r=t(94113),c=t(41991),f=t(9859),h=t(17730);const p={includeTime:!0,includeUserTime:!1,includeSeries:!0,includeDisplayedValues:!1,includedStudies:"all",includeOffsetStudyValues:!1,includeOHLCValuesForSingleValuePlots:!1};function m(e,l={}){const t=Object.assign({},p,l),s={schema:[],data:[],displayedData:[],indexes:[]},n=e.timeScale().points(),r=e.mainSeries(),m=r.style(),S=!l.includeOHLCValuesForSingleValuePlots&&(0,d.isSingleValueBasedStyle)(m),N=(0,i.ensureNotNull)(r.symbolInfo()),v=(0,h.getChartWidgetApiTimeConverter)(r.interval(),N,e),V=!l.includeOHLCValuesForSingleValuePlots&&(0,d.isCloseBasedSymbol)(N),I=function(e,l){const t=e.allStudies().filter((e=>e.showInObjectTree()&&e.isVisible()));if("all"===l)return t;return t.filter((e=>l.includes(e.id())))}(e,t.includedStudies),O=[];for(const e of I){const t=(0,o.isOverlayStudy)(e)?T(e,l):y(e);O.push(t)}const b=I.map((e=>e.data()));(t.includeSeries||0===b.length)&&b.push(r.bars());const w=function(e,l,t,s,n){const o=(0,i.ensureNotNull)(e.range().value(),"time scale points range"),d=function(e,l,t,s){const n=s.from,o=s.to,d=e.range().value(),r=(0,i.ensureNotNull)(void 0!==n?e.indexOf(n,!0):(0,i.ensureNotNull)(d).firstIndex),c=(0,i.ensureNotNull)(void 0!==o?e.indexOf(o,!0):(0,i.ensureNotNull)(d).lastIndex);let h=c,p=r;for(let e=0;e<l.length;e++){const i=l[e],n=s.includeOffsetStudyValues?(0,f.max)(t[e]?.fieldPlotOffsets??[0]):0,o=i.search(r,a.PlotRowSearchMode.NearestRight);null!==o&&o.index<h&&(h=o.index);const u=i.search(c,a.PlotRowSearchMode.NearestLeft);null!==u&&u.index+n>p&&(p=u.index+n)}return(0,i.assert)(h<=p,"Range must contain at least 1 time point"),new u.BarsRange(h,p)}(e,l,t,n),r=d.firstBar(),c=d.lastBar(),h=[];for(let e=r;e<=c;e++){const l={index:e,time:(0,i.ensureNotNull)(s.convertTimePointIndexToInternalTime(e)),publicTime:(0,i.ensureNotNull)(s.convertTimePointIndexToPublicTime(e))};if(!(void 0!==n.from&&l.time<n.from)){if(void 0!==n.to&&l.time>n.to)break;if(!n.includeOffsetStudyValues&&e>o.lastIndex)break;h.push(l)}}return h.length>0?new g(h):null}(n,b,O,v,t);if(null===w)return s;const D=w.firstBar(),F=w.lastBar();t.includeTime&&s.schema.push({type:"time"});const C=s.schema.length;t.includeUserTime&&s.schema.push({type:"userTime"});const _=s.schema.length;if(t.includeSeries){const e=r.statusProvider({hideResolution:!0}).getSplitTitle(),l=Object.values(e).filter((e=>""!==e)).join(", ");s.schema.push(...function(e,l,t,s,n){const o=[];t?o.push(P("close",e)):s?o.push(P((0,i.ensureNotNull)(n),e)):12===l?o.push(P("high",e),P("low",e)):16===l?o.push(P("high",e),P("low",e),P("close",e)):o.push(P("open",e),P("high",e),P("low",e),P("close",e));return o}(l,m,V,S,r.priceSource()))}let B=s.schema.length;for(const e of O)s.schema.push(...e.fields);const L=s.schema.length;if(0===L)return s;for(let e=D;e<=F;++e){const l=new Float64Array(L);l.fill(NaN),
|
||||
s.data.push(l),s.indexes.push(e),t.includeDisplayedValues&&s.displayedData.push(new Array(L).fill(""))}if(t.includeTime||t.includeUserTime){const l=e.dateTimeFormatter();for(let e=D;e<=F;++e){const n=w.item(e),o=n.time,u=n.publicTime,a=new Date(1e3*(0,i.ensureNotNull)(u));if(t.includeTime&&(s.data[e-D][0]=(0,i.ensureNotNull)(o)),t.includeUserTime&&(s.data[e-D][C]=a.getTime()/1e3),t.includeDisplayedValues){const i=l.format(a);t.includeTime&&(s.displayedData[e-D][0]=i),t.includeUserTime&&(s.displayedData[e-D][C]=i)}}}if(t.includeSeries){const e=r.bars().range(D,F),l=(0,c.getPriceValueFormatterForSource)(r),i=e=>l(e,{ignoreLocaleNumberFormat:!0}),n=r.barFunction();e.each(((e,l)=>{const o=s.data[e-D],u=x(l[4]);if(V){if(o[_]=u,t.includeDisplayedValues){s.displayedData[e-D][_]=i(u)}}else if(S){const u=n(l);if(o[_]=u,t.includeDisplayedValues){s.displayedData[e-D][_]=i(u)}}else{const n=x(l[1]),a=x(l[2]),d=x(l[3]);if(12===m?(o[_]=a,o[_+1]=d):16===m?(o[_]=a,o[_+1]=d,o[_+2]=u):(o[_]=n,o[_+1]=a,o[_+2]=d,o[_+3]=u),t.includeDisplayedValues){const l=s.displayedData[e-D];12===m?(l[_]=i(a),l[_+1]=i(d)):16===m?(l[_]=i(a),l[_+1]=i(d),l[_+2]=i(u)):(l[_]=i(n),l[_+1]=i(a),l[_+2]=i(d),l[_+3]=i(u))}}return!1}))}for(let e=0;e<I.length;++e){const n=I[e],u=O[e];let a,r=!1,f=!1;(0,o.isOverlayStudy)(n)&&(a=n.barFunction(),r=!l.includeOHLCValuesForSingleValuePlots&&(0,d.isCloseBasedSymbol)(n.symbolInfo()),f=!l.includeOHLCValuesForSingleValuePlots&&(0,d.isSingleValueBasedStyle)(n.style()));for(let e=0;e<u.fields.length;++e){const l=(0,c.getPriceValueFormatterForStudy)(n,u.fields[e].plotId),o=e=>l(e,{ignoreLocaleNumberFormat:!0}),d=u.fieldPlotOffsets[e],h=u.fieldToPlotIndex[e],p=D-d,m=F-d,g=B+e;n.data().range(p,m).each(((e,l)=>{const n=s.data[e-p];let u;return u=r?x(l[4]):f?(0,i.ensureDefined)(a)(l):x(l[h]),n[g]=u,t.includeDisplayedValues&&(s.displayedData[e-p][g]=o(u)),!1}))}B+=u.fields.length}return s}class g{constructor(e){this._items=e,this._firstIndex=this._items[0].index,this._lastIndex=this._items[this._items.length-1].index}firstBar(){return this._firstIndex}lastBar(){return this._lastIndex}item(e){return this._items[e-this._firstIndex]}}function y(e){const l=e.metaInfo(),o={fieldToPlotIndex:[],fieldPlotOffsets:[],fields:[]},u=e.id(),a=e.properties().childs(),d=e.title(n.TitleDisplayTarget.StatusLine,!1,void 0,!1);for(let n=0;n<l.plots.length;++n){const c=l.plots[n];let f,h="";if((0,r.isPlotSupportDisplay)(c)){const e=a.styles.childs()[c.id];if(void 0!==e&&0===e.childs().display.value())continue;f=(0,i.ensureDefined)(l.styles)[c.id]}else if((0,r.isOhlcPlot)(c)){const e=a.ohlcPlots.childs()[c.target];if(void 0!==e&&0===e.childs().display.value())continue;switch(f=l.ohlcPlots&&l.ohlcPlots[c.target],c.type){case"ohlc_open":h=` (${s.t(null,void 0,t(16610))})`;break;case"ohlc_high":h=` (${s.t(null,void 0,t(78254))}`;break;case"ohlc_low":h=` (${s.t(null,void 0,t(65318))})`;break;case"ohlc_close":h=` (${s.t(null,void 0,t(62578))})`}}if(void 0===f||void 0===f.title)continue;const p=`${f.title}${h}`;o.fields.push(S(u,d,p,c.id)),
|
||||
o.fieldToPlotIndex.push(n+1),o.fieldPlotOffsets.push(e.offset(c.id))}return o}function T(e,l){const t={fieldToPlotIndex:[],fieldPlotOffsets:[],fields:[]},s=e.id(),o=e.title(n.TitleDisplayTarget.StatusLine,!1,void 0,!1),u=e.style(),a=!l.includeOHLCValuesForSingleValuePlots&&(0,d.isCloseBasedSymbol)(e.symbolInfo()),r=!l.includeOHLCValuesForSingleValuePlots&&(0,d.isSingleValueBasedStyle)(u);if(a)t.fields.push(S(s,o,"close","close")),t.fieldToPlotIndex.push(4),t.fieldPlotOffsets.push(0);else if(r){const l=(0,i.ensureNotNull)(e.priceSource());t.fields.push(S(s,o,l,l)),t.fieldToPlotIndex.push(1),t.fieldPlotOffsets.push(0)}else 12===u?(t.fields.push(S(s,o,"high","high"),S(s,o,"low","low")),t.fieldToPlotIndex.push(3,2),t.fieldPlotOffsets.push(0,0)):16===u?(t.fields.push(S(s,o,"high","high"),S(s,o,"low","low"),S(s,o,"close","close")),t.fieldToPlotIndex.push(2,3,4),t.fieldPlotOffsets.push(0,0,0)):(t.fields.push(S(s,o,"open","open"),S(s,o,"high","high"),S(s,o,"low","low"),S(s,o,"close","close")),t.fieldToPlotIndex.push(1,2,3,4),t.fieldPlotOffsets.push(0,0,0,0));return t}function S(e,l,t,s){return{type:"value",sourceType:"study",sourceId:e,sourceTitle:l,plotTitle:t,plotId:s}}function P(e,l){return{type:"value",sourceType:"series",plotTitle:e,sourceTitle:l}}function x(e){return null!=e?e:NaN}}}]);
|
||||
@@ -0,0 +1,3 @@
|
||||
"use strict";(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[9498],{99992:(e,l,t)=>{t.r(l),t.d(l,{exportData:()=>g});var s=t(11542),i=t(50151),n=t(19466),o=t(79036),u=t(91988),d=t(8025),a=t(68805),r=t(94113),c=t(41991),f=t(9859),h=t(17730);const p={includeTime:!0,includeUserTime:!1,includeSeries:!0,includeDisplayedValues:!1,includedStudies:"all",includeOffsetStudyValues:!1,includeOHLCValuesForSingleValuePlots:!1,includeHiddenStudies:!1};function m(e,l){const t={schema:[],data:[],displayedData:[],indexes:[]},s=e.timeScale().points(),n=e.mainSeries(),r=n.style(),p=!l.includeOHLCValuesForSingleValuePlots&&(0,a.isSingleValueBasedStyle)(r),m=(0,i.ensureNotNull)(n.symbolInfo()),g=(0,h.getChartWidgetApiTimeConverter)(n.interval(),m,e),P=!l.includeOHLCValuesForSingleValuePlots&&(0,a.isCloseBasedSymbol)(m),V=v(e,l.includedStudies,l.includeHiddenStudies),I=[];for(const e of V){const t=(0,o.isOverlayStudy)(e)?T(e,l):S(e);I.push(t)}const O=V.map((e=>e.data()));(l.includeSeries||0===O.length)&&O.push(n.bars());const b=function(e,l,t,s,n){const o=(0,i.ensureNotNull)(e.range().value(),"time scale points range"),a=function(e,l,t,s){const n=s.from,o=s.to,a=e.range().value(),r=(0,i.ensureNotNull)(void 0!==n?e.indexOf(n,!0):(0,i.ensureNotNull)(a).firstIndex),c=(0,i.ensureNotNull)(void 0!==o?e.indexOf(o,!0):(0,i.ensureNotNull)(a).lastIndex);let h=c,p=r;for(let e=0;e<l.length;e++){const i=l[e],n=s.includeOffsetStudyValues?(0,f.max)(t[e]?.fieldPlotOffsets??[0]):0,o=i.search(r,d.PlotRowSearchMode.NearestRight);null!==o&&o.index<h&&(h=o.index);const u=i.search(c,d.PlotRowSearchMode.NearestLeft);null!==u&&u.index+n>p&&(p=u.index+n)}return(0,i.assert)(h<=p,"Range must contain at least 1 time point"),new u.BarsRange(h,p)}(e,l,t,n),r=a.firstBar(),c=a.lastBar(),h=[];for(let e=r;e<=c;e++){const l={index:e,time:(0,i.ensureNotNull)(s.convertTimePointIndexToInternalTime(e)),publicTime:(0,i.ensureNotNull)(s.convertTimePointIndexToPublicTime(e))};if(!(void 0!==n.from&&l.time<n.from)){if(void 0!==n.to&&l.time>n.to)break;if(!n.includeOffsetStudyValues&&e>o.lastIndex)break;h.push(l)}}return h.length>0?new y(h):null}(s,O,I,g,l);if(null===b)return t;const w=b.firstBar(),D=b.lastBar();l.includeTime&&t.schema.push({type:"time"});const F=t.schema.length;l.includeUserTime&&t.schema.push({type:"userTime"});const C=t.schema.length;if(l.includeSeries){const e=n.statusProvider({hideResolution:!0}).getSplitTitle(),l=Object.values(e).filter((e=>""!==e)).join(", ");t.schema.push(...function(e,l,t,s,n){const o=[];t?o.push(x("close",e)):s?o.push(x((0,i.ensureNotNull)(n),e)):12===l?o.push(x("high",e),x("low",e)):16===l||21===l?o.push(x("high",e),x("low",e),x("close",e)):o.push(x("open",e),x("high",e),x("low",e),x("close",e));return o}(l,r,P,p,n.priceSource()))}let _=t.schema.length;for(const e of I)t.schema.push(...e.fields);const B=t.schema.length;if(0===B)return t;for(let e=w;e<=D;++e){const s=new Float64Array(B);s.fill(NaN),t.data.push(s),t.indexes.push(e),l.includeDisplayedValues&&t.displayedData.push(new Array(B).fill(""))}
|
||||
if(l.includeTime||l.includeUserTime){const s=e.dateTimeFormatter();for(let e=w;e<=D;++e){const n=b.item(e),o=n.time,u=n.publicTime,d=new Date(1e3*(0,i.ensureNotNull)(u));if(l.includeTime&&(t.data[e-w][0]=(0,i.ensureNotNull)(o)),l.includeUserTime&&(t.data[e-w][F]=d.getTime()/1e3),l.includeDisplayedValues){const i=s.format(d);l.includeTime&&(t.displayedData[e-w][0]=i),l.includeUserTime&&(t.displayedData[e-w][F]=i)}}}if(l.includeSeries){const e=n.bars().range(w,D),s=(0,c.getPriceValueFormatterForSource)(n),i=e=>s(e,{ignoreLocaleNumberFormat:!0}),o=n.barFunction();e.each(((e,s)=>{const n=t.data[e-w],u=N(s[4]);if(P){if(n[C]=u,l.includeDisplayedValues){t.displayedData[e-w][C]=i(u)}}else if(p){const u=o(s);if(n[C]=u,l.includeDisplayedValues){t.displayedData[e-w][C]=i(u)}}else{const o=N(s[1]),d=N(s[2]),a=N(s[3]);if(12===r?(n[C]=d,n[C+1]=a):16===r||21===r?(n[C]=d,n[C+1]=a,n[C+2]=u):(n[C]=o,n[C+1]=d,n[C+2]=a,n[C+3]=u),l.includeDisplayedValues){const l=t.displayedData[e-w];12===r?(l[C]=i(d),l[C+1]=i(a)):16===r||21===r?(l[C]=i(d),l[C+1]=i(a),l[C+2]=i(u)):(l[C]=i(o),l[C+1]=i(d),l[C+2]=i(a),l[C+3]=i(u))}}return!1}))}for(let e=0;e<V.length;++e){const s=V[e],n=I[e];let u,d=!1,r=!1;(0,o.isOverlayStudy)(s)&&(u=s.barFunction(),d=!l.includeOHLCValuesForSingleValuePlots&&(0,a.isCloseBasedSymbol)(s.symbolInfo()),r=!l.includeOHLCValuesForSingleValuePlots&&(0,a.isSingleValueBasedStyle)(s.style()));for(let e=0;e<n.fields.length;++e){const o=(0,c.getPriceValueFormatterForStudy)(s,n.fields[e].plotId),a=e=>o(e,{ignoreLocaleNumberFormat:!0}),f=n.fieldPlotOffsets[e],h=n.fieldToPlotIndex[e],p=w-f,m=D-f,g=_+e;s.data().range(p,m).each(((e,s)=>{const n=t.data[e-p];let o;return o=d?N(s[4]):r?(0,i.ensureDefined)(u)(s):N(s[h]),n[g]=o,l.includeDisplayedValues&&(t.displayedData[e-p][g]=a(o)),!1}))}_+=n.fields.length}return t}function g(e,l={}){const t={...p,...l};if(t.includeHiddenStudies){const l=v(e,t.includedStudies,t.includeHiddenStudies),s=[],i=[];for(const e of l)e.isVisible()||(s.push(e),i.push(e.start(!0,!0)));return(async()=>{i.length>0&&(await Promise.all(i),await new Promise((e=>{setTimeout((()=>e()))})))})().then((()=>m(e,t))).finally((()=>{for(const e of s)e.stop()}))}return m(e,t)}class y{constructor(e){this._items=e,this._firstIndex=this._items[0].index,this._lastIndex=this._items[this._items.length-1].index}firstBar(){return this._firstIndex}lastBar(){return this._lastIndex}item(e){return this._items[e-this._firstIndex]}}function S(e){const l=e.metaInfo(),o={fieldToPlotIndex:[],fieldPlotOffsets:[],fields:[]},u=e.id(),d=e.properties().childs(),a=e.title(n.TitleDisplayTarget.StatusLine,!1,void 0,!1);for(let n=0;n<l.plots.length;++n){const c=l.plots[n];let f,h="";if((0,r.isPlotSupportDisplay)(c)){const e=d.styles.childs()[c.id];if(void 0!==e&&0===e.childs().display.value())continue;f=(0,i.ensureDefined)(l.styles)[c.id]}else if((0,r.isOhlcPlot)(c)){const e=d.ohlcPlots.childs()[c.target];if(void 0!==e&&0===e.childs().display.value())continue;switch(f=l.ohlcPlots&&l.ohlcPlots[c.target],c.type){case"ohlc_open":h=` (${s.t(null,void 0,t(16610))})`
|
||||
;break;case"ohlc_high":h=` (${s.t(null,void 0,t(78254))}`;break;case"ohlc_low":h=` (${s.t(null,void 0,t(65318))})`;break;case"ohlc_close":h=` (${s.t(null,void 0,t(62578))})`}}if(void 0===f||void 0===f.title)continue;const p=`${f.title}${h}`;o.fields.push(P(u,a,p,c.id)),o.fieldToPlotIndex.push(n+1),o.fieldPlotOffsets.push(e.offset(c.id))}return o}function T(e,l){const t={fieldToPlotIndex:[],fieldPlotOffsets:[],fields:[]},s=e.id(),o=e.title(n.TitleDisplayTarget.StatusLine,!1,void 0,!1),u=e.style(),d=!l.includeOHLCValuesForSingleValuePlots&&(0,a.isCloseBasedSymbol)(e.symbolInfo()),r=!l.includeOHLCValuesForSingleValuePlots&&(0,a.isSingleValueBasedStyle)(u);if(d)t.fields.push(P(s,o,"close","close")),t.fieldToPlotIndex.push(4),t.fieldPlotOffsets.push(0);else if(r){const l=(0,i.ensureNotNull)(e.priceSource());t.fields.push(P(s,o,l,l)),t.fieldToPlotIndex.push(1),t.fieldPlotOffsets.push(0)}else 12===u?(t.fields.push(P(s,o,"high","high"),P(s,o,"low","low")),t.fieldToPlotIndex.push(3,2),t.fieldPlotOffsets.push(0,0)):16===u||21===u?(t.fields.push(P(s,o,"high","high"),P(s,o,"low","low"),P(s,o,"close","close")),t.fieldToPlotIndex.push(2,3,4),t.fieldPlotOffsets.push(0,0,0)):(t.fields.push(P(s,o,"open","open"),P(s,o,"high","high"),P(s,o,"low","low"),P(s,o,"close","close")),t.fieldToPlotIndex.push(1,2,3,4),t.fieldPlotOffsets.push(0,0,0,0));return t}function P(e,l,t,s){return{type:"value",sourceType:"study",sourceId:e,sourceTitle:l,plotTitle:t,plotId:s}}function x(e,l){return{type:"value",sourceType:"series",plotTitle:e,sourceTitle:l}}function N(e){return null!=e?e:NaN}function v(e,l,t){const s=e.allStudies().filter((e=>e.showInObjectTree()&&(t||e.isVisible())));return"all"===l?s:s.filter((e=>l.includes(e.id())))}}}]);
|
||||
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],fr:["#{count} (barre)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],fr:["#{count} (prix, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],fr:["Coloriser les Barres selon la Clôture Précédente"]}},78930:e=>{e.exports={en:["Coordinates"],fr:["Coordonnées"]}},24197:e=>{e.exports={en:["Center"],fr:["Centre"]}},84831:e=>{e.exports={en:["Close line"],fr:["Ligne de fermeture"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],fr:["Ajuster les données pour les dividendes"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],fr:["Ajustement pour les changements de contrat"]}},27567:e=>{e.exports={en:["Bottom"],fr:["Bas"]}},3159:e=>{e.exports={en:["Bottom line"],fr:["Ligne du bas"]}},74406:e=>{e.exports={en:["Body"],fr:["Corps"]}},333:e=>{e.exports={en:["Borders"],fr:["Bordures"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],fr:["Niveau de base"]}},71776:e=>{e.exports={en:["Down"],fr:["Bas"]}},17611:e=>{e.exports={en:["Down bars"],fr:["Barres inférieures"]}},23743:e=>{e.exports={en:["Down color"],fr:["Couleur du bas"]}},48225:e=>{e.exports={en:["Data modification"],fr:["Modification des données"]}},72942:e=>{e.exports={en:["Days"],fr:["Jours"]}},16564:e=>{e.exports={en:["Default"],fr:["Par Défaut"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],fr:["Déplacement (prix, barre)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],fr:["Fond des heures de trading électronique"]}},819:e=>{e.exports={en:["Extend lines"],fr:["Prolonger les lignes"]}},41129:e=>{e.exports={en:["Fill"],fr:["Remplir"]}},61112:e=>{e.exports={en:["Fill top area"],fr:["Remplir la zone supérieure"]}},73185:e=>{e.exports={en:["Fill bottom area"],fr:["Remplir la zone inférieure"]}},886:e=>{e.exports={en:["HLC bars"],fr:["Barres HLC"]}},56796:e=>{e.exports={en:["Hours"],fr:["Heures"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],fr:["Ligne haute"]}},47326:e=>{e.exports={en:["Integer"],fr:["Entier"]}},21429:e=>{e.exports={en:["Inputs"],fr:["Paramètres en Entrée"]}},64075:e=>{e.exports={en:["Override min tick"],fr:["Ne pas tenir compte du Tick minimum"]}},34579:e=>{e.exports={en:["Low line"],fr:["Ligne basse"]}},11626:e=>{e.exports={en:["Left"],fr:["Gauche"]}},43154:e=>{e.exports={en:["Months"],fr:["Mois"]}},68833:e=>{e.exports={en:["Middle"],fr:["Milieu"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"],fr:["Secondes"]}},13350:e=>{e.exports={en:["Pearson's R"],fr:["Le R de Pearson"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],fr:["Background des heures pré/post marché"]}},59766:e=>{e.exports={en:["Precision"],fr:["Précision"]}},84684:e=>{e.exports={en:["Price source"],fr:["Source de prix"]}},73466:e=>{e.exports={
|
||||
en:["Projection up bars"],fr:["Barres de projection supérieures"]}},77430:e=>{e.exports={en:["Projection candles"],fr:["Barres de projection"]}},88367:e=>{e.exports={en:["Projection down bars"],fr:["Barres de projection inférieures"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],fr:["Prix réels sur l'échelle de prix (au lieu du prix Heikin-Ashi)"]}},50421:e=>{e.exports={en:["Right"],fr:["Droite"]}},835:e=>{e.exports={en:["Weeks"],fr:["Semaines"]}},32163:e=>{e.exports={en:["Wick"],fr:["Mèche"]}},97118:e=>{e.exports={en:["Top"],fr:["Haut"]}},89349:e=>{e.exports={en:["Top line"],fr:["Ligne du haut"]}},70320:e=>{e.exports={en:["Text"],fr:["Texte"]}},25485:e=>{e.exports={en:["Text alignment"],fr:["Alignement du texte"]}},67781:e=>{e.exports={en:["Text orientation"],fr:["Orientation du texte"]}},20215:e=>{e.exports={en:["Thin bars"],fr:["Barres fines"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],fr:["Fuseau horaire"]}},22691:e=>{e.exports={en:["Up"],fr:["Haut"]}},23091:e=>{e.exports={en:["Up color"],fr:["Couleur du haut"]}},36957:e=>{e.exports={en:["Up bars"],fr:["Barres supérieures"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],fr:["Utiliser le règlement comme proche de l'intervalle quotidien"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],fr:["bougie"]}},27068:e=>{e.exports={en:["change HLC bars"],fr:["changer les barres HLC"]}},86866:e=>{e.exports={en:["change area fill color"],fr:["changer la couleur de remplissage de la zone"]}},89346:e=>{e.exports={en:["change area line width"],fr:["changer la largeur de ligne de la zone"]}},29605:e=>{e.exports={en:["change area line color"],fr:["changer la couleur de ligne de la zone"]}},4640:e=>{e.exports={en:["change area price source"],fr:["changer la source de prix de la zone"]}},42190:e=>{e.exports={en:["change base level"],fr:["changer le niveau de base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],fr:["changer la couleur de la ligne inférieure de la ligne de base"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],fr:["changer la largeur de la ligne inférieure de la ligne de base"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],fr:["changer la couleur de la zone inférieure de remplissage de la ligne de base"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],fr:["changer la couleur de la zone supérieure de remplissage de la ligne de base"]}},68609:e=>{e.exports={en:["change baseline price source"],fr:["changer la source de prix de la ligne de base"]}},69044:e=>{e.exports={en:["change baseline top line color"],fr:["changer la couleur de la ligne supérieure de la ligne de base"]}},68197:e=>{e.exports={en:["change baseline top line width"],fr:["changer la largeur de la ligne supérieure de la ligne de base"]}},33464:e=>{e.exports={en:["change bar up color"],fr:["changer la couleur supérieure de la barre"]}},2066:e=>{e.exports={en:["change bar X coordinate"],
|
||||
fr:["changer la coordonnée X de la barre"]}},59622:e=>{e.exports={en:["change bar down color"],fr:["changer la couleur inférieure de la barre"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],fr:["changer les barres de couleur en fonction de la fermeture précédente"]}},88324:e=>{e.exports={en:["change column up color"],fr:["changer la couleur du haut de la colonne"]}},93890:e=>{e.exports={en:["change column down color"],fr:["changer la couleur du bas de la colonne"]}},4727:e=>{e.exports={en:["change column price source"],fr:["changer la source du prix de la colonne"]}},82063:e=>{e.exports={en:["change decimal places"],fr:["changer les décimales"]}},44223:e=>{e.exports={en:["change extended hours color"],fr:["changer la couleur des heures étendues"]}},47393:e=>{e.exports={en:["change electronic trading hours"],fr:["modifier les heures de trading électronique"]}},6026:e=>{e.exports={en:["change high-low body color"],fr:["changer la couleur du corps haut-bas"]}},73021:e=>{e.exports={en:["change high-low body visibility"],fr:["changer la visibilité du corps haut-bas"]}},46844:e=>{e.exports={en:["change high-low border color"],fr:["changer la couleur des bordures haut-bas"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],fr:["changer la visibilité des bordures haut-bas"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],fr:["changer la visibilité des étiquettes haut-bas"]}},56961:e=>{e.exports={en:["change high-low labels color"],fr:["changer la couleur des étiquettes haut-bas"]}},88640:e=>{e.exports={en:["change line color"],fr:["changer la couleur de la ligne"]}},41837:e=>{e.exports={en:["change line price source"],fr:["changer la ligne de la source de prix"]}},48339:e=>{e.exports={en:["change line width"],fr:["changer la largeur de la ligne"]}},38730:e=>{e.exports={en:["change post market color"],fr:["changer la couleur du post-marché"]}},44371:e=>{e.exports={en:["change pre market color"],fr:["changer la couleur du pré-marché"]}},11737:e=>{e.exports={en:["change price Y coordinate"],fr:["changer la coordonnée Y du prix"]}},16241:e=>{e.exports={en:["change range bars style"],fr:["changer le style des barres de gamme"]}},65821:e=>{e.exports={en:["change range thin bars"],fr:["changer les barres fines de la gamme"]}},75487:e=>{e.exports={en:["change renko wick down color"],fr:["changer la couleur des mèches renko du bas"]}},92277:e=>{e.exports={en:["change renko wick up color"],fr:["changer la couleur des mèches du haut renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],fr:["changer la visibilité des mèches renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],fr:["changer la superposition d'étude min tick"]}},82924:e=>{e.exports={en:["change study overlay style"],fr:["changer le style de superposition des études"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],fr:["modifier l'affichage des prix réels sur l'échelle de prix (au lieu du prix Heiken-Ashi)"]}},60834:e=>{
|
||||
e.exports={en:["change thin bars"],fr:["changer les barres fines"]}},78509:e=>{e.exports={en:["change {title} base line color"],fr:["changer la couleur de la ligne de base de {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],fr:["changer le style de la ligne de base de {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],fr:["changer la visibilité de la ligne de base de {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],fr:["changer la largeur de la ligne de base de {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],fr:["changer la couleur de la ligne du bas de {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],fr:["changer le style de la ligne du bas de {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],fr:["changer la visibilité de la ligne du bas de {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],fr:["changer la largeur de la ligne du bas de {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],fr:["modifier {title} de jours vers"]}},91201:e=>{e.exports={en:["change {title} days from"],fr:["modifier {title} en jours de"]}},76295:e=>{e.exports={en:["change {title} extend lines"],fr:["changer étendre les lignes de {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],fr:["modifier {title} en heures de"]}},67233:e=>{e.exports={en:["change {title} hours to"],fr:["modifier {title} d'heures vers"]}},99122:e=>{e.exports={en:["change {title} months from"],fr:["modifier {title} en semaines de"]}},10518:e=>{e.exports={en:["change {title} months to"],fr:["modifier {title} de mois vers"]}},38011:e=>{e.exports={en:["change {title} minutes to"],fr:["modifier {title} de minutes vers"]}},59820:e=>{e.exports={en:["change {title} minutes from"],fr:["modifier {title} en minutes de"]}},6573:e=>{e.exports={en:["change {title} seconds to"],fr:["modifier {title} de secondes vers"]}},86780:e=>{e.exports={en:["change {title} seconds from"],fr:["modifier {title} en secondes de"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],fr:["changer show pearson's r de {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],fr:["modifier {title} en semaines de"]}},18678:e=>{e.exports={en:["change {title} weeks to"],fr:["modifier {title} de semaines vers"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],fr:["changer la visibilité de la ligne du haut de {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],fr:["changer la largeur de la ligne du haut de {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],fr:["changer la couleur de la ligne du haut de {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],fr:["changer le style de la ligne du haut de {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],fr:["modifier la visibilité de {title} sur les ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],fr:["modifier la visibilité de {title} sur les semaines"]}},
|
||||
55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],fr:["modifier la visibilité de {title} sur {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],fr:["modifier la visibilité de {title} sur les jours"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],fr:["modifier la visibilité de {title} sur les heures"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],fr:["modifier la visibilité de {title} sur les minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],fr:["modifier la visibilité de {title} sur les mois"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],fr:["modifier la visibilité de {title} sur les secondes"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],fr:["changer la couleur de la bordure du haut de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],fr:["changer la couleur du haut de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],fr:["changer la couleur de la mèche du bas de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],fr:["changer la couleur de la mèche du haut de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],fr:["changer la visibilité de la mèche de {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],fr:["changer la visibilité du corps de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],fr:["changer la visibilité de la bordure de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],fr:["changer la couleur de la bordure du bas de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],fr:["changer la couleur du bas de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],fr:["changer la couleur de la barre de bordure du bas de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],fr:["changer la couleur de la barre de bordure du haut de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],fr:["changer la couleur du bas de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],fr:["changer la couleur de la barre de bordure de projection du haut de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],fr:["changer la couleur de la barre de projection du bas de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],fr:["changer la couleur de la barre de projection du haut de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],fr:["changer la couleur du haut de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],fr:["modifier les propriétés de {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],fr:["changer la propriété de {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],
|
||||
fr:["ajuster les données pour les dividendes"]}},1433:e=>{e.exports={en:["adjust for contract changes"],fr:["ajuster pour les changements de contrat"]}},35813:e=>{e.exports={en:["days"],fr:["Jours"]}},89919:e=>{e.exports={en:["days to"],fr:["jours vers"]}},59215:e=>{e.exports={en:["days from"],fr:["jours de"]}},2359:e=>{e.exports={en:["hours"],fr:["Heures"]}},82267:e=>{e.exports={en:["hours from"],fr:["heures de"]}},15600:e=>{e.exports={en:["hours to"],fr:["heures vers"]}},92598:e=>{e.exports={en:["hollow candles"],fr:["Bougies Creuses"]}},76261:e=>{e.exports={en:["move drawings"],fr:["déplacer les dessins"]}},95300:e=>{e.exports={en:["months"],fr:["Mois"]}},17250:e=>{e.exports={en:["months from"],fr:["mois de"]}},2828:e=>{e.exports={en:["months to"],fr:["mois vers"]}},18726:e=>{e.exports={en:["minutes"],fr:["Minutes"]}},67649:e=>{e.exports={en:["minutes to"],fr:["minutes vers"]}},22476:e=>{e.exports={en:["minutes from"],fr:["minutes de"]}},751:e=>{e.exports={en:["seconds"],fr:["secondes"]}},73419:e=>{e.exports={en:["seconds to"],fr:["secondes vers"]}},35801:e=>{e.exports={en:["seconds from"],fr:["secondes de"]}},57243:e=>{e.exports={en:["range","ranges"],fr:["plage","plages"]}},70282:e=>{e.exports={en:["renko"],fr:["Renko"]}},45537:e=>{e.exports={en:["weeks"],fr:["semaines"]}},92859:e=>{e.exports={en:["weeks from"],fr:["semaines de"]}},44127:e=>{e.exports={en:["weeks to"],fr:["semaines vers"]}},3539:e=>{e.exports={en:["ticks"],fr:["Ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],fr:["utiliser le règlement comme clôture sur l'intervalle quotidien"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],fr:["{value} décimale","{value} décimales"]}}}]);
|
||||
6
charting_library/bundles/fr.1341.1068954aa326300ef390.js
Normal file
6
charting_library/bundles/fr.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],fr:["#{count} (barre)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],fr:["#{count} (prix, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],fr:["Coloriser les Barres selon la Clôture Précédente"]}},78930:e=>{e.exports={en:["Coordinates"],fr:["Coordonnées"]}},24197:e=>{e.exports={en:["Center"],fr:["Centre"]}},84831:e=>{e.exports={en:["Close line"],fr:["Ligne de fermeture"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],fr:["Ajuster les données pour les dividendes"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],fr:["Ajustement pour les changements de contrat"]}},27567:e=>{e.exports={en:["Bottom"],fr:["Bas"]}},3159:e=>{e.exports={en:["Bottom line"],fr:["Ligne du bas"]}},74406:e=>{e.exports={en:["Body"],fr:["Corps"]}},333:e=>{e.exports={en:["Borders"],fr:["Bordures"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],fr:["Niveau de base"]}},71776:e=>{e.exports={en:["Down"],fr:["Bas"]}},17611:e=>{e.exports={en:["Down bars"],fr:["Barres inférieures"]}},23743:e=>{e.exports={en:["Down color"],fr:["Couleur du bas"]}},48225:e=>{e.exports={en:["Data modification"],fr:["Modification des données"]}},72942:e=>{e.exports={en:["Days"],fr:["Jours"]}},16564:e=>{e.exports={en:["Default"],fr:["Par Défaut"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],fr:["Déplacement (prix, barre)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],fr:["Fond des heures de trading électronique"]}},819:e=>{e.exports={en:["Extend lines"],fr:["Prolonger les lignes"]}},41129:e=>{e.exports={en:["Fill"],fr:["Remplir"]}},61112:e=>{e.exports={en:["Fill top area"],fr:["Remplir la zone supérieure"]}},73185:e=>{e.exports={en:["Fill bottom area"],fr:["Remplir la zone inférieure"]}},56796:e=>{e.exports={en:["Hours"],fr:["Heures"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],fr:["Ligne haute"]}},47326:e=>{e.exports={en:["Integer"],fr:["Entier"]}},21429:e=>{e.exports={en:["Inputs"],fr:["Paramètres en Entrée"]}},64075:e=>{e.exports={en:["Override min tick"],fr:["Ne pas tenir compte du Tick minimum"]}},34579:e=>{e.exports={en:["Low line"],fr:["Ligne basse"]}},11626:e=>{e.exports={en:["Left"],fr:["Gauche"]}},43154:e=>{e.exports={en:["Months"],fr:["Mois"]}},68833:e=>{e.exports={en:["Middle"],fr:["Milieu"]}},42562:e=>{e.exports={en:["Minutes"]}},65188:e=>{e.exports={en:["Seconds"],fr:["Secondes"]}},13350:e=>{e.exports={en:["Pearson's R"],fr:["Le R de Pearson"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],fr:["Background des heures pré/post marché"]}},59766:e=>{e.exports={en:["Precision"],fr:["Précision"]}},84684:e=>{e.exports={en:["Price source"],fr:["Source de prix"]}},73466:e=>{e.exports={
|
||||
en:["Projection up bars"],fr:["Barres de projection supérieures"]}},77430:e=>{e.exports={en:["Projection candles"],fr:["Barres de projection"]}},88367:e=>{e.exports={en:["Projection down bars"],fr:["Barres de projection inférieures"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],fr:["Prix réels sur l'échelle de prix (au lieu du prix Heikin-Ashi)"]}},50421:e=>{e.exports={en:["Right"],fr:["Droite"]}},835:e=>{e.exports={en:["Weeks"],fr:["Semaines"]}},32163:e=>{e.exports={en:["Wick"],fr:["Mèche"]}},97118:e=>{e.exports={en:["Top"],fr:["Haut"]}},89349:e=>{e.exports={en:["Top line"],fr:["Ligne du haut"]}},70320:e=>{e.exports={en:["Text"],fr:["Texte"]}},25485:e=>{e.exports={en:["Text alignment"],fr:["Alignement du texte"]}},67781:e=>{e.exports={en:["Text orientation"],fr:["Orientation du texte"]}},20215:e=>{e.exports={en:["Thin bars"],fr:["Barres fines"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],fr:["Fuseau horaire"]}},22691:e=>{e.exports={en:["Up"],fr:["Haut"]}},23091:e=>{e.exports={en:["Up color"],fr:["Couleur du haut"]}},36957:e=>{e.exports={en:["Up bars"],fr:["Barres supérieures"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],fr:["Utiliser le règlement comme proche de l'intervalle quotidien"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],fr:["bougie"]}},27068:e=>{e.exports={en:["change HLC bars"],fr:["changer les barres HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],fr:["changer la couleur de remplissage de la zone"]}},89346:e=>{e.exports={en:["change area line width"],fr:["changer la largeur de ligne de la zone"]}},29605:e=>{e.exports={en:["change area line color"],fr:["changer la couleur de ligne de la zone"]}},4640:e=>{e.exports={en:["change area price source"],fr:["changer la source de prix de la zone"]}},42190:e=>{e.exports={en:["change base level"],fr:["changer le niveau de base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],fr:["changer la couleur de la ligne inférieure de la ligne de base"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],fr:["changer la largeur de la ligne inférieure de la ligne de base"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],fr:["changer la couleur de la zone inférieure de remplissage de la ligne de base"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],fr:["changer la couleur de la zone supérieure de remplissage de la ligne de base"]}},68609:e=>{e.exports={en:["change baseline price source"],fr:["changer la source de prix de la ligne de base"]}},69044:e=>{e.exports={en:["change baseline top line color"],fr:["changer la couleur de la ligne supérieure de la ligne de base"]}},68197:e=>{e.exports={en:["change baseline top line width"],fr:["changer la largeur de la ligne supérieure de la ligne de base"]}},33464:e=>{e.exports={en:["change bar up color"],fr:["changer la couleur supérieure de la barre"]}},2066:e=>{e.exports={
|
||||
en:["change bar X coordinate"],fr:["changer la coordonnée X de la barre"]}},59622:e=>{e.exports={en:["change bar down color"],fr:["changer la couleur inférieure de la barre"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],fr:["changer les barres de couleur en fonction de la fermeture précédente"]}},88324:e=>{e.exports={en:["change column up color"],fr:["changer la couleur du haut de la colonne"]}},93890:e=>{e.exports={en:["change column down color"],fr:["changer la couleur du bas de la colonne"]}},4727:e=>{e.exports={en:["change column price source"],fr:["changer la source du prix de la colonne"]}},82063:e=>{e.exports={en:["change decimal places"],fr:["changer les décimales"]}},44223:e=>{e.exports={en:["change extended hours color"],fr:["changer la couleur des heures étendues"]}},47393:e=>{e.exports={en:["change electronic trading hours"],fr:["modifier les heures de trading électronique"]}},6026:e=>{e.exports={en:["change high-low body color"],fr:["changer la couleur du corps haut-bas"]}},73021:e=>{e.exports={en:["change high-low body visibility"],fr:["changer la visibilité du corps haut-bas"]}},46844:e=>{e.exports={en:["change high-low border color"],fr:["changer la couleur des bordures haut-bas"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],fr:["changer la visibilité des bordures haut-bas"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],fr:["changer la visibilité des étiquettes haut-bas"]}},56961:e=>{e.exports={en:["change high-low labels color"],fr:["changer la couleur des étiquettes haut-bas"]}},88640:e=>{e.exports={en:["change line color"],fr:["changer la couleur de la ligne"]}},41837:e=>{e.exports={en:["change line price source"],fr:["changer la ligne de la source de prix"]}},48339:e=>{e.exports={en:["change line width"],fr:["changer la largeur de la ligne"]}},38730:e=>{e.exports={en:["change post market color"],fr:["changer la couleur du post-marché"]}},44371:e=>{e.exports={en:["change pre market color"],fr:["changer la couleur du pré-marché"]}},11737:e=>{e.exports={en:["change price Y coordinate"],fr:["changer la coordonnée Y du prix"]}},16241:e=>{e.exports={en:["change range bars style"],fr:["changer le style des barres de gamme"]}},65821:e=>{e.exports={en:["change range thin bars"],fr:["changer les barres fines de la gamme"]}},75487:e=>{e.exports={en:["change renko wick down color"],fr:["changer la couleur des mèches renko du bas"]}},92277:e=>{e.exports={en:["change renko wick up color"],fr:["changer la couleur des mèches du haut renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],fr:["changer la visibilité des mèches renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],fr:["changer la superposition d'étude min tick"]}},82924:e=>{e.exports={en:["change study overlay style"],fr:["changer le style de superposition des études"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],
|
||||
fr:["modifier l'affichage des prix réels sur l'échelle de prix (au lieu du prix Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],fr:["changer les barres fines"]}},78509:e=>{e.exports={en:["change {title} base line color"],fr:["changer la couleur de la ligne de base de {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],fr:["changer le style de la ligne de base de {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],fr:["changer la visibilité de la ligne de base de {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],fr:["changer la largeur de la ligne de base de {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],fr:["changer la couleur de la ligne du bas de {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],fr:["changer le style de la ligne du bas de {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],fr:["changer la visibilité de la ligne du bas de {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],fr:["changer la largeur de la ligne du bas de {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],fr:["modifier {title} de jours vers"]}},91201:e=>{e.exports={en:["change {title} days from"],fr:["modifier {title} en jours de"]}},76295:e=>{e.exports={en:["change {title} extend lines"],fr:["changer étendre les lignes de {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],fr:["modifier {title} en heures de"]}},67233:e=>{e.exports={en:["change {title} hours to"],fr:["modifier {title} d'heures vers"]}},99122:e=>{e.exports={en:["change {title} months from"],fr:["modifier {title} en semaines de"]}},10518:e=>{e.exports={en:["change {title} months to"],fr:["modifier {title} de mois vers"]}},38011:e=>{e.exports={en:["change {title} minutes to"],fr:["modifier {title} de minutes vers"]}},59820:e=>{e.exports={en:["change {title} minutes from"],fr:["modifier {title} en minutes de"]}},6573:e=>{e.exports={en:["change {title} seconds to"],fr:["modifier {title} de secondes vers"]}},86780:e=>{e.exports={en:["change {title} seconds from"],fr:["modifier {title} en secondes de"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],fr:["changer show pearson's r de {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],fr:["modifier {title} en semaines de"]}},18678:e=>{e.exports={en:["change {title} weeks to"],fr:["modifier {title} de semaines vers"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],fr:["changer la visibilité de la ligne du haut de {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],fr:["changer la largeur de la ligne du haut de {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],fr:["changer la couleur de la ligne du haut de {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],fr:["changer le style de la ligne du haut de {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],fr:["modifier la visibilité de {title} sur les ticks"]}},71084:e=>{
|
||||
e.exports={en:["change {title} visibility on weeks"],fr:["modifier la visibilité de {title} sur les semaines"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],fr:["modifier la visibilité de {title} sur {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],fr:["modifier la visibilité de {title} sur les jours"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],fr:["modifier la visibilité de {title} sur les heures"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],fr:["modifier la visibilité de {title} sur les minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],fr:["modifier la visibilité de {title} sur les mois"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],fr:["modifier la visibilité de {title} sur les secondes"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],fr:["changer la couleur de la bordure du haut de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],fr:["changer la couleur du haut de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],fr:["changer la couleur de la mèche du bas de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],fr:["changer la couleur de la mèche du haut de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],fr:["changer la visibilité de la mèche de {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],fr:["changer la visibilité du corps de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],fr:["changer la visibilité de la bordure de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],fr:["changer la couleur de la bordure du bas de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],fr:["changer la couleur du bas de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],fr:["changer la couleur de la barre de bordure du bas de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],fr:["changer la couleur de la barre de bordure du haut de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],fr:["changer la couleur du bas de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],fr:["changer la couleur de la barre de bordure de projection du haut de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],fr:["changer la couleur de la barre de projection du bas de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],fr:["changer la couleur de la barre de projection du haut de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],fr:["changer la couleur du haut de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],fr:["modifier les propriétés de {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],
|
||||
fr:["changer la propriété de {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],fr:["ajuster les données pour les dividendes"]}},1433:e=>{e.exports={en:["adjust for contract changes"],fr:["ajuster pour les changements de contrat"]}},35813:e=>{e.exports={en:["days"],fr:["Jours"]}},89919:e=>{e.exports={en:["days to"],fr:["jours vers"]}},59215:e=>{e.exports={en:["days from"],fr:["jours de"]}},2359:e=>{e.exports={en:["hours"],fr:["Heures"]}},82267:e=>{e.exports={en:["hours from"],fr:["heures de"]}},15600:e=>{e.exports={en:["hours to"],fr:["heures vers"]}},92598:e=>{e.exports={en:["hollow candles"],fr:["Bougies Creuses"]}},76261:e=>{e.exports={en:["move drawings"],fr:["déplacer les dessins"]}},95300:e=>{e.exports={en:["months"],fr:["Mois"]}},17250:e=>{e.exports={en:["months from"],fr:["mois de"]}},2828:e=>{e.exports={en:["months to"],fr:["mois vers"]}},18726:e=>{e.exports={en:["minutes"],fr:["Minutes"]}},67649:e=>{e.exports={en:["minutes to"],fr:["minutes vers"]}},22476:e=>{e.exports={en:["minutes from"],fr:["minutes de"]}},751:e=>{e.exports={en:["seconds"],fr:["secondes"]}},73419:e=>{e.exports={en:["seconds to"],fr:["secondes vers"]}},35801:e=>{e.exports={en:["seconds from"],fr:["secondes de"]}},57243:e=>{e.exports={en:["range","ranges"],fr:["plage","plages"]}},70282:e=>{e.exports={en:["renko"],fr:["Renko"]}},45537:e=>{e.exports={en:["weeks"],fr:["semaines"]}},92859:e=>{e.exports={en:["weeks from"],fr:["semaines de"]}},44127:e=>{e.exports={en:["weeks to"],fr:["semaines vers"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],fr:["Ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],fr:["utiliser le règlement comme clôture sur l'intervalle quotidien"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],fr:["{value} décimale","{value} décimales"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],fr:["Point"]}},41256:e=>{e.exports={en:["Back"],fr:["Retour"]}},53174:e=>{e.exports={en:["Right"],fr:["De droite"]}},57e3:e=>{e.exports={en:["Compare"],fr:["Comparer"]}},93111:e=>{e.exports={en:["Content"],fr:["Contenu"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],fr:["Copier le lien vers l'image du graphique"]}},4543:e=>{e.exports={en:["Cancel"],fr:["Annuler"]}},59934:e=>{e.exports={en:["Channels"],fr:["Canaux"]}},63245:e=>{e.exports={en:["Change symbol"],fr:["Changer le symbole"]}},56281:e=>{e.exports={en:["Chart style Columns"],fr:["Style de graphique Colonnes"]}},64526:e=>{e.exports={en:["Chart style Candles"],fr:["Style de graphique bougies"]}},9537:e=>{e.exports={en:["Chart style Area"],fr:["Style de graphique zones"]}},19265:e=>{e.exports={en:["Chart style Bars"],fr:["Style de graphique barres"]}},19579:e=>{e.exports={en:["Chart style Baseline"],fr:["Style de graphique Ligne de base"]}},47189:e=>{e.exports={en:["Chart style Kagi"],fr:["Style de graphique Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],fr:["Style de graphique Zone HLC"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],fr:["Style de graphique bougies creuses"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],fr:["Style de graphique Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],fr:["Style de graphique Haut-Bas"]}},92911:e=>{e.exports={en:["Chart style Line"],fr:["Style de graphique ligne"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],fr:["Style de graphique Ligne avec marqueurs"]}},11604:e=>{e.exports={en:["Chart style Line break"],fr:["Style de graphique Cassure de ligne"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],fr:["Style de graphique Profil du volume de la session"]}},40447:e=>{e.exports={en:["Chart style Step line"],fr:["Style de graphique Ligne en escalier"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],fr:["Style de graphique Point & Figure"]}},49942:e=>{e.exports={en:["Chart style Range"],fr:["Style de graphique Gamme"]}},80082:e=>{e.exports={en:["Chart style Renko"],fr:["Style de graphique Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],fr:["Style de graphique Temps Prix Opportunité"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],fr:["Style de graphique Bougies de volume"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],fr:["Style de graphique Empreinte de volume"]}},53438:e=>{e.exports={en:["Chart template"],fr:["Modèle de graphique"]}},47742:e=>{e.exports={en:["Close menu"],fr:["Fermer le menu"]}},81578:e=>{e.exports={en:["Cursors"],fr:["Curseurs"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],fr:["Outils d'annotation"]}},69207:e=>{e.exports={en:["Add to favorites"],fr:["Ajouter aux favoris"]}},34040:e=>{e.exports={en:["All sources"],fr:["Toutes les sources"]}},19147:e=>{e.exports={en:["Arrows"],fr:["Flèches"]}},
|
||||
42358:e=>{e.exports={en:["Bond"],fr:["Obligation"]}},65695:e=>{e.exports={en:["Brushes"],fr:["Brosses"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],fr:["Outils de Gann et Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],fr:["Formes géométriques"]}},57157:e=>{e.exports={en:["Dot"],fr:["Point"]}},25848:e=>{e.exports={en:["Dark theme"],fr:["Thème sombre"]}},14939:e=>{e.exports={en:["Demonstration"],fr:["Démonstration"]}},78734:e=>{e.exports={en:["Description"]}},74385:e=>{e.exports={en:["Drawings"],fr:["Dessins"]}},44255:e=>{e.exports={en:["Elliott waves"],fr:["Vagues d'Elliott"]}},8727:e=>{e.exports={en:["Eraser"],fr:["Gomme"]}},93308:e=>{e.exports={en:["Extended session"],fr:["Session étendue"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],fr:["Outils de prédiction et de mesure"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],fr:["Mode plein écran"]}},83576:e=>{e.exports={en:["Function"],fr:["Fonction"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],fr:["Maintenez la touche {hotKey_0} enfoncée pour un dessin temporaire"]}},27077:e=>{e.exports={en:["Open Object Tree"],fr:["Ouvrir l'arborescence des objets"]}},7386:e=>{e.exports={en:["Open chart layout"],fr:["Ouvrir la mise en page du graphique"]}},79451:e=>{e.exports={en:["Lock all drawings"],fr:["Verrouiller tous les Outils de Dessin"]}},35112:e=>{e.exports={en:["Move chart back"],fr:["Déplacer le graphique vers l'arrière"]}},12754:e=>{e.exports={en:["Move chart forward"],fr:["Déplacer le graphique vers l'avant"]}},37117:e=>{e.exports={en:["More"],fr:["Plus"]}},35553:e=>{e.exports={en:["Magic"],fr:["Magie"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],fr:["Le mode Aimant accroche les dessins placés près des barres de prix à la valeur OHLC la plus proche"]}},81031:e=>{e.exports={en:["Manage layout drawings"],fr:["Gérer les dessins de mise en page"]}},91563:e=>{e.exports={en:["Measure"],fr:["Mesure"]}},97050:e=>{e.exports={en:["Measurer"],fr:["Mesureur"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],fr:["Fusionner toutes les échelles vers la gauche"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],fr:["Fusionner toutes les échelles vers la droite"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],fr:["Aucun échange ne correspond à vos critères"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],fr:["Aucun symbole ne correspond à vos critères"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],fr:["Rien ne correspond à vos critères"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],fr:["Les nouveaux tracés sont répliqués dans tous les graphiques de la mise en page et affichés lorsque le même ticker est sélectionné"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],fr:["Les nouveaux dessins seront synchronisés globalement"]}},
|
||||
93027:e=>{e.exports={en:["New drawings will sync in layout"],fr:["Les nouveaux dessins seront synchronisés dans la mise en page"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"],fr:["Sauvegarder la Configuration du Graphique"]}},8573:e=>{e.exports={en:["Search"],fr:["Chercher"]}},79354:e=>{e.exports={en:["Search tool or function"],fr:["Outil ou fonction de recherche"]}},57640:e=>{e.exports={en:["Select source"],fr:["Sélectionner la source"]}},65781:e=>{e.exports={en:["Shapes"],fr:["Formes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],fr:["Montrer les Outils Cachés"]}},85786:e=>{e.exports={en:["Show Object Tree"],fr:["Afficher l'arborescence des objets"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],fr:["Rester en Mode Dessin"]}},94593:e=>{e.exports={en:["Strong Magnet"],fr:["Aimant puissant"]}},95481:e=>{e.exports={en:["Symbol"],fr:["Symbole"]}},74007:e=>{e.exports={en:["Symbol & description"],fr:["Symbole & description"]}},51165:e=>{e.exports={en:["Symbol Search"],fr:["Recherche de symbole"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],fr:["Sync tracés sur tous les graphiques"]}},46417:e=>{e.exports={en:["Patterns"],fr:["Motifs"]}},36167:e=>{e.exports={en:["Pitchforks"],fr:["Fourches"]}},79366:e=>{e.exports={en:["Previous day close price line"],fr:["Ligne de prix de clôture du jour précédent"]}},76753:e=>{e.exports={en:["Recent search"],fr:["Recherche récente"]}},28051:e=>{e.exports={en:["Regular session"],fr:["Session ordinaire"]}},57118:e=>{e.exports={en:["Remove Drawings"],fr:["Supprimer les dessins"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],fr:["Supprimer tous les indicateurs et outils de dessin"]}},96374:e=>{e.exports={en:["Remove drawings"],fr:["Supprimer les dessins"]}},85106:e=>{e.exports={en:["Remove from favorites"],fr:["Retirer des favoris"]}},99984:e=>{e.exports={en:["Remove indicators"],fr:["Supprimer les indicateurs"]}},38206:e=>{e.exports={en:["Rename chart layout"],fr:["Renommer la configuration du graphique"]}},31789:e=>{e.exports={en:["Reset chart"],fr:["Réinitialiser le graphique"]}},3519:e=>{e.exports={en:["Weak Magnet"],fr:["Aimant faible"]}},65831:e=>{e.exports={en:["Text & Notes"],fr:["Texte & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],fr:["Outils de lignes de tendances"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],fr:["Tapez pour rechercher des dessins, des fonctions et des paramètres"]}},69260:e=>{e.exports={en:["Volume-based"],fr:["Basé sur le volume"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],fr:["Vous changez l'interface utilisateur pour le thème {name}. Souhaitez-vous également changer le thème du modèle de graphique ?"]}},55774:e=>{e.exports={en:["Zoom In"],fr:["Grossissement"]}},37310:e=>{e.exports={en:["Zoom Out"],fr:["Réduction"]}},70932:e=>{e.exports={en:["commodity"],fr:["produit de base"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={
|
||||
en:["change ideas visibility on chart"],fr:["changer la visibilité des idées sur le graphique"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],fr:["Modifier la visibilité des étiquettes de noms des indicateurs et des données financières"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],fr:["modifier la visibilité des étiquettes de valeur des indicateurs et des données financières"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],fr:["changer la visibilité des lignes de prix pré/post marché"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],fr:["économie"]}},17770:e=>{e.exports={en:["forex"],fr:["Forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"],fr:["indice"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"],fr:["sync les dessins"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],fr:["{hotKey_0} + cliquer sur le graphique"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],fr:["{hotKey_0} - cercle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],fr:["{hotKey_0} - dessiner une ligne droite à des angles de 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],fr:["{hotKey_0} - Incréments fixes"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],fr:["{hotKey_0} - carré"]}}}]);
|
||||
4
charting_library/bundles/fr.4211.932ffa2dc04657916b72.js
Normal file
4
charting_library/bundles/fr.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],fr:["Point"]}},41256:e=>{e.exports={en:["Back"],fr:["Retour"]}},53174:e=>{e.exports={en:["Right"],fr:["De droite"]}},57e3:e=>{e.exports={en:["Compare"],fr:["Comparer"]}},93111:e=>{e.exports={en:["Content"],fr:["Contenu"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],fr:["Copier le lien vers l'image du graphique"]}},4543:e=>{e.exports={en:["Cancel"],fr:["Annuler"]}},59934:e=>{e.exports={en:["Channels"],fr:["Canaux"]}},63245:e=>{e.exports={en:["Change symbol"],fr:["Changer le symbole"]}},56281:e=>{e.exports={en:["Chart style Columns"],fr:["Style de graphique Colonnes"]}},64526:e=>{e.exports={en:["Chart style Candles"],fr:["Style de graphique bougies"]}},9537:e=>{e.exports={en:["Chart style Area"],fr:["Style de graphique zones"]}},19265:e=>{e.exports={en:["Chart style Bars"],fr:["Style de graphique barres"]}},19579:e=>{e.exports={en:["Chart style Baseline"],fr:["Style de graphique Ligne de base"]}},47189:e=>{e.exports={en:["Chart style Kagi"],fr:["Style de graphique Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],fr:["Style de graphique Zone HLC"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],fr:["Style de graphique bougies creuses"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],fr:["Style de graphique Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],fr:["Style de graphique Haut-Bas"]}},92911:e=>{e.exports={en:["Chart style Line"],fr:["Style de graphique ligne"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],fr:["Style de graphique Ligne avec marqueurs"]}},11604:e=>{e.exports={en:["Chart style Line break"],fr:["Style de graphique Cassure de ligne"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],fr:["Style de graphique Profil du volume de la session"]}},40447:e=>{e.exports={en:["Chart style Step line"],fr:["Style de graphique Ligne en escalier"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],fr:["Style de graphique Point & Figure"]}},49942:e=>{e.exports={en:["Chart style Range"],fr:["Style de graphique Gamme"]}},80082:e=>{e.exports={en:["Chart style Renko"],fr:["Style de graphique Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],fr:["Style de graphique Temps Prix Opportunité"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],fr:["Style de graphique Bougies de volume"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],fr:["Style de graphique Empreinte de volume"]}},53438:e=>{e.exports={en:["Chart template"],fr:["Modèle de graphique"]}},47742:e=>{e.exports={en:["Close menu"],fr:["Fermer le menu"]}},81578:e=>{e.exports={en:["Cursors"],fr:["Curseurs"]}},77915:e=>{e.exports={en:["Cycles"]}},32064:e=>{e.exports={en:["Annotation tools"],fr:["Outils d'annotation"]}},69207:e=>{e.exports={en:["Add to favorites"],fr:["Ajouter aux favoris"]}},34040:e=>{e.exports={en:["All sources"],fr:["Toutes les sources"]}},19147:e=>{
|
||||
e.exports={en:["Arrows"],fr:["Flèches"]}},42358:e=>{e.exports={en:["Bond"],fr:["Obligation"]}},65695:e=>{e.exports={en:["Brushes"],fr:["Brosses"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],fr:["Outils de Gann et Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],fr:["Formes géométriques"]}},57157:e=>{e.exports={en:["Dot"],fr:["Point"]}},25848:e=>{e.exports={en:["Dark theme"],fr:["Thème sombre"]}},14939:e=>{e.exports={en:["Demonstration"],fr:["Démonstration"]}},78734:e=>{e.exports={en:["Description"]}},74385:e=>{e.exports={en:["Drawings"],fr:["Dessins"]}},44255:e=>{e.exports={en:["Elliott waves"],fr:["Vagues d'Elliott"]}},8727:e=>{e.exports={en:["Eraser"],fr:["Gomme"]}},93308:e=>{e.exports={en:["Extended session"],fr:["Session étendue"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],fr:["Outils de prédiction et de mesure"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],fr:["Mode plein écran"]}},83576:e=>{e.exports={en:["Function"],fr:["Fonction"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],fr:["Maintenez la touche {hotKey_0} enfoncée pour un dessin temporaire"]}},27077:e=>{e.exports={en:["Open Object Tree"],fr:["Ouvrir l'arborescence des objets"]}},7386:e=>{e.exports={en:["Open chart layout"],fr:["Ouvrir la mise en page du graphique"]}},79451:e=>{e.exports={en:["Lock all drawings"],fr:["Verrouiller tous les Outils de Dessin"]}},35112:e=>{e.exports={en:["Move chart back"],fr:["Déplacer le graphique vers l'arrière"]}},12754:e=>{e.exports={en:["Move chart forward"],fr:["Déplacer le graphique vers l'avant"]}},37117:e=>{e.exports={en:["More"],fr:["Plus"]}},35553:e=>{e.exports={en:["Magic"],fr:["Magie"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],fr:["Le mode Aimant accroche les dessins placés près des barres de prix à la valeur OHLC la plus proche"]}},81031:e=>{e.exports={en:["Manage layout drawings"],fr:["Gérer les dessins de mise en page"]}},91563:e=>{e.exports={en:["Measure"],fr:["Mesure"]}},97050:e=>{e.exports={en:["Measurer"],fr:["Mesureur"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],fr:["Fusionner toutes les échelles vers la gauche"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],fr:["Fusionner toutes les échelles vers la droite"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],fr:["Aucun échange ne correspond à vos critères"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],fr:["Aucun symbole ne correspond à vos critères"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],fr:["Rien ne correspond à vos critères"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],fr:["Les nouveaux tracés sont répliqués dans tous les graphiques de la mise en page et affichés lorsque le même ticker est sélectionné"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],
|
||||
fr:["Les nouveaux dessins seront synchronisés globalement"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],fr:["Les nouveaux dessins seront synchronisés dans la mise en page"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"],fr:["Sauvegarder la Configuration du Graphique"]}},8573:e=>{e.exports={en:["Search"],fr:["Chercher"]}},79354:e=>{e.exports={en:["Search tool or function"],fr:["Outil ou fonction de recherche"]}},57640:e=>{e.exports={en:["Select source"],fr:["Sélectionner la source"]}},65781:e=>{e.exports={en:["Shapes"],fr:["Formes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],fr:["Montrer les Outils Cachés"]}},85786:e=>{e.exports={en:["Show Object Tree"],fr:["Afficher l'arborescence des objets"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],fr:["Rester en Mode Dessin"]}},94593:e=>{e.exports={en:["Strong Magnet"],fr:["Aimant puissant"]}},95481:e=>{e.exports={en:["Symbol"],fr:["Symbole"]}},74007:e=>{e.exports={en:["Symbol & description"],fr:["Symbole & description"]}},51165:e=>{e.exports={en:["Symbol Search"],fr:["Recherche de symbole"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],fr:["Sync tracés sur tous les graphiques"]}},46417:e=>{e.exports={en:["Patterns"],fr:["Motifs"]}},36167:e=>{e.exports={en:["Pitchforks"],fr:["Fourches"]}},79366:e=>{e.exports={en:["Previous day close price line"],fr:["Ligne de prix de clôture du jour précédent"]}},76753:e=>{e.exports={en:["Recent search"],fr:["Recherche récente"]}},28051:e=>{e.exports={en:["Regular session"],fr:["Session ordinaire"]}},57118:e=>{e.exports={en:["Remove Drawings"],fr:["Supprimer les dessins"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],fr:["Supprimer tous les indicateurs et outils de dessin"]}},96374:e=>{e.exports={en:["Remove drawings"],fr:["Supprimer les dessins"]}},85106:e=>{e.exports={en:["Remove from favorites"],fr:["Retirer des favoris"]}},99984:e=>{e.exports={en:["Remove indicators"],fr:["Supprimer les indicateurs"]}},38206:e=>{e.exports={en:["Rename chart layout"],fr:["Renommer la configuration du graphique"]}},31789:e=>{e.exports={en:["Reset chart"],fr:["Réinitialiser le graphique"]}},3519:e=>{e.exports={en:["Weak Magnet"],fr:["Aimant faible"]}},65831:e=>{e.exports={en:["Text & Notes"],fr:["Texte & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],fr:["Outils de lignes de tendances"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],fr:["Tapez pour rechercher des dessins, des fonctions et des paramètres"]}},69260:e=>{e.exports={en:["Volume-based"],fr:["Basé sur le volume"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],fr:["Vous changez l'interface utilisateur pour le thème {name}. Souhaitez-vous également changer le thème du modèle de graphique ?"]}},55774:e=>{e.exports={en:["Zoom In"],fr:["Grossissement"]}},37310:e=>{e.exports={en:["Zoom Out"],fr:["Réduction"]}},70932:e=>{e.exports={en:["commodity"],
|
||||
fr:["produit de base"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],fr:["changer la visibilité des idées sur le graphique"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],fr:["Modifier la visibilité des étiquettes de noms des indicateurs et des données financières"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],fr:["modifier la visibilité des étiquettes de valeur des indicateurs et des données financières"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],fr:["changer la visibilité des lignes de prix pré/post marché"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],fr:["économie"]}},17770:e=>{e.exports={en:["forex"],fr:["Forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"],fr:["indice"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"],fr:["sync les dessins"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],fr:["{hotKey_0} + cliquer sur le graphique"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],fr:["{hotKey_0} - cercle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],fr:["{hotKey_0} - dessiner une ligne droite à des angles de 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],fr:["{hotKey_0} - Incréments fixes"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],fr:["{hotKey_0} - carré"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],fr:["Foncé"]}},96870:e=>{e.exports={en:["Light"],fr:["Clair"]}},85886:e=>{e.exports={en:["d"],fr:["j"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],fr:["copie {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],fr:["B"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],fr:["Couleur de niveau -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],fr:["Couleur de niveau -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],fr:["Couleur de niveau -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],fr:["Couleur de niveau -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],fr:["Couleur de niveau 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],fr:["Couleur de niveau 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],fr:["Couleur de niveau 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],fr:["Couleur de niveau 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],fr:["Couleur de niveau 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],fr:["Couleur de niveau 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],fr:["Couleur de niveau 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],fr:["Couleur de niveau 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],fr:["Couleur de niveau 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],fr:["Couleur de niveau 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],fr:["Couleur de niveau 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],fr:["Couleur de niveau 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],fr:["1ère période"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],fr:["Couleur de niveau 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],fr:["Couleur de niveau 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],fr:["2ème période"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],fr:["Couleur de niveau 3.618"]},e.exports["3.65 Level Color_input"]={
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"],fr:["Foncé"]}},96870:e=>{e.exports={en:["Light"],fr:["Clair"]}},85886:e=>{e.exports={en:["d"],fr:["j"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],fr:["copie {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],fr:["B"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],fr:["Couleur de niveau -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],fr:["Couleur de niveau -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],fr:["Couleur de niveau -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],fr:["Couleur de niveau -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],fr:["Couleur de niveau 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],fr:["Couleur de niveau 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],fr:["Couleur de niveau 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],fr:["Couleur de niveau 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],fr:["Couleur de niveau 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],fr:["Couleur de niveau 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],fr:["Couleur de niveau 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],fr:["Couleur de niveau 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],fr:["Couleur de niveau 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],fr:["Couleur de niveau 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],fr:["Couleur de niveau 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],fr:["Couleur de niveau 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],fr:["1ère période"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],fr:["Couleur de niveau 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],fr:["Couleur de niveau 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],fr:["2ème période"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],fr:["Couleur de niveau 3.618"]},e.exports["3.65 Level Color_input"]={
|
||||
en:["3.65 Level Color"],fr:["Couleur de niveau 3.65"]},e.exports["3rd Period_input"]={en:["3rd Period"],fr:["3ème période"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],fr:["Couleur de niveau 4.236"]},e.exports["4th Period_input"]={en:["4th Period"],fr:["4ème période"]},e.exports["5th Period_input"]={en:["5th Period"],fr:["5ème période"]},e.exports["6th Period_input"]={en:["6th Period"],fr:["6ème période"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],fr:["ADXSmoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],fr:["ADXsmoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"],fr:["Longueur ATR"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"]},e.exports["All items_combobox_input"]={en:["All items"],fr:["Tous les objets"]},e.exports.All_input={en:["All"],fr:["Tout"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],fr:["Période de référence"]},e.exports["Another symbol_input"]={en:["Another symbol"],fr:["Un autre symbole"]},e.exports["Aroon Down_input"]={en:["Aroon Down"],fr:["AroonDown"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"],fr:["Moyenne"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],fr:["Périodes de moyennes"]},e.exports.Back_input={en:["Back"],fr:["Retour"]},e.exports["Bands style_input"]={en:["Bands style"],fr:["Style de bandes"]},e.exports.Bar_input={en:["Bar"],fr:["Barre"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],fr:["Périodes de ligne de base"]},e.exports["Base Line_input"]={en:["Base Line"],fr:["Ligne de base"]},e.exports.Basis_input={en:["Basis"],fr:["Base"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],fr:["Bandes de Bollinger %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],fr:["Largeur des Bandes de Bollinger"]},e.exports.Borders_input={en:["Borders"],fr:["Bordures"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],fr:["Méthode d'affectation de la taille de boîte"]},e.exports["Box size_input"]={en:["Box size"],fr:["Taille de la boîte"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"],fr:["Annuler"]},e.exports.Candles_input={en:["Candles"],fr:["Bougies"]},e.exports.Centered_input={en:["Centered"],fr:["Centré"]},e.exports.Century_input={en:["Century"],fr:["Siècle"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],fr:["Oscillateur de Chaikin"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"],fr:["Fermeture"]},e.exports["Color 0_input"]={en:["Color 0"],fr:["Couleur 0"]},e.exports["Color 1_input"]={en:["Color 1"],fr:["Couleur 1"]},e.exports["Color 2_input"]={en:["Color 2"],fr:["Couleur 2"]},e.exports["Color 3_input"]={en:["Color 3"],
|
||||
fr:["Couleur 3"]},e.exports["Color 4_input"]={en:["Color 4"],fr:["Couleur 4"]},e.exports["Color 5_input"]={en:["Color 5"],fr:["Couleur 5"]},e.exports["Color 6_input"]={en:["Color 6"],fr:["Couleur 6"]},e.exports["Color 7_input"]={en:["Color 7"],fr:["Couleur 7"]},e.exports["Color 8_input"]={en:["Color 8"],fr:["Couleur 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],fr:["Barres de couleur basées sur la clôture précédente"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],fr:["Couleur basée sur la clôture précédente"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],fr:["Pérodes de lignes de conversion"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],fr:["Ligne de conversion"]},e.exports.Correlation_input={en:["Correlation"],fr:["Corrélation"]},e.exports.Count_input={en:["Count"],fr:["Compter"]},e.exports.Crosses_input={en:["Crosses"]},e.exports.Custom_input={en:["Custom"],fr:["Personnalisé"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],fr:["Longueur de DI"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],fr:["Jours"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],fr:["Jours par an"]},e.exports.Decade_input={en:["Decade"],fr:["Décennie"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"],fr:["Profondeur"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"],fr:["Oscillateur de prix dé-tendancé"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],fr:["Développer POC"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"]},e.exports.Deviation_input={en:["Deviation"],fr:["Déviation"]},e.exports.Divisor_input={en:["Divisor"],fr:["Diviseur"]},e.exports["Down Volume_input"]={en:["Down Volume"],fr:["Volume des transactions de vente"]},e.exports["Down bars_input"]={en:["Down bars"],fr:["Barres inférieures"]},e.exports["Down color_input"]={en:["Down color"],fr:["Couleur du bas"]},e.exports["Down fractals_input"]={en:["Down fractals"],fr:["Fractales inférieures"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],fr:["Chacune (pré-marché, marché, post-marché)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],fr:["Indice Elder's Force"]},e.exports["Equality Line_input"]={en:["Equality Line"],fr:["Ligne d'égalité"]},e.exports.Exponential_input={en:["Exponential"],fr:["Exponentiel"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"],fr:["Étendre POC à droite"]},e.exports["Extend Right_input"]={en:["Extend Right"],fr:["Étendre à droite"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],fr:["Étendre VAH à droite"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],fr:["Étendre VAL à droite"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"],fr:["Etendre jusqu'à la dernière barre"]},
|
||||
e.exports.Falling_input={en:["Falling"],fr:["En chute"]},e.exports["Fast Length_input"]={en:["Fast Length"],fr:["Longueur rapide"]},e.exports["Fast length_input"]={en:["Fast length"],fr:["Longueur rapide"]},e.exports.Fill_input={en:["Fill"],fr:["Remplir"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],fr:["En croissance"]},e.exports["HLC bars_input"]={en:["HLC bars"],fr:["Barres HLC"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],fr:["Boîte d'histogramme"]},e.exports.Histogram_input={en:["Histogram"],fr:["Histogramme"]},e.exports["Hull MA_input"]={en:["Hull MA"],fr:["Hul MA"]},e.exports.Increment_input={en:["Increment"],fr:["Incrément"]},e.exports.Indicator_input={en:["Indicator"],fr:["Indicateur"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],fr:["Longueur Investisseur EMA 1"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],fr:["Longueur Investisseur EMA 2"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],fr:["Longueur Investisseur EMA 3"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],fr:["Longueur Investisseur EMA 4"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],fr:["Longueur Investisseur EMA 5"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],fr:["Longueur Investisseur EMA 6"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],fr:["Longueur de Jaw"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],fr:["Position des Etiquettes"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],fr:["Étiquettes sur l'échelle de prix"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],fr:["Périodes de latence"]},e.exports["Lagging Span_input"]={en:["Lagging Span"],fr:["Délai de retournement"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],fr:["Principales périodes de roulement"]},e.exports["Leading Span A_input"]={en:["Leading Span A"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],fr:["Périodes de couverture principales"]},e.exports["Length EMA_input"]={en:["Length EMA"],fr:["Longueur EMA"]},e.exports["Length MA_input"]={en:["Length MA"],fr:["Longueur MA"]},e.exports.Length1_input={en:["Length1"],fr:["Longueur 1"]},e.exports.Length2_input={en:["Length2"],fr:["Longueur 2"]},e.exports.Length3_input={en:["Length3"],fr:["Longueur 3"]},e.exports.Length_input={en:["Length"],fr:["Longueur"]},e.exports.Level_input={en:["Level"],fr:["Niveau"]},e.exports["Levels Format_input"]={en:["Levels Format"],fr:["Format des Niveaux"]},e.exports.Limit_input={en:["Limit"],fr:["Limite"]},e.exports.Line_input={en:["Line"],
|
||||
@@ -29,32 +29,32 @@ en:["Minor"],fr:["Mineure"]}},922:e=>{e.exports={en:["Minute"]}},91405:e=>{e.exp
|
||||
fr:["Cliquer pour établir un point"]}},12537:e=>{e.exports={en:["Clone"],fr:["Cloner"]}},62578:e=>{e.exports={en:["Close"],fr:["Fermeture"]}},264:e=>{e.exports={en:["Create limit order"],fr:["Créer un ordre de limite"]}},6969:e=>{e.exports={en:["Cross"]}},74334:e=>{e.exports={en:["Cross Line"],fr:["Ligne de croisement"]}},59396:e=>{e.exports={en:["Currencies"],fr:["Devises"]}},20177:e=>{e.exports={en:["Current interval and above"],fr:["Intervalle actuel et supérieur"]}},494:e=>{e.exports={en:["Current interval and below"],fr:["Intervalle actuel et inférieur"]}},60668:e=>{e.exports={en:["Current interval only"],fr:["Intervalle actuel uniquement"]}},78609:e=>{e.exports={en:["Curve"],fr:["Courbe"]}},87380:e=>{e.exports={en:["Cycle"]}},84031:e=>{e.exports={en:["Cyclic Lines"],fr:["Lignes cycliques"]}},93191:e=>{e.exports={en:["Cypher Pattern"],fr:["Modèle Cypher"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],fr:["Une mise en page portant ce nom existe déjà"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],fr:["Une mise en page portant ce nom existe déjà. Voulez-vous l'écraser?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],fr:["Figure en ABCD"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"],fr:["Ancre"]}},42630:e=>{e.exports={en:["Anchorage"],fr:["Ancrage"]}},42669:e=>{e.exports={en:["Anchored Text"],fr:["Texte ancré"]}},84541:e=>{e.exports={en:["Anchored VWAP"],fr:["VWAP ancré"]}},77401:e=>{e.exports={en:["Access error"],fr:["Erreur d'accès"]}},46501:e=>{e.exports={en:["Add Symbol"],fr:["Ajouter un Symbole"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],fr:["Ajouter une métrique financière pour {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],fr:["Ajouter un indicateur/une stratégie à {studyTitle}.."]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],fr:["Ajouter cette métrique financière à l'ensemble de la mise en page"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],fr:["Ajouter cette métrique financière aux favoris"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],fr:["Ajouter cet indicateur à l'ensemble de la mise en page"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],fr:["Ajouter cet indicateur aux favoris"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],fr:["Ajouter cette stratégie à l'ensemble de la mise en page"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],fr:["Ajouter ce symbole à l'ensemble de la mise en page"]}},426:e=>{e.exports={en:["Adelaide"],fr:["Adélaïde"]}},40452:e=>{e.exports={en:["Always invisible"],fr:["Toujours invisible"]}},36299:e=>{e.exports={en:["Always visible"],fr:["Toujours visible"]}},58026:e=>{e.exports={en:["All intervals"],fr:["Tous les intervalles"]}},78358:e=>{e.exports={en:["Apply default"],fr:["Appliquer paramètres par Défaut"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],
|
||||
fr:["Appliquer ces indicateurs à l'ensemble de la mise en page"]}},27072:e=>{e.exports={en:["Apr"],fr:["Avr"]}},59324:e=>{e.exports={en:["Arc"]}},34456:e=>{e.exports={en:["Area"],fr:["Région"]}},11858:e=>{e.exports={en:["Arrow"],fr:["Flèche"]}},34247:e=>{e.exports={en:["Arrow Down"],fr:["Flèche vers le bas"]}},36352:e=>{e.exports={en:["Arrow Marker"],fr:["Marqueur fléché"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],fr:["Flèche vers le Bas"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],fr:["Flèche vers la Gauche"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],fr:["Flèche vers la Droite"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],fr:["Flèche vers le Haut"]}},77231:e=>{e.exports={en:["Arrow Up"],fr:["Flèche vers le haut"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],fr:["Ashkhabad"]}},72445:e=>{e.exports={en:["At close"],fr:["A la fermeture"]}},73702:e=>{e.exports={en:["Athens"],fr:["Athènes"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],fr:["Auto (adapte les données à l'écran)"]}},46450:e=>{e.exports={en:["Aug"],fr:["Août"]}},21841:e=>{e.exports={en:["Average close price label"],fr:["Étiquette du prix moyen de clôture"]}},16138:e=>{e.exports={en:["Average close price line"],fr:["Ligne de prix de clôture moyen"]}},73025:e=>{e.exports={en:["Avg"],fr:["Moy"]}},87580:e=>{e.exports={en:["Azores"],fr:["Açores"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"],fr:["Bahrein"]}},70540:e=>{e.exports={en:["Balloon"],fr:["Ballon"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],fr:["Bar Replay n'est pas disponible pour ce type de graphique. Voulez-vous quitter Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],fr:["Bar Replay n'est pas disponible pour ce symbole. Voulez-vous quitter Bar Replay ?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],fr:["Bar Replay n'est pas disponible pour cet intervalle de temps. Voulez-vous quitter Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"],fr:["Barres"]}},81994:e=>{e.exports={en:["Bars Pattern"],fr:["Configuration de barres"]}},59213:e=>{e.exports={en:["Baseline"],fr:["Ligne de base"]}},71797:e=>{e.exports={en:["Belgrade"]}},64313:e=>{e.exports={en:["Berlin"]}},43539:e=>{e.exports={en:["Brush"],fr:["Pinceau"]}},91499:e=>{e.exports={en:["Brussels"],fr:["Bruxelles"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],fr:["Mettre en avant"]}},17293:e=>{e.exports={en:["Bring to front"],fr:["Mettre au premier plan"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"],fr:["Bucarest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],fr:["Par TradingView"]}},54280:e=>{e.exports={en:["Go to date"],fr:["Aller à cette date"]}},74975:e=>{e.exports={
|
||||
en:["Go to {lineToolName}"],fr:["Aller à {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],fr:["Compris"]}},47460:e=>{e.exports={en:["Gann Box"],fr:["Boite de Gan"]}},48683:e=>{e.exports={en:["Gann Fan"],fr:["Éventail de Gann"]}},44763:e=>{e.exports={en:["Gann Square"],fr:["Carré de Gann"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],fr:["Carré de Gann fixe"]}},46808:e=>{e.exports={en:["Ghost Feed"],fr:["Flux fantôme d'informations"]}},57726:e=>{e.exports={en:["Grand supercycle"],fr:["Grand Supercycle"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"],fr:["Voulez-vous vraiment supprimer le modèle d'indicateur '{name}'?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],fr:["Voulez-vous vraiment supprimer l'étude principale et ses dérivés ?"]}},77125:e=>{e.exports={en:["Double Curve"],fr:["Double Courbe"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],fr:["Double-cliquez sur n'importe quel bord pour réinitialiser la grille de mise en page"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],fr:["Double-cliquez pour terminer le tracé"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],fr:["Double-cliquez pour terminer Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"],fr:["Double-cliquez sur n'importe quel bord pour réinitialiser la grille de mise en page"]}},57131:e=>{e.exports={en:["Data Provided by"],fr:["Données fournies par"]}},22677:e=>{e.exports={en:["Date"]}},85444:e=>{e.exports={en:["Date Range"],fr:["Plage de dates"]}},47017:e=>{e.exports={en:["Date and Price Range"],fr:["Plage de dates et de prix"]}},32084:e=>{e.exports={en:["Dec"],fr:["Déc"]}},23403:e=>{e.exports={en:["Degree"],fr:["Degré"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],fr:["Diamant"]}},91544:e=>{e.exports={en:["Disjoint Channel"],fr:["Canal disjoint"]}},70132:e=>{e.exports={en:["Displacement"],fr:["Déplacement"]}},93864:e=>{e.exports={en:["Drawings toolbar"],fr:["Barre d'outils de dessin"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],fr:["Tracer une ligne horizontale à {price}"]}},23650:e=>{e.exports={en:["Dubai"],fr:["Dubaï"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],fr:["Entrer un nouveau nom de configuration graphique"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],fr:["Vague Elliott de correction (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],fr:["Vague Elliott Double Combo (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],fr:["Vague Elliott d'impulsion (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],fr:["Vague Triangle Elliott (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],fr:["Vague Triple Combo Elliott (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"]}},52788:e=>{e.exports={en:["Extended Line"],
|
||||
fr:["Ligne étendue"]}},86905:e=>{e.exports={en:["Exchange"],fr:["Marché"]}},19271:e=>{e.exports={en:["Existing pane above"],fr:["Volet existant au-dessus"]}},46545:e=>{e.exports={en:["Existing pane below"],fr:["Volet existant au-dessous"]}},20138:e=>{e.exports={en:["Forecast"],fr:["Prévision"]}},2507:e=>{e.exports={en:["Feb"],fr:["Févr"]}},59005:e=>{e.exports={en:["Fib Channel"],fr:["Canal de Fibonacci"]}},82330:e=>{e.exports={en:["Fib Circles"],fr:["Cercles de Fibonacci"]}},55986:e=>{e.exports={en:["Fib Retracement"],fr:["Retracement de Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],fr:["Arcs de Résistance de la vitesse de Fibonacci"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],fr:["Éventail de Résistance de la Vitesse de Fibonacci"]}},39014:e=>{e.exports={en:["Fib Spiral"],fr:["Spirale de Fibonacci"]}},30622:e=>{e.exports={en:["Fib Time Zone"],fr:["Zone Temporelle de Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],fr:["Coin de Fibonacci"]}},33885:e=>{e.exports={en:["Flag"],fr:["Drapeau"]}},14600:e=>{e.exports={en:["Flag Mark"],fr:["Marque de Drapeau"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],fr:["Haut/Bas Plat"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],fr:["La partie fractionnelle n'est pas valide."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],fr:["Les études fondamentales ne sont plus disponibles sur les graphiques"]}},31561:e=>{e.exports={en:["Kolkata"],fr:["Calcuta"]}},54533:e=>{e.exports={en:["Kathmandu"],fr:["Katmandou"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"],fr:["Koweit"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],fr:["Zone HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],fr:["Bougies Creuses"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],fr:["Ligne Horizontale"]}},25487:e=>{e.exports={en:["Horizontal Ray"],fr:["Rayon Horizontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],fr:["Tête et épaules"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],fr:["Cacher"]}},47074:e=>{e.exports={en:["Hide all"],fr:["Tout masquer"]}},52563:e=>{e.exports={en:["Hide all drawings"],fr:["Masquer tous les outils de dessin"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],fr:["Masquer tous les dessins et indicateurs"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],fr:["Masquer tous les dessins, indicateurs, positions & ordres"]}},78525:e=>{e.exports={en:["Hide all indicators"],fr:["Masquer tous les indicateurs"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],fr:["Masquer toutes les positions & ordres"]}},3217:e=>{e.exports={en:["Hide drawings"],fr:["Masquer les dessins"]}},97878:e=>{e.exports={en:["Hide events on chart"],fr:["Cacher les événements sur le graphique"]}},72351:e=>{
|
||||
e.exports={en:["Hide indicators"],fr:["Masquer les indicateurs"]}},28345:e=>{e.exports={en:["Hide marks on bars"],fr:["Cacher les marques de la barre"]}},92226:e=>{e.exports={en:["Hide positions & orders"],fr:["Masquer les positions et les ordres"]}},78254:e=>{e.exports={en:["High"],fr:["Haut"]}},98236:e=>{e.exports={en:["High-low"],fr:["Haut-Bas"]}},99479:e=>{e.exports={en:["High and low price labels"],fr:["Étiquettes de prix haut et bas"]}},33766:e=>{e.exports={en:["High and low price lines"],fr:["Lignes de prix haut et bas"]}},69476:e=>{e.exports={en:["Highlighter"],fr:["En vedette"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],fr:["L'histogramme est trop grand, veuillez augmenter {boldHighlightStart}Row Size{boldHighlightEnd} dans la fenêtre des paramètres."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],fr:["L'histogramme est trop grand, veuillez augmenter les {boldHighlightStart}Ticks par rangée{boldHighlightEnd} dans la fenêtre des paramètres."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],fr:["L'histogramme est trop grand, veuillez réduire {boldHighlightStart}Row Size{boldHighlightEnd} dans la fenêtre des paramètres."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],fr:["Les intervalles inférieurs à {resolution} ne sont pas pris en charge pour {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],fr:["Intermédiaire"]}},14285:e=>{e.exports={en:["Invalid Symbol"],fr:["Symbole invalide"]}},52969:e=>{e.exports={en:["Invalid symbol"],fr:["Symbole invalide"]}},37189:e=>{e.exports={en:["Invert scale"],fr:["Inverser l'échelle"]}},89999:e=>{e.exports={en:["Indexed to 100"],fr:["Indexé sur 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],fr:["Étiquettes de valeur des indicateurs"]}},54418:e=>{e.exports={en:["Indicators name labels"],fr:["Libellés des indicateurs"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],fr:["Indicateurs, métriques et stratégies. Taper barre oblique"]}},15992:e=>{e.exports={en:["Info Line"],fr:["Ligne info"]}},87829:e=>{e.exports={en:["Insert indicator"],fr:["Ajouter un indicateur"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],fr:["Fourchette Interne"]}},37913:e=>{e.exports={en:["Icon"],fr:["Icône"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"],fr:["Djakarta"]}},62310:e=>{e.exports={en:["Jan"],fr:["Janv"]}},36057:e=>{e.exports={en:["Jerusalem"],fr:["Jérusalem"]}},53786:e=>{e.exports={en:["Jul"],fr:["Juill"]}},429:e=>{e.exports={en:["Jun"],fr:["Juin"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],fr:["Sur la gauche"]}},55813:e=>{e.exports={en:["On the right"],fr:["Sur la droite"]}},
|
||||
64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],fr:["Seuls les intervalles {availableResolutions} sont pris en charge pour {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],fr:["Oups!"]}},51221:e=>{e.exports={en:["Object Tree"],fr:["Arborescence des objets"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"],fr:["Ouverture"]}},27884:e=>{e.exports={en:["Open layout. Press period"],fr:["Ouvrir la mise en page. Appuyer sur point."]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],fr:["Bas"]}},51077:e=>{e.exports={en:["Lock"],fr:["Verrouiller"]}},79777:e=>{e.exports={en:["Lock/unlock"],fr:["Verrouiller/Déverrouiller"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],fr:["Verrouiller la ligne du curseur vertical en fonction du temps"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],fr:["Verrouiller le rapport prix / barre"]}},16170:e=>{e.exports={en:["Logarithmic"],fr:["Logarithmique"]}},19439:e=>{e.exports={en:["London"],fr:["Londres"]}},74832:e=>{e.exports={en:["Long Position"],fr:["Position Longue"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],fr:["Etiquette vers le bas"]}},52402:e=>{e.exports={en:["Label Up"],fr:["Etiquette vers le haut"]}},5119:e=>{e.exports={en:["Labels"],fr:["Étiquettes"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],fr:["Changement durant le dernier jour"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],fr:["Droite"]}},9394:e=>{e.exports={en:["Line with markers"],fr:["Ligne avec marqueurs"]}},43588:e=>{e.exports={en:["Line break"],fr:["Saut de ligne"]}},56982:e=>{e.exports={en:["Lines"],fr:["Lignes"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],fr:["Lien vers l'image du graphique copié dans le presse-papiers {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],fr:["Lisbonne"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],fr:["Déplacez le point pour positionner l'ancre puis touchez pour le placer"]}},35049:e=>{e.exports={en:["Move to"],fr:["Déplacer vers"]}},26493:e=>{e.exports={en:["Move scale to left"],fr:["Déplacer l'échelle vers la gauche"]}},40789:e=>{e.exports={en:["Move scale to right"],fr:["Déplacer l'échelle vers la droite"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],fr:["Fourchette de Schiff Modifiée"]}},93907:e=>{e.exports={en:["More settings"],fr:["Plus de paramètres"]}},64039:e=>{e.exports={en:["Moscow"],fr:["Moscou"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"],fr:["Malte"]}},48991:e=>{e.exports={en:["Manila"],fr:["Manille"]}},92767:e=>{e.exports={en:["Mar"],fr:["Mars"]}},73332:e=>{e.exports={en:["Mexico City"],fr:["Ville de Mexico"]}},88314:e=>{e.exports={en:["Merge all scales into one"],fr:["Fusionner toutes les échelles en une"]}},54215:e=>{e.exports={en:["Mixed"],fr:["Mélangé"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={
|
||||
en:["Millennium"],fr:["Millénaire"]}},14724:e=>{e.exports={en:["Minuette"],fr:["Menuet"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"],fr:["non disponible"]}},36252:e=>{e.exports={en:["No data here"],fr:["Pas de données ici"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],fr:["Pas d'échelle (plein écran)"]}},9140:e=>{e.exports={en:["No sync"],fr:["Pas de sync"]}},50910:e=>{e.exports={en:["No volume data"],fr:["Pas de données de volume"]}},99024:e=>{e.exports={en:["No, keep them"],fr:["Non, conservez-les"]}},94389:e=>{e.exports={en:["Note"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],fr:["Île Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],fr:["Nouvelle-Zélande"]}},15512:e=>{e.exports={en:["New pane above"],fr:["Nouveau volet ci-dessus"]}},52160:e=>{e.exports={en:["New pane below"],fr:["Nouveau volet ci-dessous"]}},94600:e=>{e.exports={en:["Nicosia"],fr:["Nicosie"]}},73013:e=>{e.exports={en:["Something went wrong"],fr:["Quelque chose n'a pas fonctionné"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],fr:["Un problème s'est produit lors de la création de l'indicateur."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],fr:["Quelque chose n'a pas fonctionné. Veuillez réessayer plus tard."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],fr:["Enregistrer la nouvelle configuration graphique"]}},76266:e=>{e.exports={en:["Save as"],fr:["Sauvegarder Sous"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"],fr:["São Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],fr:["Devise de référence"]}},43758:e=>{e.exports={en:["Scale price chart only"],fr:["Mise à l’échelle des prix du graphique uniquement"]}},40012:e=>{e.exports={en:["Scale unit"],fr:["Unité de référence"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],fr:["Fourchette de Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],fr:["Le script peut ne pas être mis à jour si vous quittez la page."]}},32514:e=>{e.exports={en:["Settings"],fr:["Configurations"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],fr:["La deuxième partie de fraction n'est pas valide."]}},75594:e=>{e.exports={en:["Security info"],fr:["Informations sur la sécurité"]}},21973:e=>{e.exports={en:["Send to back"],fr:["Mettre au Fond"]}},71179:e=>{e.exports={en:["Send backward"],fr:["Mettre vers l'Arrière"]}},26820:e=>{e.exports={en:["Seoul"],fr:["Séoul"]}},6816:e=>{e.exports={en:["Sep"],fr:["Sept"]}},94031:e=>{e.exports={en:["Session"],fr:["Séance"]}},83298:e=>{e.exports={en:["Session volume profile"],fr:["Profil de volume de la session"]}},66707:e=>{e.exports={en:["Session breaks"],fr:["Arrêts de Session"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],fr:["Position Short"]}},98334:e=>{e.exports={
|
||||
en:["Show"],fr:["Montrer"]}},85891:e=>{e.exports={en:["Show all drawings"],fr:["Montrer tous les dessins"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],fr:["Montrer tous les dessins et indicateurs"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],fr:["Masquer les positions et les ordresAfficher tous les dessins, indicateurs, positions & ordres"]}},98753:e=>{e.exports={en:["Show all indicators"],fr:["Montrer tous les indicateurs"]}},55418:e=>{e.exports={en:["Show all ideas"],fr:["Montrer toutes les idées"]}},20506:e=>{e.exports={en:["Show all positions & orders"],fr:["Afficher toutes les positions & ordres"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],fr:["Afficher le switch du contrat continu"]}},81465:e=>{e.exports={en:["Show contract expiration"],fr:["Afficher l'expiration des contrats"]}},29449:e=>{e.exports={en:["Show dividends"],fr:["Montrer les Dividendes"]}},37113:e=>{e.exports={en:["Show earnings"],fr:["Montrer les résultats"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],fr:["Afficher les idées des utilisateurs suivis"]}},62986:e=>{e.exports={en:["Show latest news"],fr:["Afficher les dernières nouvelles"]}},44020:e=>{e.exports={en:["Show my ideas only"],fr:["Afficher mes idées uniquement"]}},50849:e=>{e.exports={en:["Show splits"],fr:["Montrer les fractionnements d'actions"]}},67751:e=>{e.exports={en:["Signpost"],fr:["Panneau"]}},77377:e=>{e.exports={en:["Singapore"],fr:["Singapour"]}},39090:e=>{e.exports={en:["Sine Line"],fr:["Ligne sinusoïdale"]}},66205:e=>{e.exports={en:["Square"],fr:["Carré"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],fr:["Limite d’études dépassée: {number} études par mise en page.\nVeuillez retirer quelques études."]}},92516:e=>{e.exports={en:["Style"]}},61507:e=>{e.exports={en:["Stack on the left"],fr:["Empiler à gauche"]}},97800:e=>{e.exports={en:["Stack on the right"],fr:["Empiler à droite"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],fr:["Commencez à utiliser le mode de navigation au clavier. Appuyez sur le raccourci {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],fr:["Rester en Mode Dessin"]}},69217:e=>{e.exports={en:["Step line"],fr:["Ligne en escalier"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"],fr:["Sous-millenaire"]}},30585:e=>{e.exports={en:["Subminuette"],fr:["Sous-menuet"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"],fr:["Super millénaire"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],fr:["Passer à une {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],fr:["Erreur de symbole"]}},32390:e=>{e.exports={en:["Symbol name label"],fr:["Étiquette de nom du symbole"]}},10127:e=>{e.exports={en:["Symbol last price label"],fr:["Étiquette de la dernière valeur du symbole"]}},
|
||||
39079:e=>{e.exports={en:["Sync globally"],fr:["Synchronisation globale"]}},46607:e=>{e.exports={en:["Sync in layout"],fr:["Synchroniser tous les graphiques"]}},76519:e=>{e.exports={en:["Point & figure"],fr:["Point et Figure"]}},39949:e=>{e.exports={en:["Polyline"],fr:["Ensemble de Lignes"]}},371:e=>{e.exports={en:["Path"],fr:["Tracé"]}},59256:e=>{e.exports={en:["Parallel Channel"],fr:["Canal parallèle"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"],fr:["Coller"]}},6919:e=>{e.exports={en:["Percent"],fr:["Pourcent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"],fr:["Éventail"]}},19634:e=>{e.exports={en:["Pitchfork"],fr:["Fourchette"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"],fr:["Épingler à la nouvelle échelle de gauche"]}},28280:e=>{e.exports={en:["Pin to new right scale"],fr:["Épingler à la nouvelle échelle de droite"]}},14115:e=>{e.exports={en:["Pin to left scale"],fr:["Épingler à l'échelle de gauche"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],fr:["Épingler à l'échelle de gauche (masqué)"]}},81054:e=>{e.exports={en:["Pin to right scale"],fr:["épingler à l'échelle de droite"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],fr:["Épingler à l'échelle de droite (masqué)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],fr:["Epingler à l'échelle (maintenant à gauche)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],fr:["Épingler à l'échelle (maintenant pas d'échelle)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],fr:["Epingler à l'échelle (maintenant à droite)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],fr:["Épingler à l'échelle (maintenant {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],fr:["Épingler à l'échelle {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],fr:["Épingler à l'échelle {label} (masqué)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],fr:["Épinglé à l'échelle de gauche"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],fr:["Épinglé à l'échelle de gauche (masqué)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],fr:["Épinglé à l'échelle de droite"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],fr:["Épingler à l'échelle de droite (masqué)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],fr:["Épinglé à l'échelle {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],fr:["Épinglé à l'échelle {label} (masqué)"]}},71566:e=>{e.exports={en:["Plus button"],fr:["Bouton +"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],fr:["Veuillez nous donner une autorisation d'écriture dans le presse-papiers de votre navigateur ou appuyez sur {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],
|
||||
fr:["Appuyez et maintenez {key} enfoncé pendant le zoom pour maintenir la position du graphique"]}},91282:e=>{e.exports={en:["Price Label"],fr:["Étiquette de Prix"]}},97512:e=>{e.exports={en:["Price Note"],fr:["Note de prix"]}},68941:e=>{e.exports={en:["Price Range"],fr:["Intervalle de Prix"]}},66123:e=>{e.exports={en:["Price format is invalid."],fr:["Le format du prix n'est pas valide."]}},72926:e=>{e.exports={en:["Price line"],fr:["Ligne de Prix"]}},59189:e=>{e.exports={en:["Primary"],fr:["Primaire"]}},75747:e=>{e.exports={en:["Projection"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],fr:["A publié sur {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],fr:["Recherche rapide. Appuyez sur {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],fr:["Rectangle pivoté"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"],fr:["Rayon"]}},55169:e=>{e.exports={en:["Range"],fr:["Plage"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"],fr:["Recommencer"]}},2460:e=>{e.exports={en:["Regression Trend"],fr:["Tendance de la Régression"]}},67410:e=>{e.exports={en:["Remove"],fr:["Retirer"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],fr:["Supprimer cette métrique financière des favoris"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],fr:["Supprimer cet indicateur des favoris"]}},86285:e=>{e.exports={en:["Remove {drawings}"],fr:["Supprimer {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],fr:["Supprimer {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],fr:["Supprimer {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],fr:["Renommer la configuration du graphique"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],fr:["Réinitialiser l'affichage du graphique"]}},88853:e=>{e.exports={en:["Reset points"],fr:["Réinitialiser les points"]}},15332:e=>{e.exports={en:["Reset price scale"],fr:["Réinitialiser l'échelle de prix"]}},54170:e=>{e.exports={en:["Reset time scale"],fr:["Réinitialiser l'échelle de temps"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],fr:["Erreur d'exécution"]}},66719:e=>{e.exports={en:["Warning"],fr:["Avertissement"]}},5959:e=>{e.exports={en:["Warsaw"],fr:["Varsovie"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],fr:["Tableau"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],fr:["Téhéran"]}},93553:e=>{e.exports={en:["Template"],fr:["Espace de Travail"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],
|
||||
fr:["Le fournisseur de données ne fournit pas de données de volume pour ce symbole."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],fr:["L'aperçu de la publication n'a pas pu être chargé. Veuillez désactiver les extensions de votre navigateur et réessayer."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],fr:["Le traitement de la demande a pris trop de temps. Assurez-vous que vous disposez d'une connexion internet stable. Si le problème persiste, essayez de réduire la durée de l'intervalle de temps demandé."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],fr:["Il n'y a pas de données pour la période et la plage temporelle du graphique que vous avez sélectionnées."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],fr:["Ce fichier est trop gros. La taille maximale est de {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],fr:["Cet indicateur ne peut pas être appliqué à un autre indicateur."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],fr:["Ce script contient une erreur. Veuillez contacter son auteur."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],fr:["Ce script est sur invitation seulement. Pour y avoir accès, veuillez contacter son auteur."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],fr:["Symbole disponible uniquement sur {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],fr:['Motif "Three Drives"']}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],fr:["Les intervalles basés sur les ticks ne sont pas disponibles pour {ticker}."]}},12806:e=>{e.exports={en:["Time"],fr:["Heure"]}},20909:e=>{e.exports={en:["Time zone"],fr:["Fuseau Horaire"]}},46852:e=>{e.exports={en:["Time Cycles"],fr:["Cycles de temps"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],fr:["Temps d'Opportunité de prix"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],fr:["Tradingview est interactif et dispose de commandes à utiliser avec un lecteur d'écran. Voici une liste des commandes clavier disponibles pour interagir sur la plateforme"]}},35757:e=>{e.exports={en:["Trend Angle"],fr:["Angle de la Tendance"]}},97339:e=>{e.exports={en:["Trend Line"],fr:["Droite de Tendance"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],fr:["Prolongation de Fibonacci selon la Tendance"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],fr:["Temps de Fibonacci selon la Tendance"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{
|
||||
e.exports={en:["Triangle Down"],fr:["Triangle vers le bas"]}},90148:e=>{e.exports={en:["Triangle Pattern"],fr:["Figure en Triangle"]}},21236:e=>{e.exports={en:["Triangle Up"],fr:["Triangle vers le haut"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],fr:["Annuler"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],fr:["Erreur inattendue en mode Deep Backtesting. Contactez le support pour plus d'informations."]}},15432:e=>{e.exports={en:["Units"],fr:["Unités"]}},11768:e=>{e.exports={en:["Unknown error"],fr:["Erreur inconnue"]}},99894:e=>{e.exports={en:["Unlock"],fr:["Déverrouiller"]}},75546:e=>{e.exports={en:["Unsupported interval"],fr:["Intervalle non pris en charge"]}},8580:e=>{e.exports={en:["User-defined error"],fr:["Erreur définie par l'utilisateur"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],fr:["Profil de volume Gamme fixe"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],fr:["L'indicateur Volume Profile n'est disponible que sur nos plans upgradés."]}},93722:e=>{e.exports={en:["Volume candles"],fr:["Bougies de volume"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],fr:["Les données de volume ne sont pas fournies dans le plan de données BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],fr:["Empreinte du volume"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],fr:["Droite Verticale"]}},23160:e=>{e.exports={en:["Vienna"],fr:["Vienne"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],fr:["Visibilité"]}},54853:e=>{e.exports={en:["Visibility on intervals"],fr:["Visibilité des intervalles"]}},58302:e=>{e.exports={en:["Visible on tap"],fr:["Visible si besoin"]}},10309:e=>{e.exports={en:["Visible on mouse over"],fr:["Visible avec déplacement de la souris"]}},4077:e=>{e.exports={en:["Visual order"],fr:["Ordre de visualisation"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],fr:["Figure en XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],fr:["Vous ne pouvez pas voir cette période de pivot avec cette résolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],fr:["Vous avez verrouillé des dessins sur ce symbole. Voulez-vous également supprimer les dessins verrouillés?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"],fr:["Oui, supprimez-les"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"],fr:["changer le degré d'Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],fr:["modifier les étiquettes qui ne se chevauchent pas"]}},76852:e=>{e.exports={en:["change average close price label visibility"],fr:["changer la visibilité de l'étiquette du prix moyen de clôture"]}},1022:e=>{e.exports={
|
||||
en:["change average close price line visibility"],fr:["changer la visibilité de la ligne du prix moyen de clôture"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],fr:["changer la visibilité des étiquettes d'offre et de demande"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],fr:["changer la visibilité des lignes d'offre et de demande"]}},32302:e=>{e.exports={en:["change currency"],fr:["changer la devise"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],fr:["changer la mise en page du graphique en {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],fr:["changer la visibilité du switch du contrat continu"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],fr:["changer la visibilité du compte à rebours pour la fermeture de la barre"]}},16979:e=>{e.exports={en:["change date range"],fr:["changer la plage de dates"]}},53929:e=>{e.exports={en:["change dividends visibility"],fr:["changement de la visibilité des dividendes"]}},6119:e=>{e.exports={en:["change events visibility on chart"],fr:["changer la visibilité des événements sur le graphique"]}},6819:e=>{e.exports={en:["change earnings visibility"],fr:["changer la visibilité des gains"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],fr:["modifier la visibilité de l'expiration des contrats à terme"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],fr:["modifier la visibilité des étiquettes de prix haut et bas"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],fr:["modifier la visibilité des lignes de prix haut et bas"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],fr:["visibilité des étiquettes de noms des indicateurs de changement"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],fr:["modifier la visibilité des étiquettes de valeur des indicateurs"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],fr:["changer la visibilité des dernières mises à jour"]}},88849:e=>{e.exports={en:["change linking group"],fr:["changer le groupe de liaison"]}},14691:e=>{e.exports={en:["change pane height"],fr:["changer la hauteur du volet"]}},96379:e=>{e.exports={en:["change plus button visibility"],fr:["changer la visibilité du bouton plus"]}},76660:e=>{e.exports={en:["change point"],fr:["modifier le point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],fr:["changer la visibilité des étiquettes de prix pré/post marché"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],fr:["changer la visibilité des lignes de prix pré/post marché"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],fr:["changer la visibilité de la ligne de prix de clôture précédente"]}},8662:e=>{e.exports={en:["change price line visibility"],fr:["Changer la ligne de prix"]}},2509:e=>{e.exports={en:["change price to bar ratio"],fr:["modifier le rapport prix/barre"]}},32829:e=>{e.exports={
|
||||
en:["change resolution"],fr:["Changer la Résolution"]}},35400:e=>{e.exports={en:["change symbol"],fr:["changer le symbole"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],fr:["modifier la visibilité des étiquettes des symboles"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],fr:["changer la visibilité de la dernière valeur du symbole"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],fr:["changer la visibilité de la précédente valeur de clôture du symbole"]}},87041:e=>{e.exports={en:["change session"],fr:["changer de session"]}},38413:e=>{e.exports={en:["change session breaks visibility"],fr:["modifier la visibilité des interruptions de session"]}},49965:e=>{e.exports={en:["change series style"],fr:["changer de style de série"]}},47474:e=>{e.exports={en:["change splits visibility"],fr:["changement de la visibilité des splits"]}},20137:e=>{e.exports={en:["change timezone"],fr:["changer de fuseau horaire"]}},85975:e=>{e.exports={en:["change unit"],fr:["changer l'unité"]}},1924:e=>{e.exports={en:["change visibility"],fr:["Changer la visibilité"]}},84331:e=>{e.exports={en:["change visibility at current interval"],fr:["changer la visibilité à l'intervalle actuel"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],fr:["changer la visibilité à l'intervalle actuel et au-dessus"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],fr:["changer la visibilité à l'intervalle actuel et en-dessous"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],fr:["changer la visibilité à tous les intervalles"]}},94566:e=>{e.exports={en:["charts by TradingView"],fr:["graphiques par TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],fr:["Clôner les outils de ligne"]}},46219:e=>{e.exports={en:["create line tools group"],fr:["créer un groupe d'outils de ligne"]}},95394:e=>{e.exports={en:["create line tools group from selection"],fr:["Créer un groupe d’outils de ligne à partir de la sélection"]}},12898:e=>{e.exports={en:["create {tool}"],fr:["créer {tool}"]}},94227:e=>{e.exports={en:["cut sources"],fr:["couper sources"]}},11500:e=>{e.exports={en:["cut {title}"],fr:["couper {title}"]}},63869:e=>{e.exports={en:["anchor objects"],fr:["ancrer les objets"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],fr:["Ajouter l'outil de ligne {lineTool} au groupe {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],fr:["ajouter outil(s) de ligne au groupe {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],fr:["Ajouter cette métrique financière à l'ensemble de la mise en page"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],fr:["Ajouter cet indicateur à l'ensemble de la mise en page"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],fr:["ajouter cette stratégie à l'ensemble de la mise en page"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],fr:["ajouter ce symbole à l'ensemble de la mise en page"]}},
|
||||
4128:e=>{e.exports={en:["align to 45 degrees"],fr:["aligner à 45 degrés"]}},68231:e=>{e.exports={en:["apply chart theme"],fr:["appliquer le thème des graphiques"]}},99551:e=>{e.exports={en:["apply all chart properties"],fr:["appliquer toutes les propriétés du graphique"]}},89720:e=>{e.exports={en:["apply drawing template"],fr:["Appliquer un modèle de dessin"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],fr:["appliquer les valeurs d'usine par défaut aux sources sélectionnées"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],fr:["appliquer des indicateurs à l'ensemble de la mise en page"]}},69604:e=>{e.exports={en:["apply study template {template}"],fr:["Appliquer le modèle d'étude {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],fr:["appliquer le thème des barres d'outils"]}},1979:e=>{e.exports={en:["bring group {title} forward"],fr:["mettre le groupe {title} à l'avant"]}},53159:e=>{e.exports={en:["bring {title} to front"],fr:["mettre {title} en avant"]}},41966:e=>{e.exports={en:["bring {title} forward"],fr:["Mettre en avant {title}"]}},44676:e=>{e.exports={en:["by TradingView"],fr:["par TradingView"]}},58850:e=>{e.exports={en:["date range lock"],fr:["verrouillage de la plage de dates"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],fr:["Exclure les outils de ligne du groupe {group}"]}},13017:e=>{e.exports={en:["hide {title}"],fr:["Masquer {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],fr:["Cacher les marques de la barre"]}},56558:e=>{e.exports={en:["interval lock"],fr:["verrouillage de l'intervalle"]}},6830:e=>{e.exports={en:["invert scale"],fr:["Inverser l'échelle"]}},48818:e=>{e.exports={en:["insert {title}"],fr:["insérer {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],fr:["insérer {title} après {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],fr:["insérer {title} après {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],fr:["Insérer {title} avant {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],fr:["Insérer {title} avant {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],fr:["charger le modèle de dessin par défaut"]}},62011:e=>{e.exports={en:["loading..."],fr:["chargement..."]}},76104:e=>{e.exports={en:["lock {title}"],fr:["Verrouiller {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],fr:["verrouiller le groupe {group}"]}},18942:e=>{e.exports={en:["lock objects"],fr:["verrouiller les objets"]}},98277:e=>{e.exports={en:["move"],fr:["déplacer"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],fr:["Déplacer {title} vers la nouvelle échelle de gauche"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],fr:["déplacer {title} vers la nouvelle échelle de droite"]}},64077:e=>{e.exports={en:["move all scales to left"],fr:["Déplacer toutes les échelles vers la gauche"]}},19013:e=>{e.exports={en:["move all scales to right"],fr:["Déplacer toutes les échelles vers la droite"]}},
|
||||
52510:e=>{e.exports={en:["move drawing(s)"],fr:["Déplacer le(s) dessin(s)"]}},79209:e=>{e.exports={en:["move left"],fr:["déplacer à gauche"]}},60114:e=>{e.exports={en:["move right"],fr:["déplacer à droite"]}},44854:e=>{e.exports={en:["move scale"],fr:["Déplacer l'échelle"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],fr:["rendre {title} sans échelle (Plein écran)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],fr:["Rendre le groupe {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"],fr:["rendre le groupe {group} visible"]}},78055:e=>{e.exports={en:["merge down"],fr:["fusionner vers le bas"]}},41866:e=>{e.exports={en:["merge to pane"],fr:["fusionner vers le volet"]}},52458:e=>{e.exports={en:["merge up"],fr:["fusionner vers le haut"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"],fr:["prix des échelles"]}},63796:e=>{e.exports={en:["scale price chart only"],fr:["Mise à l’échelle des prix du graphique uniquement"]}},70771:e=>{e.exports={en:["scale time"],fr:["temps de l'échelle"]}},42070:e=>{e.exports={en:["scroll"],fr:["faire défiler"]}},87840:e=>{e.exports={en:["scroll time"],fr:["défilement temporel"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],fr:["fixer la stratégie de sélection du barème de prix sur {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],fr:["envoyer {title} en arrière"]}},5005:e=>{e.exports={en:["send {title} to back"],fr:["mettre {title} à l'arrière"]}},69546:e=>{e.exports={en:["send group {title} backward"],fr:["mettre le groupe {title} à l'arrière"]}},63934:e=>{e.exports={en:["share line tools globally"],fr:["partager les outils de ligne dans leur ensemble"]}},90221:e=>{e.exports={en:["share line tools in layout"],fr:["partager les outils de ligne dans la mise en page"]}},13336:e=>{e.exports={en:["show all ideas"],fr:["afficher toutes les idées"]}},91395:e=>{e.exports={en:["show ideas of followed users"],fr:["afficher les idées des utilisateurs suivis"]}},57460:e=>{e.exports={en:["show my ideas only"],fr:["afficher mes idées uniquement"]}},4114:e=>{e.exports={en:["stay in drawing mode"],fr:["rester en mode dessin"]}},3350:e=>{e.exports={en:["stop syncing drawing"],fr:["arrêter la synchronisation des dessins"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],fr:["arrêter la synchronisation des outils de ligne"]}},53278:e=>{e.exports={en:["symbol lock"],fr:["verrouillage du symbole"]}},91677:e=>{e.exports={en:["sync time"],fr:["synchroniser l'heure"]}},3140:e=>{e.exports={en:["powered by"],fr:["propulsé par"]}},92800:e=>{e.exports={en:["powered by TradingView"],fr:["fourni par TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],fr:["coller le dessin"]}},1064:e=>{e.exports={en:["paste indicator"],fr:["coller l'indicateur"]}},57010:e=>{e.exports={en:["paste {title}"],fr:["coller {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],fr:["épingler à l'échelle de gauche"]}},7495:e=>{e.exports={en:["pin to right scale"],fr:["Épingler à l'échelle de droite"]}},
|
||||
81566:e=>{e.exports={en:["pin to scale {label}"],fr:["épingler à l'échelle {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],fr:["réarranger les volets"]}},60806:e=>{e.exports={en:["remove all indicators"],fr:["supprimer tous les indicateurs"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],fr:["supprimer tous les indicateurs et outils de dessin"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],fr:["supprimer les outils de ligne vide désélectionnés"]}},30538:e=>{e.exports={en:["remove drawings"],fr:["Supprimer les dessins"]}},1193:e=>{e.exports={en:["remove drawings group"],fr:["supprimer le groupe de dessins"]}},38199:e=>{e.exports={en:["remove line data sources"],fr:["supprimer les sources de données de la ligne"]}},93333:e=>{e.exports={en:["remove pane"],fr:["supprimer le volet"]}},94543:e=>{e.exports={en:["remove {title}"],fr:["supprimer {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],fr:["suppression du groupe d'outils de ligne {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],fr:["Renommez le groupe {group} en {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],fr:["réinitialiser les tailles de mise en page"]}},3323:e=>{e.exports={en:["reset scales"],fr:["réinitialiser les échelles"]}},17336:e=>{e.exports={en:["reset time scale"],fr:["Réinitialiser l'échelle de temps"]}},47418:e=>{e.exports={en:["resize layout"],fr:["redimensionner la mise en page"]}},85815:e=>{e.exports={en:["restore defaults"],fr:["restaurer les valeurs par défaut"]}},96881:e=>{e.exports={en:["restore study defaults"],fr:["rétablir les valeurs par défaut de l'étude"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],fr:["activer l'état du volet maximisé"]}},42240:e=>{e.exports={en:["toggle auto scale"],fr:["basculer vers l'échelle automatique"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],fr:["activer l'état de volet réduit"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],fr:["activer l'échelle indexée sur 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],fr:["activer le verrouillage de l'échelle"]}},49403:e=>{e.exports={en:["toggle log scale"],fr:["basculer vers l'échelle logarithmique"]}},98994:e=>{e.exports={en:["toggle percentage scale"],fr:["Commuter l'échelle de pourcentage"]}},80688:e=>{e.exports={en:["toggle regular scale"],fr:["activer l'échelle standard"]}},46807:e=>{e.exports={en:["track time"],fr:["suivre le temps"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],fr:["désactiver le partage des outils de ligne"]}},99234:e=>{e.exports={en:["unanchor objects"],fr:["désancrer les objets"]}},23230:e=>{e.exports={en:["unlock objects"],fr:["déverrouiller les objets"]}},74590:e=>{e.exports={en:["unlock group {group}"],fr:["déverrouiller le groupe {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],fr:["déverrouiller {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],fr:["défusionner vers le nouveau volet inférieur"]}},79443:e=>{e.exports={en:["unmerge up"],
|
||||
fr:["défusionner vers le haut"]}},46453:e=>{e.exports={en:["unmerge down"],fr:["défusionner vers le bas"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],fr:["Oh non! Le type de graphique {chartStyle} n'est pas disponible pour les intervalles basés sur les ticks."]}},41643:e=>{e.exports={en:["{count} bars"],fr:["{count} barres"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],fr:["{symbol} données financières par TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],fr:["{userName} a publié sur {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"],fr:["zoomer"]}},49856:e=>{e.exports={en:["zoom in"],fr:["zoomer"]}},73638:e=>{e.exports={en:["zoom out"],fr:["dézoomer"]}},41807:e=>{e.exports={en:["day","days"],fr:["jour","jours"]}},42328:e=>{e.exports={en:["hour","hours"],fr:["heure","heures"]}},98393:e=>{e.exports={en:["month","months"],fr:["mois","mois"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"],fr:["seconde","secondes"]}},89937:e=>{e.exports={en:["range","ranges"],fr:["plage","plages"]}},48898:e=>{e.exports={en:["week","weeks"],fr:["semaine","semaines"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],fr:["{amount} dessin","{amount} dessins"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],fr:["{amount} indicateur","{amount} indicateurs"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],fr:["ETF Schwab Trésor Américain court terme"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"],fr:["Actions 0-5 ans Obligations d'entreprise à rendement élevé ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],fr:["Indice S&P/ASX All Australian 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],fr:["Indice S&P/ASX All Australian 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],fr:["Indice S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],fr:["Dollar australien/Dollar canadien"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],fr:["Dollar australien/Franc suisse"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],fr:["Dollar australien/Yen japonais"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],fr:["Dollar Australien/Dollar Néo-zélandais"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],fr:["Dollar Australien/Rouble russe"]},e.exports["#AUDUSD-symbol-description"]={
|
||||
en:["Australian Dollar / U.S. Dollar"],fr:["Dollar Australien/Dollar Américain"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],fr:["Indice S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],fr:["Bitcoin Cash / Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],fr:["Indice BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],fr:["Indice BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],fr:["Indice Bitcoin / U.S. Dollar"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],fr:["Indice IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],fr:["Indice Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],fr:["Indice IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],fr:["Indice Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],fr:["Indice S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],fr:["Réal brésilien / Yen japonais"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],fr:["Indice S&P BSE SENSEX"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],fr:["Bitcoin / Réal Brésilien"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],fr:["Bitcoin / Dollar Canadien"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],fr:["Bitcoin / Yuan Chinois"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],fr:["Bitcoin / Livre Sterling"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],fr:["Bitcoin / Yen japonais"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],fr:["Bitcoin / Won sud-coréen"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],fr:["Bitcoin / Zloty polonais"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],fr:["Bitcoin / Rouble russe"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],fr:["Bitcoin / Baht Thai"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],fr:["Bitcoin / Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],fr:["Indice Général Pérou S&P / BVL (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],fr:["Indice Bovespa Brésil"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],fr:["Dollar canadien / Yen japonais"]},
|
||||
e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],fr:["Dollar Canadien / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],fr:["Indice S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],fr:["Indice de volatilité S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],fr:["Contrats à terme T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],fr:["Contrats à terme Maïs"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],fr:["Contrats à terme Farine de soja"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],fr:["Contrats à terme T-Note 10 ans"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],fr:["Contrats à terme Avoine"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],fr:["Contrats à terme à 30 jours Taux d'intérêt des fonds fédéraux"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],fr:["Contrats à terme Riz"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],fr:["Contrats à terme Soja"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],fr:["Contrats à terme sur blé"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],fr:["Contrats à terme Soja mini"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],fr:["Contrats à terme Blé mini"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],fr:["Contrats à terme E-MINI DOW JONES ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],fr:["Franc suisse / Yen japonais"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],fr:["Franc Suisse / U. S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],fr:["Contrats à terme sur Bitcoin CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],fr:["Butter Futures-Cash (Continu : contrat actuel en premier)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],fr:["Contrats à terme Bovins d'engraissement"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],fr:["Contrats à terme porc maigre"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],fr:["Contrats à terme bétail sur pied"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],fr:["Contrats à terme E-mini Euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],fr:["Contrats à terme E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],fr:["Contrats à terme E-mini Yen Japonais"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],fr:["Contrats à terme NASDAQ 100 E-MINI"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},
|
||||
e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],fr:["Contrats à terme Aluminium Européen Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],fr:["Contrats à terme Aluminum MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],fr:["Contrats à terme sur Or"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],fr:["Contrats à terme sur cuivre"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],fr:["Contrats à terme sur Argent"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],fr:["Contrats à terme E-mini Cuivre"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],fr:["(Mini) Contrats à terme Argent"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],fr:["Contrats à terme Or (mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],fr:["CFD sur Cuivre"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],fr:["Contrats à terme sur maïs"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],fr:["Contrats à terme sur Coton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],fr:["Capitalisation boursière totale Crypto, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],fr:["Indice DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],fr:["Indice Dow Jones Composite Moyen"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],fr:["Indice Dow Jones Commodity Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],fr:["Indice Dow Jones Commodity Cacao"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],fr:["Indice Dow Jones Commodity Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],fr:["Indice Dow Jones Commodity Or"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],fr:["Indice Dow Jones Commodity Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],fr:["Indice Dow Jones Commodity Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],fr:["Indice du Dow Jones Commodity Café"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],fr:["Indice Dow Jones Commodity Sucre"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],fr:["Indice Dow Jones Commodity Argent"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["Indice Dow Jones Industriel Moyen"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],fr:["Indice Dow Jones Transportation Average"]},e.exports["#DJ:DJU-symbol-description"]={
|
||||
en:["Dow Jones Utility Average Index"],fr:["Indice moyen Dow Jones Services publics"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],fr:["Indice Dow Jones Charbon US"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],fr:["Indice EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],fr:["Ethereum Classic / Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],fr:["Ethereum / Livre britannique"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],fr:["Ethereum / Yen japonais"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],fr:["Ethereum / Won sud-coréen"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],fr:["Ethereum / Baht Thai"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],fr:["Ethereum / Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],fr:["Euro / Dollar Australien"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],fr:["Euro / Réal brésilien"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],fr:["Euro / Dollar Canadien"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],fr:["Euro / Franc Suisse"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],fr:["Euro / Livre Sterling"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],fr:["Euro / Yen Japonais"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],fr:["Euro / Couronne Norvégienne"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],fr:["Euro / Dollar Néo-Zélandais"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],fr:["Indice AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],fr:["Indice BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],fr:["Indice CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],fr:["Euro / Rouble russe"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],fr:["Euro / Rouble russe TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],fr:["EUR/SEK"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],fr:["Euro / Livre Turque"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],fr:["Euro / Dollar Américain"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],fr:["Indice Euro Stoxx 5"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],
|
||||
fr:["Indice CAC40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],fr:["Produit intérieur brut, 1 décimale"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],fr:["Population Totale : Tous âges, incluant les forces armées outremer"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],fr:["Taux de chômage civil"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],fr:["Indice FTSE Bourse de Malaisie KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."],fr:["Key Tronic Corp."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],fr:["Indice S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["Indice moyen Dow Jones Industriel"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],fr:["Livre sterling / Dollar australien"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],fr:["Livre sterling / Dollar canadien"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],fr:["Livre sterling / Franc suisse"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],fr:["Livre Sterling / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],fr:["Livre sterling / Yen japonais"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],fr:["Livre sterling / Dollar Néo-Zélandais"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],fr:["Livre britannique / Zloty polonais"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],fr:["Livre sterling / Rouble russe"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],fr:["Livre sterling / Dollar américain"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],fr:["Indice DAX des actions allemandes cotées"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],fr:["Alphabet Inc (Google) Classe A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],fr:["Indice WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],fr:["Indice Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],fr:["Indice Composite IDX"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],fr:["Indice Hang Seng des entreprises chinoises"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],fr:["Indice Composite Djakarta"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],fr:["Indice KLCI Bourse de Malaisie"]},e.exports["#INDEX:MIB-symbol-description"]={
|
||||
en:["MIB Index"],fr:["Indice MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],fr:["Indice Euro STOXX 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],fr:["Indice STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],fr:["Indice pondéré Taiwan"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],fr:["Indice Composite Shanghai"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],fr:["Indice Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],fr:["YEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],fr:["Yen / Rouble russe"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],fr:["Yen Japonais / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],fr:["Litecoin / Real Brésilien"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],fr:["Litecoin / Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],fr:["Contrats à terme sur Pétrole Brent"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],fr:["Indice MOEX Russie"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],fr:["Indice MOEX Russie"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],fr:["Contrats à terme sur indice MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],fr:["Contrats à terme sur indice MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],fr:["Contrats à terme sur indice RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],fr:["Indice RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],fr:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],fr:["Indice PHLX Secteur du logement"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],fr:["IShares obligations de trésor 7-10 ans ETF"]},
|
||||
e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],fr:["IShares obligations de trésor 3-7 ans ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],fr:["Indice Composite Nasdaq"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],fr:["Indice Nasdaq 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],fr:["Indice Secteur des Services PHLX Oil"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],fr:["Obligations du Trésor Américain 1-3 ans ISHARES ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],fr:["Indice Philadelphia Semiconductor"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],fr:["Obligations du Trésor Américain 20+ ISHARES ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],fr:["Indice PHLX secteur des services publics"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],fr:["Indice PHLX Secteur Or et Argent"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],fr:["Gaz naturel (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],fr:["Indice Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],fr:["Indice NIFTY 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],fr:["Contrats à terme sur Ethanol NY"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],fr:["Contrats à terme cacao"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],fr:["Contrats à terme sur pétrole brut léger"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],fr:["Contrats à terme NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],fr:["Contrats à terme sur café"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],fr:["Contrats à terme sur Gaz Naturel"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],fr:["Contrats à terme Palladium"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],fr:["Contrats à terme sur Platine"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],fr:["Contrats à terme sur essence RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],fr:["Contrats à terme sur coton"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],fr:["Contrats à terme E-mini Gaz naturel"]},
|
||||
e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],fr:["Contrats à terme E-mini Pétrole brut léger"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],fr:["Contrats à terme E-mini Gasoline"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],fr:["Indice Composite NYSE"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],fr:["Indice Composite AMEX"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],fr:["Indice principal de marché NYSE ARCA"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],fr:["Dollar Néo-Zélandais / Yen Japonais"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],fr:["Dollar Néo-Zélandais / Dollar Américain"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],fr:["Indice S&P/NZX ALL ( Indice de capital )"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],fr:["Indice brut S&P / NZX"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],fr:["CFD sur Gaz naturel"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],fr:["Indice S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],fr:["CFD sur Cuivre (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],fr:["Indice OMX Copenhague 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],fr:["Indice OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],fr:["Indice brut OMX Riga"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],fr:["Indice OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],fr:["Indice brut OMX Tallinn"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],fr:["Indice brut OMX Vilnius"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"],fr:["ISHARES MSCI JAPAN SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],fr:["Indice QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],fr:["Indice Russe RTS"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],fr:["Indice Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],fr:["Indice Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],fr:["Indice Russell 2000"]},e.exports["#SET:GC-symbol-description"]={
|
||||
en:["Global Connections Public Company"],fr:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],fr:["Indice du marché Suisse"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],fr:["CFD sur Germes de soja"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],fr:["Indice S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],fr:["Indice Commodity S&P Goldman Sachs"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],fr:["Indice S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],fr:["Indice de valeur S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],fr:["Indice S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],fr:["CFD sur Sucre"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],fr:["Indice Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],fr:["Indice toutes actions Tadawul"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],fr:["Indice TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],fr:["Indice Composite S&P/TSX"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],fr:["Indice S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],fr:["Australie Obligations du gouvernement 10 ans"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],fr:["Australie Obligations du gouvernement 10 ans"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],fr:["Indice de devise DOLLAR australien"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],fr:["Indice de devise LIVRE britannique"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement canadien à 10 ans"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],fr:["Indice CAC40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],fr:["Chine Obligations du gouvernement 10 ans"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],fr:["Chine Obligations du gouvernement 10 ans"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],fr:["Indice de devise DOLLAR canadien"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],fr:["Allemagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],
|
||||
fr:["Allemagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],fr:["Indice DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["L'indice industriel moyen DOW JONES"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],fr:["Indice devise Dollar U.S."]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],fr:["Espagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],fr:["Espagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],fr:["Indice de devise EURO"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],fr:["France Obligations du gouvernement 10 ans"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],fr:["France Obligations du gouvernement 10 ans"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],fr:["Obligations du gouvernement Britannique 2 ans"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],fr:["Obligations du gouvernement Britannique 10 ans"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],fr:["Obligations du gouvernement Britannique 10 ans"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],fr:["CFD sur Or (US$/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],fr:["Indice Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],fr:["Indice IBEX35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],fr:["Indonésie Obligations du gouvernement 3 ans"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],fr:["Indonésie Obligations du gouvernement 10 ans"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement indonésien à 10 ans"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],fr:["Inde Obligations du gouvernement 10 ans"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],fr:["Inde Obligations gouvernementales 10 ans"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],fr:["Italie Obligations du gouvernement 10 ans"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],fr:["Italie Obligations gouvernementales 10 ans"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],fr:["Indice Composite US"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],fr:["Japon Obligations du gouvernement 10 ans"]},e.exports["#TVC:JP10Y-symbol-description"]={
|
||||
en:["Japan Government Bonds 10 YR Yield"],fr:["Japon Obligations gouvernementales 10 ans"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],fr:["Indice de devise YEN japonais"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],fr:["Indice de prix Actions coréennes composites"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],fr:["Corée Obligations du gouvernement 10 ans"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],fr:["Corée Obligations du gouvernement 10 ans"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],fr:["Obligations du Gouvernement Malaisien 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],fr:["Obligations du Gouvernement Malaisien 10 YR"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],fr:["Nasdaq 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],fr:["Indice Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],fr:["Obligations du gouvernement néerlandais à 10 ans"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement néerlandais à 10 ans"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],fr:["Indice Composite NYSE"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],fr:["Obligations du gouvernement néo-zélandais à 10 ans"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement néo-zélandais à 10 ans"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],fr:["CFD sur PALLADIUM (US$/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],fr:["Rendement Obligations Gouvernement Polonais 5Y"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],fr:["Rendement Obligations Gouvernement Polonais 10Y"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],fr:["CFD sur Platine (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],fr:["Portugal, Obligations du gouvernement 10 ans"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],fr:["Portugal, Obligations du gouvernement 10 ans"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],fr:["Indice Top 40 Afrique du Sud"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],fr:["CFD sur Argent (US$/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],fr:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],fr:["Indice Straits Times"]},
|
||||
e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],fr:["Indice Euro Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],fr:["Indice de devise Franc suisse"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],fr:["Turquie Obligations du gouvernement 10 ans"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],fr:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],fr:["CFD sur Pétrole brut Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],fr:["USA Obligations du gouvernement 2 ans"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],fr:["Obligations gouvernement américain 2 ans"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],fr:["USA Obligations du gouvernement 5 ans"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],fr:["Obligations gouvernement américain 5 ans"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],fr:["USA Obligations du gouvernement 10 ans"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],fr:["Obligations gouvernement américain 10 ans"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],fr:["Obligations du gouvernement américain 30 ans"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],fr:["CFD sur Pétrole brut WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],fr:["Indice de volatilité S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],fr:["Indice de devise Dollar Néo-Zélandais"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],fr:["Indice pondéré Taiwan"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],fr:["Indice boursier pondéré de la capitalisation taïwanaise"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],fr:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],fr:["Indice FTSE 100 des compagnies britanniques cotées"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],fr:["CFDs sur Pétrole brut (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["Indice Dow Jones Industriel Moyen"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],fr:["U.S. Dollar / Dollar Australien"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],fr:["Dollar US / Réal Brésilien"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],fr:["Dollar Américain / Dollar Canadien"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],
|
||||
fr:["Dollar américain / Franc suisse"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],fr:["Dollar Américain / Renminbi Yuan"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],fr:["Dollar Américain / Couronne danoise"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],fr:["U.S. Dollar / Livre Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],fr:["Dollar Américain / Dollar de Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],fr:["Dollar US / Forint Hongrois"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],fr:["Dollar Américain / Roupie"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],fr:["U.S. Dollar / Shekel Israélien"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],fr:["Dollar américain / Roupie indienne"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],fr:["Dollar Américain / Yen japonais"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],fr:["Dollar Américain / Won"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],fr:["USD/MXN"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],fr:["U.S. Dollar / Dollar néo-zélandais"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],fr:["Dollar U.S. / Peso philippin"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],fr:["Dollar Américain / Zloty Polonais"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],fr:["Dollar Américain / Rouble Russe"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],fr:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],fr:["Dollar américain / Couronne suédoise"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],fr:["DOLLAR AMÉRICAIN / DOLLAR DE SINGAPOUR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],fr:["Dollar US / Baht Thaïlandais"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],fr:["Dollar Américain / Nouvelle Livre Turque"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],fr:["Dollar américain / Rand sud-africain"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],fr:["CFDs sur Pétrole brut (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],fr:["CFD sur Blé"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],fr:["Argent / Dollar Américain"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],fr:["Or / Dollar Américain"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],fr:["Bitcoin / Dollar Canadien"]},
|
||||
e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],fr:["Indice DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],fr:["CFD sur Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],fr:["Platine / Dollar Américain"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
fr:["Ligne étendue"]}},86905:e=>{e.exports={en:["Exchange"],fr:["Marché"]}},19271:e=>{e.exports={en:["Existing pane above"],fr:["Volet existant au-dessus"]}},46545:e=>{e.exports={en:["Existing pane below"],fr:["Volet existant au-dessous"]}},20138:e=>{e.exports={en:["Forecast"],fr:["Prévision"]}},2507:e=>{e.exports={en:["Feb"],fr:["Févr"]}},59005:e=>{e.exports={en:["Fib Channel"],fr:["Canal de Fibonacci"]}},82330:e=>{e.exports={en:["Fib Circles"],fr:["Cercles de Fibonacci"]}},55986:e=>{e.exports={en:["Fib Retracement"],fr:["Retracement de Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],fr:["Arcs de Résistance de la vitesse de Fibonacci"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],fr:["Éventail de Résistance de la Vitesse de Fibonacci"]}},39014:e=>{e.exports={en:["Fib Spiral"],fr:["Spirale de Fibonacci"]}},30622:e=>{e.exports={en:["Fib Time Zone"],fr:["Zone Temporelle de Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],fr:["Coin de Fibonacci"]}},33885:e=>{e.exports={en:["Flag"],fr:["Drapeau"]}},14600:e=>{e.exports={en:["Flag Mark"],fr:["Marque de Drapeau"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],fr:["Haut/Bas Plat"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],fr:["La partie fractionnelle n'est pas valide."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],fr:["Les études fondamentales ne sont plus disponibles sur les graphiques"]}},31561:e=>{e.exports={en:["Kolkata"],fr:["Calcuta"]}},54533:e=>{e.exports={en:["Kathmandu"],fr:["Katmandou"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"],fr:["Koweit"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],fr:["Zone HLC"]}},886:e=>{e.exports={en:["HLC bars"],fr:["Barres HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],fr:["Bougies Creuses"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],fr:["Ligne Horizontale"]}},25487:e=>{e.exports={en:["Horizontal Ray"],fr:["Rayon Horizontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],fr:["Tête et épaules"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],fr:["Cacher"]}},47074:e=>{e.exports={en:["Hide all"],fr:["Tout masquer"]}},52563:e=>{e.exports={en:["Hide all drawings"],fr:["Masquer tous les outils de dessin"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],fr:["Masquer tous les dessins et indicateurs"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],fr:["Masquer tous les dessins, indicateurs, positions & ordres"]}},78525:e=>{e.exports={en:["Hide all indicators"],fr:["Masquer tous les indicateurs"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],fr:["Masquer toutes les positions & ordres"]}},3217:e=>{e.exports={en:["Hide drawings"],fr:["Masquer les dessins"]}},97878:e=>{e.exports={en:["Hide events on chart"],
|
||||
fr:["Cacher les événements sur le graphique"]}},72351:e=>{e.exports={en:["Hide indicators"],fr:["Masquer les indicateurs"]}},28345:e=>{e.exports={en:["Hide marks on bars"],fr:["Cacher les marques de la barre"]}},92226:e=>{e.exports={en:["Hide positions & orders"],fr:["Masquer les positions et les ordres"]}},78254:e=>{e.exports={en:["High"],fr:["Haut"]}},98236:e=>{e.exports={en:["High-low"],fr:["Haut-Bas"]}},99479:e=>{e.exports={en:["High and low price labels"],fr:["Étiquettes de prix haut et bas"]}},33766:e=>{e.exports={en:["High and low price lines"],fr:["Lignes de prix haut et bas"]}},69476:e=>{e.exports={en:["Highlighter"],fr:["En vedette"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],fr:["L'histogramme est trop grand, veuillez augmenter {boldHighlightStart}Row Size{boldHighlightEnd} dans la fenêtre des paramètres."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],fr:["L'histogramme est trop grand, veuillez augmenter les {boldHighlightStart}Ticks par rangée{boldHighlightEnd} dans la fenêtre des paramètres."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],fr:["L'histogramme est trop grand, veuillez réduire {boldHighlightStart}Row Size{boldHighlightEnd} dans la fenêtre des paramètres."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],fr:["Les intervalles inférieurs à {resolution} ne sont pas pris en charge pour {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],fr:["Intermédiaire"]}},14285:e=>{e.exports={en:["Invalid Symbol"],fr:["Symbole invalide"]}},52969:e=>{e.exports={en:["Invalid symbol"],fr:["Symbole invalide"]}},37189:e=>{e.exports={en:["Invert scale"],fr:["Inverser l'échelle"]}},89999:e=>{e.exports={en:["Indexed to 100"],fr:["Indexé sur 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],fr:["Étiquettes de valeur des indicateurs"]}},54418:e=>{e.exports={en:["Indicators name labels"],fr:["Libellés des indicateurs"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],fr:["Indicateurs, métriques et stratégies. Taper barre oblique"]}},15992:e=>{e.exports={en:["Info Line"],fr:["Ligne info"]}},87829:e=>{e.exports={en:["Insert indicator"],fr:["Ajouter un indicateur"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],fr:["Fourchette Interne"]}},37913:e=>{e.exports={en:["Icon"],fr:["Icône"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"],fr:["Djakarta"]}},62310:e=>{e.exports={en:["Jan"],fr:["Janv"]}},36057:e=>{e.exports={en:["Jerusalem"],fr:["Jérusalem"]}},53786:e=>{e.exports={en:["Jul"],fr:["Juill"]}},429:e=>{e.exports={en:["Jun"],fr:["Juin"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],fr:["Sur la gauche"]}},
|
||||
55813:e=>{e.exports={en:["On the right"],fr:["Sur la droite"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],fr:["Seuls les intervalles {availableResolutions} sont pris en charge pour {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],fr:["Oups!"]}},51221:e=>{e.exports={en:["Object Tree"],fr:["Arborescence des objets"]}},12179:e=>{e.exports={en:["Oct"]}},16610:e=>{e.exports={en:["Open"],fr:["Ouverture"]}},27884:e=>{e.exports={en:["Open layout. Press period"],fr:["Ouvrir la mise en page. Appuyer sur point."]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],fr:["Bas"]}},51077:e=>{e.exports={en:["Lock"],fr:["Verrouiller"]}},79777:e=>{e.exports={en:["Lock/unlock"],fr:["Verrouiller/Déverrouiller"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],fr:["Verrouiller la ligne du curseur vertical en fonction du temps"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],fr:["Verrouiller le rapport prix / barre"]}},16170:e=>{e.exports={en:["Logarithmic"],fr:["Logarithmique"]}},19439:e=>{e.exports={en:["London"],fr:["Londres"]}},74832:e=>{e.exports={en:["Long Position"],fr:["Position Longue"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],fr:["Etiquette vers le bas"]}},52402:e=>{e.exports={en:["Label Up"],fr:["Etiquette vers le haut"]}},5119:e=>{e.exports={en:["Labels"],fr:["Étiquettes"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],fr:["Changement durant le dernier jour"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],fr:["Droite"]}},9394:e=>{e.exports={en:["Line with markers"],fr:["Ligne avec marqueurs"]}},43588:e=>{e.exports={en:["Line break"],fr:["Saut de ligne"]}},56982:e=>{e.exports={en:["Lines"],fr:["Lignes"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],fr:["Lien vers l'image du graphique copié dans le presse-papiers {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],fr:["Lisbonne"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],fr:["Déplacez le point pour positionner l'ancre puis touchez pour le placer"]}},35049:e=>{e.exports={en:["Move to"],fr:["Déplacer vers"]}},26493:e=>{e.exports={en:["Move scale to left"],fr:["Déplacer l'échelle vers la gauche"]}},40789:e=>{e.exports={en:["Move scale to right"],fr:["Déplacer l'échelle vers la droite"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],fr:["Fourchette de Schiff Modifiée"]}},93907:e=>{e.exports={en:["More settings"],fr:["Plus de paramètres"]}},64039:e=>{e.exports={en:["Moscow"],fr:["Moscou"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"],fr:["Malte"]}},48991:e=>{e.exports={en:["Manila"],fr:["Manille"]}},92767:e=>{e.exports={en:["Mar"],fr:["Mars"]}},73332:e=>{e.exports={en:["Mexico City"],fr:["Ville de Mexico"]}},88314:e=>{e.exports={en:["Merge all scales into one"],fr:["Fusionner toutes les échelles en une"]}},54215:e=>{e.exports={en:["Mixed"],
|
||||
fr:["Mélangé"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"],fr:["Millénaire"]}},14724:e=>{e.exports={en:["Minuette"],fr:["Menuet"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"],fr:["non disponible"]}},36252:e=>{e.exports={en:["No data here"],fr:["Pas de données ici"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],fr:["Pas d'échelle (plein écran)"]}},9140:e=>{e.exports={en:["No sync"],fr:["Pas de sync"]}},50910:e=>{e.exports={en:["No volume data"],fr:["Pas de données de volume"]}},99024:e=>{e.exports={en:["No, keep them"],fr:["Non, conservez-les"]}},94389:e=>{e.exports={en:["Note"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],fr:["Île Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],fr:["Nouvelle-Zélande"]}},15512:e=>{e.exports={en:["New pane above"],fr:["Nouveau volet ci-dessus"]}},52160:e=>{e.exports={en:["New pane below"],fr:["Nouveau volet ci-dessous"]}},94600:e=>{e.exports={en:["Nicosia"],fr:["Nicosie"]}},73013:e=>{e.exports={en:["Something went wrong"],fr:["Quelque chose n'a pas fonctionné"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],fr:["Un problème s'est produit lors de la création de l'indicateur."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],fr:["Quelque chose n'a pas fonctionné. Veuillez réessayer plus tard."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],fr:["Enregistrer la nouvelle configuration graphique"]}},76266:e=>{e.exports={en:["Save as"],fr:["Sauvegarder Sous"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"],fr:["São Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],fr:["Devise de référence"]}},43758:e=>{e.exports={en:["Scale price chart only"],fr:["Mise à l’échelle des prix du graphique uniquement"]}},40012:e=>{e.exports={en:["Scale unit"],fr:["Unité de référence"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],fr:["Fourchette de Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],fr:["Le script peut ne pas être mis à jour si vous quittez la page."]}},32514:e=>{e.exports={en:["Settings"],fr:["Configurations"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],fr:["La deuxième partie de fraction n'est pas valide."]}},75594:e=>{e.exports={en:["Security info"],fr:["Informations sur la sécurité"]}},21973:e=>{e.exports={en:["Send to back"],fr:["Mettre au Fond"]}},71179:e=>{e.exports={en:["Send backward"],fr:["Mettre vers l'Arrière"]}},26820:e=>{e.exports={en:["Seoul"],fr:["Séoul"]}},6816:e=>{e.exports={en:["Sep"],fr:["Sept"]}},94031:e=>{e.exports={en:["Session"],fr:["Séance"]}},83298:e=>{e.exports={en:["Session volume profile"],fr:["Profil de volume de la session"]}},66707:e=>{e.exports={en:["Session breaks"],fr:["Arrêts de Session"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={
|
||||
en:["Short Position"],fr:["Position Short"]}},98334:e=>{e.exports={en:["Show"],fr:["Montrer"]}},85891:e=>{e.exports={en:["Show all drawings"],fr:["Montrer tous les dessins"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],fr:["Montrer tous les dessins et indicateurs"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],fr:["Masquer les positions et les ordresAfficher tous les dessins, indicateurs, positions & ordres"]}},98753:e=>{e.exports={en:["Show all indicators"],fr:["Montrer tous les indicateurs"]}},55418:e=>{e.exports={en:["Show all ideas"],fr:["Montrer toutes les idées"]}},20506:e=>{e.exports={en:["Show all positions & orders"],fr:["Afficher toutes les positions & ordres"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],fr:["Afficher le switch du contrat continu"]}},81465:e=>{e.exports={en:["Show contract expiration"],fr:["Afficher l'expiration des contrats"]}},29449:e=>{e.exports={en:["Show dividends"],fr:["Montrer les Dividendes"]}},37113:e=>{e.exports={en:["Show earnings"],fr:["Montrer les résultats"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],fr:["Afficher les idées des utilisateurs suivis"]}},62986:e=>{e.exports={en:["Show latest news"],fr:["Afficher les dernières nouvelles"]}},44020:e=>{e.exports={en:["Show my ideas only"],fr:["Afficher mes idées uniquement"]}},50849:e=>{e.exports={en:["Show splits"],fr:["Montrer les fractionnements d'actions"]}},67751:e=>{e.exports={en:["Signpost"],fr:["Panneau"]}},77377:e=>{e.exports={en:["Singapore"],fr:["Singapour"]}},39090:e=>{e.exports={en:["Sine Line"],fr:["Ligne sinusoïdale"]}},66205:e=>{e.exports={en:["Square"],fr:["Carré"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],fr:["Limite d’études dépassée: {number} études par mise en page.\nVeuillez retirer quelques études."]}},92516:e=>{e.exports={en:["Style"]}},61507:e=>{e.exports={en:["Stack on the left"],fr:["Empiler à gauche"]}},97800:e=>{e.exports={en:["Stack on the right"],fr:["Empiler à droite"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],fr:["Commencez à utiliser le mode de navigation au clavier. Appuyez sur le raccourci {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],fr:["Rester en Mode Dessin"]}},69217:e=>{e.exports={en:["Step line"],fr:["Ligne en escalier"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"],fr:["Sous-millenaire"]}},30585:e=>{e.exports={en:["Subminuette"],fr:["Sous-menuet"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"],fr:["Super millénaire"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],fr:["Passer à une {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],fr:["Erreur de symbole"]}},32390:e=>{e.exports={en:["Symbol name label"],fr:["Étiquette de nom du symbole"]}},10127:e=>{e.exports={
|
||||
en:["Symbol last price label"],fr:["Étiquette de la dernière valeur du symbole"]}},39079:e=>{e.exports={en:["Sync globally"],fr:["Synchronisation globale"]}},46607:e=>{e.exports={en:["Sync in layout"],fr:["Synchroniser tous les graphiques"]}},76519:e=>{e.exports={en:["Point & figure"],fr:["Point et Figure"]}},39949:e=>{e.exports={en:["Polyline"],fr:["Ensemble de Lignes"]}},371:e=>{e.exports={en:["Path"],fr:["Tracé"]}},59256:e=>{e.exports={en:["Parallel Channel"],fr:["Canal parallèle"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"],fr:["Coller"]}},6919:e=>{e.exports={en:["Percent"],fr:["Pourcent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"],fr:["Éventail"]}},19634:e=>{e.exports={en:["Pitchfork"],fr:["Fourchette"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"],fr:["Épingler à la nouvelle échelle de gauche"]}},28280:e=>{e.exports={en:["Pin to new right scale"],fr:["Épingler à la nouvelle échelle de droite"]}},14115:e=>{e.exports={en:["Pin to left scale"],fr:["Épingler à l'échelle de gauche"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],fr:["Épingler à l'échelle de gauche (masqué)"]}},81054:e=>{e.exports={en:["Pin to right scale"],fr:["épingler à l'échelle de droite"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],fr:["Épingler à l'échelle de droite (masqué)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],fr:["Epingler à l'échelle (maintenant à gauche)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],fr:["Épingler à l'échelle (maintenant pas d'échelle)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],fr:["Epingler à l'échelle (maintenant à droite)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],fr:["Épingler à l'échelle (maintenant {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],fr:["Épingler à l'échelle {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],fr:["Épingler à l'échelle {label} (masqué)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],fr:["Épinglé à l'échelle de gauche"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],fr:["Épinglé à l'échelle de gauche (masqué)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],fr:["Épinglé à l'échelle de droite"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],fr:["Épingler à l'échelle de droite (masqué)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],fr:["Épinglé à l'échelle {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],fr:["Épinglé à l'échelle {label} (masqué)"]}},71566:e=>{e.exports={en:["Plus button"],fr:["Bouton +"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],fr:["Veuillez nous donner une autorisation d'écriture dans le presse-papiers de votre navigateur ou appuyez sur {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],
|
||||
fr:["Appuyez et maintenez {key} enfoncé pendant le zoom pour maintenir la position du graphique"]}},91282:e=>{e.exports={en:["Price Label"],fr:["Étiquette de Prix"]}},97512:e=>{e.exports={en:["Price Note"],fr:["Note de prix"]}},68941:e=>{e.exports={en:["Price Range"],fr:["Intervalle de Prix"]}},66123:e=>{e.exports={en:["Price format is invalid."],fr:["Le format du prix n'est pas valide."]}},72926:e=>{e.exports={en:["Price line"],fr:["Ligne de Prix"]}},59189:e=>{e.exports={en:["Primary"],fr:["Primaire"]}},75747:e=>{e.exports={en:["Projection"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],fr:["A publié sur {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],fr:["Recherche rapide. Appuyez sur {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],fr:["Rectangle pivoté"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"],fr:["Rayon"]}},55169:e=>{e.exports={en:["Range"],fr:["Plage"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"]}},48236:e=>{e.exports={en:["Redo"],fr:["Recommencer"]}},2460:e=>{e.exports={en:["Regression Trend"],fr:["Tendance de la Régression"]}},67410:e=>{e.exports={en:["Remove"],fr:["Retirer"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],fr:["Supprimer cette métrique financière des favoris"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],fr:["Supprimer cet indicateur des favoris"]}},86285:e=>{e.exports={en:["Remove {drawings}"],fr:["Supprimer {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],fr:["Supprimer {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],fr:["Supprimer {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],fr:["Renommer la configuration du graphique"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],fr:["Réinitialiser l'affichage du graphique"]}},88853:e=>{e.exports={en:["Reset points"],fr:["Réinitialiser les points"]}},15332:e=>{e.exports={en:["Reset price scale"],fr:["Réinitialiser l'échelle de prix"]}},54170:e=>{e.exports={en:["Reset time scale"],fr:["Réinitialiser l'échelle de temps"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],fr:["Erreur d'exécution"]}},66719:e=>{e.exports={en:["Warning"],fr:["Avertissement"]}},5959:e=>{e.exports={en:["Warsaw"],fr:["Varsovie"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],fr:["Tableau"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],fr:["Téhéran"]}},93553:e=>{e.exports={
|
||||
en:["Template"],fr:["Espace de Travail"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],fr:["Le fournisseur de données ne fournit pas de données de volume pour ce symbole."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],fr:["L'aperçu de la publication n'a pas pu être chargé. Veuillez désactiver les extensions de votre navigateur et réessayer."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],fr:["Le traitement de la demande a pris trop de temps. Assurez-vous que vous disposez d'une connexion internet stable. Si le problème persiste, essayez de réduire la durée de l'intervalle de temps demandé."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],fr:["Il n'y a pas de données pour la période et la plage temporelle du graphique que vous avez sélectionnées."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],fr:["Ce fichier est trop gros. La taille maximale est de {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],fr:["Cet indicateur ne peut pas être appliqué à un autre indicateur."]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],fr:["Ce script contient une erreur. Veuillez contacter son auteur."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],fr:["Ce script est sur invitation seulement. Pour y avoir accès, veuillez contacter son auteur."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],fr:["Symbole disponible uniquement sur {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],fr:['Motif "Three Drives"']}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],fr:["Les intervalles basés sur les ticks ne sont pas disponibles pour {ticker}."]}},12806:e=>{e.exports={en:["Time"],fr:["Heure"]}},20909:e=>{e.exports={en:["Time zone"],fr:["Fuseau Horaire"]}},46852:e=>{e.exports={en:["Time Cycles"],fr:["Cycles de temps"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],fr:["Temps d'Opportunité de prix"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],fr:["Tradingview est interactif et dispose de commandes à utiliser avec un lecteur d'écran. Voici une liste des commandes clavier disponibles pour interagir sur la plateforme"]}},35757:e=>{e.exports={en:["Trend Angle"],fr:["Angle de la Tendance"]}},97339:e=>{e.exports={en:["Trend Line"],fr:["Droite de Tendance"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],fr:["Prolongation de Fibonacci selon la Tendance"]}},72159:e=>{
|
||||
e.exports={en:["Trend-Based Fib Time"],fr:["Temps de Fibonacci selon la Tendance"]}},1671:e=>{e.exports={en:["Triangle"]}},76152:e=>{e.exports={en:["Triangle Down"],fr:["Triangle vers le bas"]}},90148:e=>{e.exports={en:["Triangle Pattern"],fr:["Figure en Triangle"]}},21236:e=>{e.exports={en:["Triangle Up"],fr:["Triangle vers le haut"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],fr:["Annuler"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],fr:["Erreur inattendue en mode Deep Backtesting. Contactez le support pour plus d'informations."]}},15432:e=>{e.exports={en:["Units"],fr:["Unités"]}},11768:e=>{e.exports={en:["Unknown error"],fr:["Erreur inconnue"]}},99894:e=>{e.exports={en:["Unlock"],fr:["Déverrouiller"]}},75546:e=>{e.exports={en:["Unsupported interval"],fr:["Intervalle non pris en charge"]}},8580:e=>{e.exports={en:["User-defined error"],fr:["Erreur définie par l'utilisateur"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],fr:["Profil de volume Gamme fixe"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],fr:["L'indicateur Volume Profile n'est disponible que sur nos plans upgradés."]}},93722:e=>{e.exports={en:["Volume candles"],fr:["Bougies de volume"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],fr:["Les données de volume ne sont pas fournies dans le plan de données BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],fr:["Empreinte du volume"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],fr:["Droite Verticale"]}},23160:e=>{e.exports={en:["Vienna"],fr:["Vienne"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],fr:["Visibilité"]}},54853:e=>{e.exports={en:["Visibility on intervals"],fr:["Visibilité des intervalles"]}},58302:e=>{e.exports={en:["Visible on tap"],fr:["Visible si besoin"]}},10309:e=>{e.exports={en:["Visible on mouse over"],fr:["Visible avec déplacement de la souris"]}},4077:e=>{e.exports={en:["Visual order"],fr:["Ordre de visualisation"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],fr:["Figure en XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],fr:["Vous ne pouvez pas voir cette période de pivot avec cette résolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],fr:["Vous avez verrouillé des dessins sur ce symbole. Voulez-vous également supprimer les dessins verrouillés?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"],fr:["Oui, supprimez-les"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"],fr:["changer le degré d'Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],
|
||||
fr:["modifier les étiquettes qui ne se chevauchent pas"]}},76852:e=>{e.exports={en:["change average close price label visibility"],fr:["changer la visibilité de l'étiquette du prix moyen de clôture"]}},1022:e=>{e.exports={en:["change average close price line visibility"],fr:["changer la visibilité de la ligne du prix moyen de clôture"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],fr:["changer la visibilité des étiquettes d'offre et de demande"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],fr:["changer la visibilité des lignes d'offre et de demande"]}},32302:e=>{e.exports={en:["change currency"],fr:["changer la devise"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],fr:["changer la mise en page du graphique en {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],fr:["changer la visibilité du switch du contrat continu"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],fr:["changer la visibilité du compte à rebours pour la fermeture de la barre"]}},16979:e=>{e.exports={en:["change date range"],fr:["changer la plage de dates"]}},53929:e=>{e.exports={en:["change dividends visibility"],fr:["changement de la visibilité des dividendes"]}},6119:e=>{e.exports={en:["change events visibility on chart"],fr:["changer la visibilité des événements sur le graphique"]}},6819:e=>{e.exports={en:["change earnings visibility"],fr:["changer la visibilité des gains"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],fr:["modifier la visibilité de l'expiration des contrats à terme"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],fr:["modifier la visibilité des étiquettes de prix haut et bas"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],fr:["modifier la visibilité des lignes de prix haut et bas"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],fr:["visibilité des étiquettes de noms des indicateurs de changement"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],fr:["modifier la visibilité des étiquettes de valeur des indicateurs"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],fr:["changer la visibilité des dernières mises à jour"]}},88849:e=>{e.exports={en:["change linking group"],fr:["changer le groupe de liaison"]}},14691:e=>{e.exports={en:["change pane height"],fr:["changer la hauteur du volet"]}},96379:e=>{e.exports={en:["change plus button visibility"],fr:["changer la visibilité du bouton plus"]}},76660:e=>{e.exports={en:["change point"],fr:["modifier le point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],fr:["changer la visibilité des étiquettes de prix pré/post marché"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],fr:["changer la visibilité des lignes de prix pré/post marché"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],
|
||||
fr:["changer la visibilité de la ligne de prix de clôture précédente"]}},8662:e=>{e.exports={en:["change price line visibility"],fr:["Changer la ligne de prix"]}},2509:e=>{e.exports={en:["change price to bar ratio"],fr:["modifier le rapport prix/barre"]}},32829:e=>{e.exports={en:["change resolution"],fr:["Changer la Résolution"]}},35400:e=>{e.exports={en:["change symbol"],fr:["changer le symbole"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],fr:["modifier la visibilité des étiquettes des symboles"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],fr:["changer la visibilité de la dernière valeur du symbole"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],fr:["changer la visibilité de la précédente valeur de clôture du symbole"]}},87041:e=>{e.exports={en:["change session"],fr:["changer de session"]}},38413:e=>{e.exports={en:["change session breaks visibility"],fr:["modifier la visibilité des interruptions de session"]}},49965:e=>{e.exports={en:["change series style"],fr:["changer de style de série"]}},47474:e=>{e.exports={en:["change splits visibility"],fr:["changement de la visibilité des splits"]}},20137:e=>{e.exports={en:["change timezone"],fr:["changer de fuseau horaire"]}},85975:e=>{e.exports={en:["change unit"],fr:["changer l'unité"]}},1924:e=>{e.exports={en:["change visibility"],fr:["Changer la visibilité"]}},84331:e=>{e.exports={en:["change visibility at current interval"],fr:["changer la visibilité à l'intervalle actuel"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],fr:["changer la visibilité à l'intervalle actuel et au-dessus"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],fr:["changer la visibilité à l'intervalle actuel et en-dessous"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],fr:["changer la visibilité à tous les intervalles"]}},94566:e=>{e.exports={en:["charts by TradingView"],fr:["graphiques par TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],fr:["Clôner les outils de ligne"]}},46219:e=>{e.exports={en:["create line tools group"],fr:["créer un groupe d'outils de ligne"]}},95394:e=>{e.exports={en:["create line tools group from selection"],fr:["Créer un groupe d’outils de ligne à partir de la sélection"]}},12898:e=>{e.exports={en:["create {tool}"],fr:["créer {tool}"]}},94227:e=>{e.exports={en:["cut sources"],fr:["couper sources"]}},11500:e=>{e.exports={en:["cut {title}"],fr:["couper {title}"]}},63869:e=>{e.exports={en:["anchor objects"],fr:["ancrer les objets"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],fr:["Ajouter l'outil de ligne {lineTool} au groupe {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],fr:["ajouter outil(s) de ligne au groupe {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],fr:["Ajouter cette métrique financière à l'ensemble de la mise en page"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],
|
||||
fr:["Ajouter cet indicateur à l'ensemble de la mise en page"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],fr:["ajouter cette stratégie à l'ensemble de la mise en page"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],fr:["ajouter ce symbole à l'ensemble de la mise en page"]}},4128:e=>{e.exports={en:["align to 45 degrees"],fr:["aligner à 45 degrés"]}},68231:e=>{e.exports={en:["apply chart theme"],fr:["appliquer le thème des graphiques"]}},99551:e=>{e.exports={en:["apply all chart properties"],fr:["appliquer toutes les propriétés du graphique"]}},89720:e=>{e.exports={en:["apply drawing template"],fr:["Appliquer un modèle de dessin"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],fr:["appliquer les valeurs d'usine par défaut aux sources sélectionnées"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],fr:["appliquer des indicateurs à l'ensemble de la mise en page"]}},69604:e=>{e.exports={en:["apply study template {template}"],fr:["Appliquer le modèle d'étude {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],fr:["appliquer le thème des barres d'outils"]}},1979:e=>{e.exports={en:["bring group {title} forward"],fr:["mettre le groupe {title} à l'avant"]}},53159:e=>{e.exports={en:["bring {title} to front"],fr:["mettre {title} en avant"]}},41966:e=>{e.exports={en:["bring {title} forward"],fr:["Mettre en avant {title}"]}},44676:e=>{e.exports={en:["by TradingView"],fr:["par TradingView"]}},58850:e=>{e.exports={en:["date range lock"],fr:["verrouillage de la plage de dates"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],fr:["Exclure les outils de ligne du groupe {group}"]}},13017:e=>{e.exports={en:["hide {title}"],fr:["Masquer {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],fr:["Cacher les marques de la barre"]}},56558:e=>{e.exports={en:["interval lock"],fr:["verrouillage de l'intervalle"]}},6830:e=>{e.exports={en:["invert scale"],fr:["Inverser l'échelle"]}},48818:e=>{e.exports={en:["insert {title}"],fr:["insérer {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],fr:["insérer {title} après {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],fr:["insérer {title} après {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],fr:["Insérer {title} avant {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],fr:["Insérer {title} avant {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],fr:["charger le modèle de dessin par défaut"]}},62011:e=>{e.exports={en:["loading..."],fr:["chargement..."]}},76104:e=>{e.exports={en:["lock {title}"],fr:["Verrouiller {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],fr:["verrouiller le groupe {group}"]}},18942:e=>{e.exports={en:["lock objects"],fr:["verrouiller les objets"]}},98277:e=>{e.exports={en:["move"],fr:["déplacer"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],fr:["Déplacer {title} vers la nouvelle échelle de gauche"]}},77482:e=>{e.exports={
|
||||
en:["move {title} to new right scale"],fr:["déplacer {title} vers la nouvelle échelle de droite"]}},64077:e=>{e.exports={en:["move all scales to left"],fr:["Déplacer toutes les échelles vers la gauche"]}},19013:e=>{e.exports={en:["move all scales to right"],fr:["Déplacer toutes les échelles vers la droite"]}},52510:e=>{e.exports={en:["move drawing(s)"],fr:["Déplacer le(s) dessin(s)"]}},79209:e=>{e.exports={en:["move left"],fr:["déplacer à gauche"]}},60114:e=>{e.exports={en:["move right"],fr:["déplacer à droite"]}},44854:e=>{e.exports={en:["move scale"],fr:["Déplacer l'échelle"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],fr:["rendre {title} sans échelle (Plein écran)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],fr:["Rendre le groupe {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"],fr:["rendre le groupe {group} visible"]}},78055:e=>{e.exports={en:["merge down"],fr:["fusionner vers le bas"]}},41866:e=>{e.exports={en:["merge to pane"],fr:["fusionner vers le volet"]}},52458:e=>{e.exports={en:["merge up"],fr:["fusionner vers le haut"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"],fr:["prix des échelles"]}},63796:e=>{e.exports={en:["scale price chart only"],fr:["Mise à l’échelle des prix du graphique uniquement"]}},70771:e=>{e.exports={en:["scale time"],fr:["temps de l'échelle"]}},42070:e=>{e.exports={en:["scroll"],fr:["faire défiler"]}},87840:e=>{e.exports={en:["scroll time"],fr:["défilement temporel"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],fr:["fixer la stratégie de sélection du barème de prix sur {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],fr:["envoyer {title} en arrière"]}},5005:e=>{e.exports={en:["send {title} to back"],fr:["mettre {title} à l'arrière"]}},69546:e=>{e.exports={en:["send group {title} backward"],fr:["mettre le groupe {title} à l'arrière"]}},63934:e=>{e.exports={en:["share line tools globally"],fr:["partager les outils de ligne dans leur ensemble"]}},90221:e=>{e.exports={en:["share line tools in layout"],fr:["partager les outils de ligne dans la mise en page"]}},13336:e=>{e.exports={en:["show all ideas"],fr:["afficher toutes les idées"]}},91395:e=>{e.exports={en:["show ideas of followed users"],fr:["afficher les idées des utilisateurs suivis"]}},57460:e=>{e.exports={en:["show my ideas only"],fr:["afficher mes idées uniquement"]}},4114:e=>{e.exports={en:["stay in drawing mode"],fr:["rester en mode dessin"]}},3350:e=>{e.exports={en:["stop syncing drawing"],fr:["arrêter la synchronisation des dessins"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],fr:["arrêter la synchronisation des outils de ligne"]}},53278:e=>{e.exports={en:["symbol lock"],fr:["verrouillage du symbole"]}},91677:e=>{e.exports={en:["sync time"],fr:["synchroniser l'heure"]}},3140:e=>{e.exports={en:["powered by"],fr:["propulsé par"]}},92800:e=>{e.exports={en:["powered by TradingView"],fr:["fourni par TradingView"]}},62192:e=>{e.exports={
|
||||
en:["paste drawing"],fr:["coller le dessin"]}},1064:e=>{e.exports={en:["paste indicator"],fr:["coller l'indicateur"]}},57010:e=>{e.exports={en:["paste {title}"],fr:["coller {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],fr:["épingler à l'échelle de gauche"]}},7495:e=>{e.exports={en:["pin to right scale"],fr:["Épingler à l'échelle de droite"]}},81566:e=>{e.exports={en:["pin to scale {label}"],fr:["épingler à l'échelle {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],fr:["réarranger les volets"]}},60806:e=>{e.exports={en:["remove all indicators"],fr:["supprimer tous les indicateurs"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],fr:["supprimer tous les indicateurs et outils de dessin"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],fr:["supprimer les outils de ligne vide désélectionnés"]}},30538:e=>{e.exports={en:["remove drawings"],fr:["Supprimer les dessins"]}},1193:e=>{e.exports={en:["remove drawings group"],fr:["supprimer le groupe de dessins"]}},38199:e=>{e.exports={en:["remove line data sources"],fr:["supprimer les sources de données de la ligne"]}},93333:e=>{e.exports={en:["remove pane"],fr:["supprimer le volet"]}},94543:e=>{e.exports={en:["remove {title}"],fr:["supprimer {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],fr:["suppression du groupe d'outils de ligne {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],fr:["Renommez le groupe {group} en {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],fr:["réinitialiser les tailles de mise en page"]}},3323:e=>{e.exports={en:["reset scales"],fr:["réinitialiser les échelles"]}},17336:e=>{e.exports={en:["reset time scale"],fr:["Réinitialiser l'échelle de temps"]}},47418:e=>{e.exports={en:["resize layout"],fr:["redimensionner la mise en page"]}},85815:e=>{e.exports={en:["restore defaults"],fr:["restaurer les valeurs par défaut"]}},96881:e=>{e.exports={en:["restore study defaults"],fr:["rétablir les valeurs par défaut de l'étude"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],fr:["activer l'état du volet maximisé"]}},42240:e=>{e.exports={en:["toggle auto scale"],fr:["basculer vers l'échelle automatique"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],fr:["activer l'état de volet réduit"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],fr:["activer l'échelle indexée sur 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],fr:["activer le verrouillage de l'échelle"]}},49403:e=>{e.exports={en:["toggle log scale"],fr:["basculer vers l'échelle logarithmique"]}},98994:e=>{e.exports={en:["toggle percentage scale"],fr:["Commuter l'échelle de pourcentage"]}},80688:e=>{e.exports={en:["toggle regular scale"],fr:["activer l'échelle standard"]}},46807:e=>{e.exports={en:["track time"],fr:["suivre le temps"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],fr:["désactiver le partage des outils de ligne"]}},99234:e=>{e.exports={en:["unanchor objects"],fr:["désancrer les objets"]}},23230:e=>{e.exports={en:["unlock objects"],
|
||||
fr:["déverrouiller les objets"]}},74590:e=>{e.exports={en:["unlock group {group}"],fr:["déverrouiller le groupe {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],fr:["déverrouiller {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],fr:["défusionner vers le nouveau volet inférieur"]}},79443:e=>{e.exports={en:["unmerge up"],fr:["défusionner vers le haut"]}},46453:e=>{e.exports={en:["unmerge down"],fr:["défusionner vers le bas"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],fr:["Oh non! Le type de graphique {chartStyle} n'est pas disponible pour les intervalles basés sur les ticks."]}},41643:e=>{e.exports={en:["{count} bars"],fr:["{count} barres"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],fr:["{symbol} données financières par TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],fr:["{userName} a publié sur {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"],fr:["zoomer"]}},49856:e=>{e.exports={en:["zoom in"],fr:["zoomer"]}},73638:e=>{e.exports={en:["zoom out"],fr:["dézoomer"]}},41807:e=>{e.exports={en:["day","days"],fr:["jour","jours"]}},42328:e=>{e.exports={en:["hour","hours"],fr:["heure","heures"]}},98393:e=>{e.exports={en:["month","months"],fr:["mois","mois"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"],fr:["seconde","secondes"]}},89937:e=>{e.exports={en:["range","ranges"],fr:["plage","plages"]}},48898:e=>{e.exports={en:["week","weeks"],fr:["semaine","semaines"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],fr:["{amount} dessin","{amount} dessins"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],fr:["{amount} indicateur","{amount} indicateurs"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],fr:["ETF Schwab Trésor Américain court terme"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"],fr:["Actions 0-5 ans Obligations d'entreprise à rendement élevé ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],fr:["Indice S&P/ASX All Australian 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],fr:["Indice S&P/ASX All Australian 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],fr:["Indice S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],fr:["Dollar australien/Dollar canadien"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],fr:["Dollar australien/Franc suisse"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],
|
||||
fr:["Dollar australien/Yen japonais"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],fr:["Dollar Australien/Dollar Néo-zélandais"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],fr:["Dollar Australien/Rouble russe"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],fr:["Dollar Australien/Dollar Américain"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],fr:["Indice S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],fr:["Bitcoin Cash / Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],fr:["Indice BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],fr:["Indice BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],fr:["Indice Bitcoin / U.S. Dollar"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],fr:["Indice IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],fr:["Indice Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],fr:["Indice IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],fr:["Indice Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],fr:["Indice S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],fr:["Réal brésilien / Yen japonais"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],fr:["Indice S&P BSE SENSEX"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],fr:["Bitcoin / Réal Brésilien"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],fr:["Bitcoin / Dollar Canadien"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],fr:["Bitcoin / Yuan Chinois"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],fr:["Bitcoin / Livre Sterling"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],fr:["Bitcoin / Yen japonais"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],fr:["Bitcoin / Won sud-coréen"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],fr:["Bitcoin / Zloty polonais"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],fr:["Bitcoin / Rouble russe"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],fr:["Bitcoin / Baht Thai"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],fr:["Bitcoin / Dollar"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"]},
|
||||
e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],fr:["Indice Général Pérou S&P / BVL (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],fr:["Indice Bovespa Brésil"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],fr:["Dollar canadien / Yen japonais"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],fr:["Dollar Canadien / U.S. Dollar"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],fr:["Indice S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],fr:["Indice de volatilité S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],fr:["Contrats à terme T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],fr:["Contrats à terme Maïs"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],fr:["Contrats à terme Farine de soja"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],fr:["Contrats à terme T-Note 10 ans"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],fr:["Contrats à terme Avoine"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],fr:["Contrats à terme à 30 jours Taux d'intérêt des fonds fédéraux"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],fr:["Contrats à terme Riz"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],fr:["Contrats à terme Soja"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],fr:["Contrats à terme sur blé"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],fr:["Contrats à terme Soja mini"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],fr:["Contrats à terme Blé mini"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],fr:["Contrats à terme E-MINI DOW JONES ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],fr:["Franc suisse / Yen japonais"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],fr:["Franc Suisse / U. S. Dollar"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],fr:["Contrats à terme sur Bitcoin CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],fr:["Butter Futures-Cash (Continu : contrat actuel en premier)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],fr:["Contrats à terme Bovins d'engraissement"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],fr:["Contrats à terme porc maigre"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],fr:["Contrats à terme bétail sur pied"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],fr:["Contrats à terme E-mini Euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],fr:["Contrats à terme E-mini S&P 500"]},
|
||||
e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],fr:["Contrats à terme E-mini Yen Japonais"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],fr:["Contrats à terme NASDAQ 100 E-MINI"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],fr:["Contrats à terme Aluminium Européen Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],fr:["Contrats à terme Aluminum MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],fr:["Contrats à terme sur Or"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],fr:["Contrats à terme sur cuivre"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],fr:["Contrats à terme sur Argent"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],fr:["Contrats à terme E-mini Cuivre"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],fr:["(Mini) Contrats à terme Argent"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],fr:["Contrats à terme Or (mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],fr:["CFD sur Cuivre"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],fr:["Contrats à terme sur maïs"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],fr:["Contrats à terme sur Coton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],fr:["Capitalisation boursière totale Crypto, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],fr:["Indice DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],fr:["Indice Dow Jones Composite Moyen"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],fr:["Indice Dow Jones Commodity Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],fr:["Indice Dow Jones Commodity Cacao"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],fr:["Indice Dow Jones Commodity Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],fr:["Indice Dow Jones Commodity Or"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],fr:["Indice Dow Jones Commodity Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],fr:["Indice Dow Jones Commodity Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],fr:["Indice du Dow Jones Commodity Café"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],fr:["Indice Dow Jones Commodity Sucre"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],
|
||||
fr:["Indice Dow Jones Commodity Argent"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["Indice Dow Jones Industriel Moyen"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],fr:["Indice Dow Jones Transportation Average"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],fr:["Indice moyen Dow Jones Services publics"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],fr:["Indice Dow Jones Charbon US"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],fr:["Indice EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],fr:["Ethereum Classic / Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],fr:["Ethereum / Livre britannique"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],fr:["Ethereum / Yen japonais"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],fr:["Ethereum / Won sud-coréen"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],fr:["Ethereum / Baht Thai"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],fr:["Ethereum / Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],fr:["Euro / Dollar Australien"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],fr:["Euro / Réal brésilien"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],fr:["Euro / Dollar Canadien"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],fr:["Euro / Franc Suisse"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],fr:["Euro / Livre Sterling"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],fr:["Euro / Yen Japonais"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],fr:["Euro / Couronne Norvégienne"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],fr:["Euro / Dollar Néo-Zélandais"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],fr:["Indice AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],fr:["Indice BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],fr:["Indice CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],fr:["Euro / Rouble russe"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],fr:["Euro / Rouble russe TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],fr:["EUR/SEK"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],fr:["Euro / Livre Turque"]},
|
||||
e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],fr:["Euro / Dollar Américain"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],fr:["Indice Euro Stoxx 5"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],fr:["Indice CAC40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],fr:["Produit intérieur brut, 1 décimale"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],fr:["Population Totale : Tous âges, incluant les forces armées outremer"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],fr:["Taux de chômage civil"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],fr:["Indice FTSE Bourse de Malaisie KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."],fr:["Key Tronic Corp."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],fr:["Indice S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["Indice moyen Dow Jones Industriel"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],fr:["Livre sterling / Dollar australien"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],fr:["Livre sterling / Dollar canadien"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],fr:["Livre sterling / Franc suisse"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],fr:["Livre Sterling / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],fr:["Livre sterling / Yen japonais"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],fr:["Livre sterling / Dollar Néo-Zélandais"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],fr:["Livre britannique / Zloty polonais"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],fr:["Livre sterling / Rouble russe"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],fr:["Livre sterling / Dollar américain"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],fr:["Indice DAX des actions allemandes cotées"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],fr:["Alphabet Inc (Google) Classe A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],fr:["Indice WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],fr:["Indice Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],fr:["Indice Composite IDX"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],
|
||||
fr:["Indice Hang Seng des entreprises chinoises"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],fr:["Indice Composite Djakarta"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],fr:["Indice KLCI Bourse de Malaisie"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],fr:["Indice MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],fr:["Indice Euro STOXX 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],fr:["Indice STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],fr:["Indice pondéré Taiwan"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],fr:["Indice Composite Shanghai"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],fr:["Indice Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],fr:["YEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],fr:["Yen / Rouble russe"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],fr:["Yen Japonais / U.S. Dollar"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],fr:["Litecoin / Real Brésilien"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],fr:["Litecoin / Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],fr:["Contrats à terme sur Pétrole Brent"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],fr:["Indice MOEX Russie"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],fr:["Indice MOEX Russie"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],fr:["Contrats à terme sur indice MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],fr:["Contrats à terme sur indice MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],fr:["Contrats à terme sur indice RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],fr:["Indice RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],fr:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},
|
||||
e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],fr:["Indice PHLX Secteur du logement"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],fr:["IShares obligations de trésor 7-10 ans ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],fr:["IShares obligations de trésor 3-7 ans ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],fr:["Indice Composite Nasdaq"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],fr:["Indice Nasdaq 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],fr:["Indice Secteur des Services PHLX Oil"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],fr:["Obligations du Trésor Américain 1-3 ans ISHARES ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],fr:["Indice Philadelphia Semiconductor"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],fr:["Obligations du Trésor Américain 20+ ISHARES ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],fr:["Indice PHLX secteur des services publics"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],fr:["Indice PHLX Secteur Or et Argent"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],fr:["Gaz naturel (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],fr:["Indice Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],fr:["Indice NIFTY 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],fr:["Contrats à terme sur Ethanol NY"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],fr:["Contrats à terme cacao"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],fr:["Contrats à terme sur pétrole brut léger"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],fr:["Contrats à terme NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],fr:["Contrats à terme sur café"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],fr:["Contrats à terme sur Gaz Naturel"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],fr:["Contrats à terme Palladium"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],fr:["Contrats à terme sur Platine"]},
|
||||
e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],fr:["Contrats à terme sur essence RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],fr:["Contrats à terme sur coton"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],fr:["Contrats à terme E-mini Gaz naturel"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],fr:["Contrats à terme E-mini Pétrole brut léger"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],fr:["Contrats à terme E-mini Gasoline"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],fr:["Indice Composite NYSE"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],fr:["Indice Composite AMEX"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],fr:["Indice principal de marché NYSE ARCA"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],fr:["Dollar Néo-Zélandais / Yen Japonais"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],fr:["Dollar Néo-Zélandais / Dollar Américain"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],fr:["Indice S&P/NZX ALL ( Indice de capital )"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],fr:["Indice brut S&P / NZX"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],fr:["CFD sur Gaz naturel"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],fr:["Indice S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],fr:["CFD sur Cuivre (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],fr:["Indice OMX Copenhague 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],fr:["Indice OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],fr:["Indice brut OMX Riga"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],fr:["Indice OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],fr:["Indice brut OMX Tallinn"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],fr:["Indice brut OMX Vilnius"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"],fr:["ISHARES MSCI JAPAN SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],fr:["Indice QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],fr:["Indice Russe RTS"]},
|
||||
e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],fr:["Indice Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],fr:["Indice Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],fr:["Indice Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],fr:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],fr:["Indice du marché Suisse"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],fr:["CFD sur Germes de soja"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],fr:["Indice S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],fr:["Indice Commodity S&P Goldman Sachs"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],fr:["Indice S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],fr:["Indice de valeur S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],fr:["Indice S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],fr:["CFD sur Sucre"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],fr:["Indice Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],fr:["Indice toutes actions Tadawul"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],fr:["Indice TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],fr:["Indice Composite S&P/TSX"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],fr:["Indice S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],fr:["Australie Obligations du gouvernement 10 ans"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],fr:["Australie Obligations du gouvernement 10 ans"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],fr:["Indice de devise DOLLAR australien"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],fr:["Indice de devise LIVRE britannique"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement canadien à 10 ans"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],fr:["Indice CAC40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],fr:["Chine Obligations du gouvernement 10 ans"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],fr:["Chine Obligations du gouvernement 10 ans"]},
|
||||
e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],fr:["Indice de devise DOLLAR canadien"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],fr:["Allemagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],fr:["Allemagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],fr:["Indice DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["L'indice industriel moyen DOW JONES"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],fr:["Indice devise Dollar U.S."]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],fr:["Espagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],fr:["Espagne Obligations du gouvernement 10 ans"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],fr:["Indice de devise EURO"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],fr:["France Obligations du gouvernement 10 ans"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],fr:["France Obligations du gouvernement 10 ans"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],fr:["Obligations du gouvernement Britannique 2 ans"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],fr:["Obligations du gouvernement Britannique 10 ans"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],fr:["Obligations du gouvernement Britannique 10 ans"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],fr:["CFD sur Or (US$/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],fr:["Indice Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],fr:["Indice IBEX35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],fr:["Indonésie Obligations du gouvernement 3 ans"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],fr:["Indonésie Obligations du gouvernement 10 ans"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement indonésien à 10 ans"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],fr:["Inde Obligations du gouvernement 10 ans"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],fr:["Inde Obligations gouvernementales 10 ans"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],fr:["Italie Obligations du gouvernement 10 ans"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],
|
||||
fr:["Italie Obligations gouvernementales 10 ans"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],fr:["Indice Composite US"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],fr:["Japon Obligations du gouvernement 10 ans"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],fr:["Japon Obligations gouvernementales 10 ans"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],fr:["Indice de devise YEN japonais"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],fr:["Indice de prix Actions coréennes composites"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],fr:["Corée Obligations du gouvernement 10 ans"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],fr:["Corée Obligations du gouvernement 10 ans"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],fr:["Obligations du Gouvernement Malaisien 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],fr:["Obligations du Gouvernement Malaisien 10 YR"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],fr:["Nasdaq 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],fr:["Indice Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],fr:["Obligations du gouvernement néerlandais à 10 ans"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement néerlandais à 10 ans"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],fr:["Indice Composite NYSE"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],fr:["Obligations du gouvernement néo-zélandais à 10 ans"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],fr:["Rendement des obligations du gouvernement néo-zélandais à 10 ans"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],fr:["CFD sur PALLADIUM (US$/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],fr:["Rendement Obligations Gouvernement Polonais 5Y"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],fr:["Rendement Obligations Gouvernement Polonais 10Y"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],fr:["CFD sur Platine (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],fr:["Portugal, Obligations du gouvernement 10 ans"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],fr:["Portugal, Obligations du gouvernement 10 ans"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],fr:["Indice Top 40 Afrique du Sud"]},e.exports["#TVC:SILVER-symbol-description"]={
|
||||
en:["CFDs on Silver (US$ / OZ)"],fr:["CFD sur Argent (US$/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],fr:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],fr:["Indice Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],fr:["Indice Euro Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],fr:["Indice de devise Franc suisse"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],fr:["Turquie Obligations du gouvernement 10 ans"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],fr:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],fr:["CFD sur Pétrole brut Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],fr:["USA Obligations du gouvernement 2 ans"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],fr:["Obligations gouvernement américain 2 ans"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],fr:["USA Obligations du gouvernement 5 ans"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],fr:["Obligations gouvernement américain 5 ans"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],fr:["USA Obligations du gouvernement 10 ans"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],fr:["Obligations gouvernement américain 10 ans"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],fr:["Obligations du gouvernement américain 30 ans"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],fr:["CFD sur Pétrole brut WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],fr:["Indice de volatilité S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],fr:["Indice de devise Dollar Néo-Zélandais"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],fr:["Indice pondéré Taiwan"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],fr:["Indice boursier pondéré de la capitalisation taïwanaise"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],fr:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],fr:["Indice FTSE 100 des compagnies britanniques cotées"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],fr:["CFDs sur Pétrole brut (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],fr:["Indice Dow Jones Industriel Moyen"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],fr:["U.S. Dollar / Dollar Australien"]},
|
||||
e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],fr:["Dollar US / Réal Brésilien"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],fr:["Dollar Américain / Dollar Canadien"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],fr:["Dollar américain / Franc suisse"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],fr:["Dollar Américain / Renminbi Yuan"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],fr:["Dollar Américain / Couronne danoise"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],fr:["U.S. Dollar / Livre Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],fr:["Dollar Américain / Dollar de Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],fr:["Dollar US / Forint Hongrois"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],fr:["Dollar Américain / Roupie"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],fr:["U.S. Dollar / Shekel Israélien"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],fr:["Dollar américain / Roupie indienne"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],fr:["Dollar Américain / Yen japonais"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],fr:["Dollar Américain / Won"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],fr:["USD/MXN"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],fr:["U.S. Dollar / Dollar néo-zélandais"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],fr:["Dollar U.S. / Peso philippin"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],fr:["Dollar Américain / Zloty Polonais"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],fr:["Dollar Américain / Rouble Russe"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],fr:["USD/RUB TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],fr:["Dollar américain / Couronne suédoise"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],fr:["DOLLAR AMÉRICAIN / DOLLAR DE SINGAPOUR"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],fr:["Dollar US / Baht Thaïlandais"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],fr:["Dollar Américain / Nouvelle Livre Turque"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],fr:["Dollar américain / Rand sud-africain"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],fr:["CFDs sur Pétrole brut (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],fr:["CFD sur Blé"]},e.exports["#XAGUSD-symbol-description"]={
|
||||
en:["Silver / U.S. Dollar"],fr:["Argent / Dollar Américain"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],fr:["Or / Dollar Américain"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],fr:["Bitcoin / Dollar Canadien"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],fr:["Indice DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],fr:["CFD sur Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],fr:["Platine / Dollar Américain"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"]}}}]);
|
||||
@@ -1,8 +1,8 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],fr:["barres"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"],fr:["12 heures"]}},5797:e=>{e.exports={en:["24-hours"],fr:["24 heures"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],fr:["Coloriser les Barres selon la Clôture Précédente"]}},23739:e=>{e.exports={en:["Canvas"],fr:["Toile"]}},24197:e=>{e.exports={en:["Center"],fr:["Centre"]}},15153:e=>{e.exports={en:["Chart basic styles"],fr:["Styles de base des graphiques"]}},45639:e=>{e.exports={en:["Chart values"],fr:["Valeurs du graphique"]}},84831:e=>{e.exports={en:["Close line"],fr:["Ligne de fermeture"]}},74622:e=>{e.exports={en:["Crosshair"],fr:["Mire"]}},81849:e=>{e.exports={en:["Currency"],fr:["Devise"]}},3015:e=>{e.exports={en:["Currency and Unit"],fr:["Devise et unité"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],fr:["Ajuster les données pour les dividendes"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],fr:["Ajustement pour les changements de contrat"]}},36620:e=>{e.exports={en:["Alerts"],fr:["Alertes"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"],fr:["Clôture moyenne"]}},27567:e=>{e.exports={en:["Bottom"],fr:["Bas"]}},3159:e=>{e.exports={en:["Bottom line"],fr:["Ligne du bas"]}},74406:e=>{e.exports={en:["Body"],fr:["Corps"]}},333:e=>{e.exports={en:["Borders"],fr:["Bordures"]}},79468:e=>{e.exports={en:["Background"],fr:["Arrière-Plan"]}},10842:e=>{e.exports={en:["Bar change values"],fr:["Valeurs du changement de barre"]}},28975:e=>{e.exports={en:["Base level"],fr:["Niveau de base"]}},76473:e=>{e.exports={en:["Bid and ask"],fr:["Bid & Ask"]}},32744:e=>{e.exports={en:["Buttons"],fr:["Boutons"]}},68662:e=>{e.exports={en:["Grid lines"],fr:["Lignes de la grille"]}},17611:e=>{e.exports={en:["Down bars"],fr:["Barres inférieures"]}},23743:e=>{e.exports={en:["Down color"],fr:["Couleur du bas"]}},48225:e=>{e.exports={en:["Data modification"],fr:["Modification des données"]}},84838:e=>{e.exports={en:["Date format"],fr:["Format de la date"]}},42357:e=>{e.exports={en:["Day of week on labels"],fr:["Jour de la semaine sur les étiquettes"]}},16564:e=>{e.exports={en:["Default"],fr:["Par Défaut"]}},78734:e=>{e.exports={en:["Description"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],fr:["Fond des heures de trading électronique"]}},69808:e=>{e.exports={en:["Events"],fr:["Événements"]}},41129:e=>{e.exports={en:["Fill"],fr:["Remplir"]}},61112:e=>{e.exports={en:["Fill top area"],fr:["Remplir la zone supérieure"]}},73185:e=>{e.exports={en:["Fill bottom area"],fr:["Remplir la zone inférieure"]}},886:e=>{e.exports={en:["HLC bars"],fr:["Barres HLC"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"],fr:["Horz uniquement"]}},14180:e=>{e.exports={en:["High and low"],fr:["Haut et bas"]}},56359:e=>{e.exports={en:["High line"],
|
||||
fr:["Ligne haute"]}},47326:e=>{e.exports={en:["Integer"],fr:["Entier"]}},84549:e=>{e.exports={en:["Indicators"],fr:["Indicateurs"]}},78082:e=>{e.exports={en:["Indicators and financials"],fr:["Indicateurs et données financières"]}},25765:e=>{e.exports={en:["Open market status"],fr:["Statut de marché ouvert"]}},34579:e=>{e.exports={en:["Low line"],fr:["Ligne basse"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],fr:["Description longue"]}},72423:e=>{e.exports={en:["Last day change values"],fr:["Valeurs de changement du dernier jour"]}},11626:e=>{e.exports={en:["Left"],fr:["Gauche"]}},8249:e=>{e.exports={en:["Money"],fr:["Argent"]}},70937:e=>{e.exports={en:["Margins"],fr:["Marges"]}},68833:e=>{e.exports={en:["Middle"],fr:["Milieu"]}},58589:e=>{e.exports={en:["No overlapping labels"],fr:["Pas d'étiquettes superposées"]}},60798:e=>{e.exports={en:["None"],fr:["Aucun"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"],fr:["Nom"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],fr:["Sauvegarder la position du bord gauche du graphique lors du changement d'intervalle"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],fr:["Modes d'échelle (A et L)"]}},93968:e=>{e.exports={en:["Scales"],fr:["Échelles"]}},90275:e=>{e.exports={en:["Scales and lines"],fr:["Échelles et lignes"]}},30042:e=>{e.exports={en:["Scales placement"],fr:["Placement des échelles"]}},28715:e=>{e.exports={en:["Status line"],fr:["Ligne d'état"]}},95481:e=>{e.exports={en:["Symbol"],fr:["Symbole"]}},53263:e=>{e.exports={en:["Pane"],fr:["Volet"]}},82894:e=>{e.exports={en:["Pane separators"],fr:["Séparateurs de volets"]}},16207:e=>{e.exports={en:["Percentage"],fr:["Pourcentage"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],fr:["Pré/post marché"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],fr:["Background des heures pré/post marché"]}},59766:e=>{e.exports={en:["Precision"],fr:["Précision"]}},83811:e=>{e.exports={en:["Previous day close"],fr:["Clôture du jour précédent"]}},35082:e=>{e.exports={en:["Price Scale"],fr:["Echelle de prix"]}},27632:e=>{e.exports={en:["Price and percentage value"],fr:["Prix et valeur de pourcentage"]}},62142:e=>{e.exports={en:["Price labels & lines"],fr:["Etiquettes de prix & lignes"]}},84684:e=>{e.exports={en:["Price source"],fr:["Source de prix"]}},73466:e=>{e.exports={en:["Projection up bars"],fr:["Barres de projection supérieures"]}},77430:e=>{e.exports={en:["Projection candles"],fr:["Barres de projection"]}},88367:e=>{e.exports={en:["Projection down bars"],fr:["Barres de projection inférieures"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],fr:["Prix réels sur l'échelle de prix (au lieu du prix Heikin-Ashi)"]}},50421:e=>{e.exports={en:["Right"],fr:["Droite"]}},62532:e=>{e.exports={en:["Right Margin"],fr:["Marge de droite"]}},41571:e=>{e.exports={en:["Watermark"],fr:["Filigrane"]}},32163:e=>{e.exports={en:["Wick"],fr:["Mèche"]}},97118:e=>{
|
||||
e.exports={en:["Top"],fr:["Haut"]}},89349:e=>{e.exports={en:["Top line"],fr:["Ligne du haut"]}},70320:e=>{e.exports={en:["Text"],fr:["Texte"]}},25485:e=>{e.exports={en:["Text alignment"],fr:["Alignement du texte"]}},67781:e=>{e.exports={en:["Text orientation"],fr:["Orientation du texte"]}},20215:e=>{e.exports={en:["Thin bars"],fr:["Barres fines"]}},70198:e=>{e.exports={en:["Title"],fr:["Titre"]}},29854:e=>{e.exports={en:["Titles"],fr:["Titres"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"],fr:["Ticker et description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"],fr:["Echelle de temps"]}},5591:e=>{e.exports={en:["Time hours format"],fr:["Format de l'heure"]}},77073:e=>{e.exports={en:["Timezone"],fr:["Fuseau horaire"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],fr:["Unité"]}},23091:e=>{e.exports={en:["Up color"],fr:["Couleur du haut"]}},36957:e=>{e.exports={en:["Up bars"],fr:["Barres supérieures"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],fr:["Utiliser le règlement comme proche de l'intervalle quotidien"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"],fr:["Valeur"]}},31218:e=>{e.exports={en:["Value according to scale"],fr:["Valeur selon l'échelle"]}},60092:e=>{e.exports={en:["Values"],fr:["Valeurs"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"],fr:["Vert uniquement"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],fr:["bougie"]}},27068:e=>{e.exports={en:["change HLC bars"],fr:["changer les barres HLC"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],fr:["modifier la visibilité des boutons de navigation"]}},96227:e=>{e.exports={en:["change open market status visibility"],fr:["modifier la visibilité du statut de marché ouvert"]}},43231:e=>{e.exports={en:["change average close price line width"],fr:["changer la largeur de la ligne du prix de clôture moyen"]}},47026:e=>{e.exports={en:["change average close price line color"],fr:["changer la couleur de la ligne du prix de clôture moyen"]}},86866:e=>{e.exports={en:["change area fill color"],fr:["changer la couleur de remplissage de la zone"]}},89346:e=>{e.exports={en:["change area line width"],fr:["changer la largeur de ligne de la zone"]}},29605:e=>{e.exports={en:["change area line color"],fr:["changer la couleur de ligne de la zone"]}},4640:e=>{e.exports={en:["change area price source"],fr:["changer la source de prix de la zone"]}},98407:e=>{e.exports={en:["change ask line color"],fr:["changer la couleur de la ligne de demande"]}},42190:e=>{e.exports={en:["change base level"],fr:["changer le niveau de base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],fr:["changer la couleur de la ligne inférieure de la ligne de base"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],fr:["changer la largeur de la ligne inférieure de la ligne de base"]}},97216:e=>{e.exports={
|
||||
en:["change baseline fill bottom area color"],fr:["changer la couleur de la zone inférieure de remplissage de la ligne de base"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],fr:["changer la couleur de la zone supérieure de remplissage de la ligne de base"]}},68609:e=>{e.exports={en:["change baseline price source"],fr:["changer la source de prix de la ligne de base"]}},69044:e=>{e.exports={en:["change baseline top line color"],fr:["changer la couleur de la ligne supérieure de la ligne de base"]}},68197:e=>{e.exports={en:["change baseline top line width"],fr:["changer la largeur de la ligne supérieure de la ligne de base"]}},33464:e=>{e.exports={en:["change bar up color"],fr:["changer la couleur supérieure de la barre"]}},27426:e=>{e.exports={en:["change bar change visibility"],fr:["modifier la visibilité du changement de barre"]}},59622:e=>{e.exports={en:["change bar down color"],fr:["changer la couleur inférieure de la barre"]}},17919:e=>{e.exports={en:["change bid line color"],fr:["changer la couleur de la ligne d'offre"]}},32094:e=>{e.exports={en:["change bottom margin"],fr:["modifier la marge inférieure"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],fr:["modifier la visibilité des étiquettes des devises et des unités"]}},64003:e=>{e.exports={en:["change currency label visibility"],fr:["changer la visibilité de l'étiquette de la devise"]}},42803:e=>{e.exports={en:["change chart background color"],fr:["modifier la couleur de fond du graphique"]}},41382:e=>{e.exports={en:["change chart background type"],fr:["modifier le type d'arrière-plan du graphique"]}},79637:e=>{e.exports={en:["change chart values visibility"],fr:["modifier la visibilité des valeurs du graphique"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],fr:["changer les barres de couleur en fonction de la fermeture précédente"]}},88324:e=>{e.exports={en:["change column up color"],fr:["changer la couleur du haut de la colonne"]}},93890:e=>{e.exports={en:["change column down color"],fr:["changer la couleur du bas de la colonne"]}},4727:e=>{e.exports={en:["change column price source"],fr:["changer la source du prix de la colonne"]}},50544:e=>{e.exports={en:["change crosshair width"],fr:["modifier la largeur de la mire"]}},92885:e=>{e.exports={en:["change crosshair color"],fr:["modifier la couleur de la mire"]}},68418:e=>{e.exports={en:["change crosshair style"],fr:["modifier le style de la mire"]}},43109:e=>{e.exports={en:["change date format"],fr:["changer le format de la date"]}},30418:e=>{e.exports={en:["change day of week on labels"],fr:["changer le jour de la semaine sur les étiquettes"]}},82063:e=>{e.exports={en:["change decimal places"],fr:["changer les décimales"]}},44223:e=>{e.exports={en:["change extended hours color"],fr:["changer la couleur des heures étendues"]}},47393:e=>{e.exports={en:["change electronic trading hours"],fr:["modifier les heures de trading électronique"]}},73844:e=>{e.exports={en:["change grid lines visibility"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],fr:["barres"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"],fr:["12 heures"]}},5797:e=>{e.exports={en:["24-hours"],fr:["24 heures"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],fr:["Coloriser les Barres selon la Clôture Précédente"]}},23739:e=>{e.exports={en:["Canvas"],fr:["Toile"]}},24197:e=>{e.exports={en:["Center"],fr:["Centre"]}},15153:e=>{e.exports={en:["Chart basic styles"],fr:["Styles de base des graphiques"]}},45639:e=>{e.exports={en:["Chart values"],fr:["Valeurs du graphique"]}},84831:e=>{e.exports={en:["Close line"],fr:["Ligne de fermeture"]}},74622:e=>{e.exports={en:["Crosshair"],fr:["Mire"]}},81849:e=>{e.exports={en:["Currency"],fr:["Devise"]}},3015:e=>{e.exports={en:["Currency and Unit"],fr:["Devise et unité"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],fr:["Ajuster les données pour les dividendes"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],fr:["Ajustement pour les changements de contrat"]}},36620:e=>{e.exports={en:["Alerts"],fr:["Alertes"]}},14119:e=>{e.exports={en:["Arguments"]}},68650:e=>{e.exports={en:["Average close"],fr:["Clôture moyenne"]}},27567:e=>{e.exports={en:["Bottom"],fr:["Bas"]}},3159:e=>{e.exports={en:["Bottom line"],fr:["Ligne du bas"]}},74406:e=>{e.exports={en:["Body"],fr:["Corps"]}},333:e=>{e.exports={en:["Borders"],fr:["Bordures"]}},79468:e=>{e.exports={en:["Background"],fr:["Arrière-Plan"]}},10842:e=>{e.exports={en:["Bar change values"],fr:["Valeurs du changement de barre"]}},28975:e=>{e.exports={en:["Base level"],fr:["Niveau de base"]}},76473:e=>{e.exports={en:["Bid and ask"],fr:["Bid & Ask"]}},32744:e=>{e.exports={en:["Buttons"],fr:["Boutons"]}},68662:e=>{e.exports={en:["Grid lines"],fr:["Lignes de la grille"]}},17611:e=>{e.exports={en:["Down bars"],fr:["Barres inférieures"]}},23743:e=>{e.exports={en:["Down color"],fr:["Couleur du bas"]}},48225:e=>{e.exports={en:["Data modification"],fr:["Modification des données"]}},84838:e=>{e.exports={en:["Date format"],fr:["Format de la date"]}},42357:e=>{e.exports={en:["Day of week on labels"],fr:["Jour de la semaine sur les étiquettes"]}},16564:e=>{e.exports={en:["Default"],fr:["Par Défaut"]}},78734:e=>{e.exports={en:["Description"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],fr:["Fond des heures de trading électronique"]}},69808:e=>{e.exports={en:["Events"],fr:["Événements"]}},41129:e=>{e.exports={en:["Fill"],fr:["Remplir"]}},61112:e=>{e.exports={en:["Fill top area"],fr:["Remplir la zone supérieure"]}},73185:e=>{e.exports={en:["Fill bottom area"],fr:["Remplir la zone inférieure"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"],fr:["Horz uniquement"]}},14180:e=>{e.exports={en:["High and low"],fr:["Haut et bas"]}},56359:e=>{e.exports={
|
||||
en:["High line"],fr:["Ligne haute"]}},47326:e=>{e.exports={en:["Integer"],fr:["Entier"]}},84549:e=>{e.exports={en:["Indicators"],fr:["Indicateurs"]}},78082:e=>{e.exports={en:["Indicators and financials"],fr:["Indicateurs et données financières"]}},25765:e=>{e.exports={en:["Open market status"],fr:["Statut de marché ouvert"]}},34579:e=>{e.exports={en:["Low line"],fr:["Ligne basse"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],fr:["Description longue"]}},72423:e=>{e.exports={en:["Last day change values"],fr:["Valeurs de changement du dernier jour"]}},11626:e=>{e.exports={en:["Left"],fr:["Gauche"]}},8249:e=>{e.exports={en:["Money"],fr:["Argent"]}},70937:e=>{e.exports={en:["Margins"],fr:["Marges"]}},68833:e=>{e.exports={en:["Middle"],fr:["Milieu"]}},58589:e=>{e.exports={en:["No overlapping labels"],fr:["Pas d'étiquettes superposées"]}},60798:e=>{e.exports={en:["None"],fr:["Aucun"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"],fr:["Nom"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],fr:["Sauvegarder la position du bord gauche du graphique lors du changement d'intervalle"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],fr:["Modes d'échelle (A et L)"]}},93968:e=>{e.exports={en:["Scales"],fr:["Échelles"]}},90275:e=>{e.exports={en:["Scales and lines"],fr:["Échelles et lignes"]}},30042:e=>{e.exports={en:["Scales placement"],fr:["Placement des échelles"]}},28715:e=>{e.exports={en:["Status line"],fr:["Ligne d'état"]}},95481:e=>{e.exports={en:["Symbol"],fr:["Symbole"]}},53263:e=>{e.exports={en:["Pane"],fr:["Volet"]}},82894:e=>{e.exports={en:["Pane separators"],fr:["Séparateurs de volets"]}},16207:e=>{e.exports={en:["Percentage"],fr:["Pourcentage"]}},94408:e=>{e.exports={en:["Pips"]}},60904:e=>{e.exports={en:["Pre/post market"],fr:["Pré/post marché"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],fr:["Background des heures pré/post marché"]}},59766:e=>{e.exports={en:["Precision"],fr:["Précision"]}},83811:e=>{e.exports={en:["Previous day close"],fr:["Clôture du jour précédent"]}},35082:e=>{e.exports={en:["Price Scale"],fr:["Echelle de prix"]}},27632:e=>{e.exports={en:["Price and percentage value"],fr:["Prix et valeur de pourcentage"]}},62142:e=>{e.exports={en:["Price labels & lines"],fr:["Etiquettes de prix & lignes"]}},84684:e=>{e.exports={en:["Price source"],fr:["Source de prix"]}},73466:e=>{e.exports={en:["Projection up bars"],fr:["Barres de projection supérieures"]}},77430:e=>{e.exports={en:["Projection candles"],fr:["Barres de projection"]}},88367:e=>{e.exports={en:["Projection down bars"],fr:["Barres de projection inférieures"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],fr:["Prix réels sur l'échelle de prix (au lieu du prix Heikin-Ashi)"]}},50421:e=>{e.exports={en:["Right"],fr:["Droite"]}},62532:e=>{e.exports={en:["Right Margin"],fr:["Marge de droite"]}},41571:e=>{e.exports={en:["Watermark"],fr:["Filigrane"]}},32163:e=>{e.exports={en:["Wick"],fr:["Mèche"]}},
|
||||
97118:e=>{e.exports={en:["Top"],fr:["Haut"]}},89349:e=>{e.exports={en:["Top line"],fr:["Ligne du haut"]}},70320:e=>{e.exports={en:["Text"],fr:["Texte"]}},25485:e=>{e.exports={en:["Text alignment"],fr:["Alignement du texte"]}},67781:e=>{e.exports={en:["Text orientation"],fr:["Orientation du texte"]}},20215:e=>{e.exports={en:["Thin bars"],fr:["Barres fines"]}},70198:e=>{e.exports={en:["Title"],fr:["Titre"]}},29854:e=>{e.exports={en:["Titles"],fr:["Titres"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"],fr:["Ticker et description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"],fr:["Echelle de temps"]}},5591:e=>{e.exports={en:["Time hours format"],fr:["Format de l'heure"]}},77073:e=>{e.exports={en:["Timezone"],fr:["Fuseau horaire"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],fr:["Unité"]}},23091:e=>{e.exports={en:["Up color"],fr:["Couleur du haut"]}},36957:e=>{e.exports={en:["Up bars"],fr:["Barres supérieures"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],fr:["Utiliser le règlement comme proche de l'intervalle quotidien"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"],fr:["Valeur"]}},31218:e=>{e.exports={en:["Value according to scale"],fr:["Valeur selon l'échelle"]}},60092:e=>{e.exports={en:["Values"],fr:["Valeurs"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"],fr:["Vert uniquement"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"],fr:["bougie"]}},27068:e=>{e.exports={en:["change HLC bars"],fr:["changer les barres HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],fr:["modifier la visibilité des boutons de navigation"]}},96227:e=>{e.exports={en:["change open market status visibility"],fr:["modifier la visibilité du statut de marché ouvert"]}},43231:e=>{e.exports={en:["change average close price line width"],fr:["changer la largeur de la ligne du prix de clôture moyen"]}},47026:e=>{e.exports={en:["change average close price line color"],fr:["changer la couleur de la ligne du prix de clôture moyen"]}},86866:e=>{e.exports={en:["change area fill color"],fr:["changer la couleur de remplissage de la zone"]}},89346:e=>{e.exports={en:["change area line width"],fr:["changer la largeur de ligne de la zone"]}},29605:e=>{e.exports={en:["change area line color"],fr:["changer la couleur de ligne de la zone"]}},4640:e=>{e.exports={en:["change area price source"],fr:["changer la source de prix de la zone"]}},98407:e=>{e.exports={en:["change ask line color"],fr:["changer la couleur de la ligne de demande"]}},42190:e=>{e.exports={en:["change base level"],fr:["changer le niveau de base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],fr:["changer la couleur de la ligne inférieure de la ligne de base"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],fr:["changer la largeur de la ligne inférieure de la ligne de base"]}},
|
||||
97216:e=>{e.exports={en:["change baseline fill bottom area color"],fr:["changer la couleur de la zone inférieure de remplissage de la ligne de base"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],fr:["changer la couleur de la zone supérieure de remplissage de la ligne de base"]}},68609:e=>{e.exports={en:["change baseline price source"],fr:["changer la source de prix de la ligne de base"]}},69044:e=>{e.exports={en:["change baseline top line color"],fr:["changer la couleur de la ligne supérieure de la ligne de base"]}},68197:e=>{e.exports={en:["change baseline top line width"],fr:["changer la largeur de la ligne supérieure de la ligne de base"]}},33464:e=>{e.exports={en:["change bar up color"],fr:["changer la couleur supérieure de la barre"]}},27426:e=>{e.exports={en:["change bar change visibility"],fr:["modifier la visibilité du changement de barre"]}},59622:e=>{e.exports={en:["change bar down color"],fr:["changer la couleur inférieure de la barre"]}},17919:e=>{e.exports={en:["change bid line color"],fr:["changer la couleur de la ligne d'offre"]}},32094:e=>{e.exports={en:["change bottom margin"],fr:["modifier la marge inférieure"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],fr:["modifier la visibilité des étiquettes des devises et des unités"]}},64003:e=>{e.exports={en:["change currency label visibility"],fr:["changer la visibilité de l'étiquette de la devise"]}},42803:e=>{e.exports={en:["change chart background color"],fr:["modifier la couleur de fond du graphique"]}},41382:e=>{e.exports={en:["change chart background type"],fr:["modifier le type d'arrière-plan du graphique"]}},79637:e=>{e.exports={en:["change chart values visibility"],fr:["modifier la visibilité des valeurs du graphique"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],fr:["changer les barres de couleur en fonction de la fermeture précédente"]}},88324:e=>{e.exports={en:["change column up color"],fr:["changer la couleur du haut de la colonne"]}},93890:e=>{e.exports={en:["change column down color"],fr:["changer la couleur du bas de la colonne"]}},4727:e=>{e.exports={en:["change column price source"],fr:["changer la source du prix de la colonne"]}},50544:e=>{e.exports={en:["change crosshair width"],fr:["modifier la largeur de la mire"]}},92885:e=>{e.exports={en:["change crosshair color"],fr:["modifier la couleur de la mire"]}},68418:e=>{e.exports={en:["change crosshair style"],fr:["modifier le style de la mire"]}},43109:e=>{e.exports={en:["change date format"],fr:["changer le format de la date"]}},30418:e=>{e.exports={en:["change day of week on labels"],fr:["changer le jour de la semaine sur les étiquettes"]}},82063:e=>{e.exports={en:["change decimal places"],fr:["changer les décimales"]}},44223:e=>{e.exports={en:["change extended hours color"],fr:["changer la couleur des heures étendues"]}},47393:e=>{e.exports={en:["change electronic trading hours"],fr:["modifier les heures de trading électronique"]}},73844:e=>{e.exports={en:["change grid lines visibility"],
|
||||
fr:["modifier la visibilité des lignes de la grille"]}},61407:e=>{e.exports={en:["change high and low price line color"],fr:["changer la couleur des lignes de prix haut et bas"]}},39581:e=>{e.exports={en:["change high and low price line width"],fr:["modifier la largeur des lignes de prix haut et bas"]}},6026:e=>{e.exports={en:["change high-low body color"],fr:["changer la couleur du corps haut-bas"]}},73021:e=>{e.exports={en:["change high-low body visibility"],fr:["changer la visibilité du corps haut-bas"]}},46844:e=>{e.exports={en:["change high-low border color"],fr:["changer la couleur des bordures haut-bas"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],fr:["changer la visibilité des bordures haut-bas"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],fr:["changer la visibilité des étiquettes haut-bas"]}},56961:e=>{e.exports={en:["change high-low labels color"],fr:["changer la couleur des étiquettes haut-bas"]}},21133:e=>{e.exports={en:["change horz grid lines color"],fr:["modifier la couleur des lignes de la grille horizontale"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],fr:["modifier la visibilité des titres de l'indicateur"]}},49583:e=>{e.exports={en:["change indicator values visibility"],fr:["modifier la visibilité des valeurs de l'indicateur"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],fr:["modifier la visibilité des arguments de l'indicateur"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],fr:["Modifier la visibilité des étiquettes de noms des indicateurs et des données financières"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],fr:["modifier la visibilité des étiquettes de valeur des indicateurs et des données financières"]}},66307:e=>{e.exports={en:["change last day change visibility"],fr:["changez le dernier jour et changez de visibilité"]}},91873:e=>{e.exports={en:["change legend background transparency"],fr:["modifier la transparence du fond de la légende"]}},14246:e=>{e.exports={en:["change legend background visibility"],fr:["modifier la visibilité du fond de la légende"]}},88640:e=>{e.exports={en:["change line color"],fr:["changer la couleur de la ligne"]}},41837:e=>{e.exports={en:["change line price source"],fr:["changer la ligne de la source de prix"]}},48339:e=>{e.exports={en:["change line width"],fr:["changer la largeur de la ligne"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],fr:["modifier la visibilité des boutons du volet"]}},52203:e=>{e.exports={en:["change pane separators color"],fr:["modifier la couleur des séparateurs de volets"]}},38730:e=>{e.exports={en:["change post market color"],fr:["changer la couleur du post-marché"]}},28075:e=>{e.exports={en:["change post market line color"],fr:["changer la couleur de la ligne de post-marché"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],fr:["changer la visibilité des lignes de prix pré/post marché"]}},44371:e=>{e.exports={
|
||||
en:["change pre market color"],fr:["changer la couleur du pré-marché"]}},96114:e=>{e.exports={en:["change pre market line color"],fr:["changer la couleur de la ligne de pré-marché"]}},69814:e=>{e.exports={en:["change previous close price line color"],fr:["changer la couleur de la ligne du prix de clôture précédent"]}},13660:e=>{e.exports={en:["change previous close price line width"],fr:["changer la largeur de la ligne du prix de clôture précédent"]}},87861:e=>{e.exports={en:["change price line color"],fr:["changer la couleur de la ligne de prix"]}},29353:e=>{e.exports={en:["change price line width"],fr:["changer la largeur de la ligne de prix"]}},16241:e=>{e.exports={en:["change range bars style"],fr:["changer le style des barres de gamme"]}},65821:e=>{e.exports={en:["change range thin bars"],fr:["changer les barres fines de la gamme"]}},75487:e=>{e.exports={en:["change renko wick down color"],fr:["changer la couleur des mèches renko du bas"]}},92277:e=>{e.exports={en:["change renko wick up color"],fr:["changer la couleur des mèches du haut renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],fr:["changer la visibilité des mèches renko"]}},82946:e=>{e.exports={en:["change right margin"],fr:["modifier la marge de droite"]}},79545:e=>{e.exports={en:["change right margin percentage"],fr:["changer le pourcentage de la marge de droite"]}},78995:e=>{e.exports={en:["change symbol watermark color"],fr:["modifier la couleur du filigrane du symbole"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],fr:["modifier la visibilité du filigrane du symbole"]}},88167:e=>{e.exports={en:["change symbol description visibility"],fr:["modifier la visibilité de la description du symbole"]}},12050:e=>{e.exports={en:["change symbol field visibility"],fr:["modifier la visibilité du champ du symbole"]}},46066:e=>{e.exports={en:["change symbol last value mode"],fr:["changer le mode de la dernière valeur du symbole"]}},902:e=>{e.exports={en:["change symbol legend format"],fr:["changer le format de la légende des symboles"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],fr:["modifier la position du bord gauche du graphique de sauvegarde lors du changement d'intervalle"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],fr:["changer la visibilité des boutons de modes d'échelle"]}},76131:e=>{e.exports={en:["change scales text color"],fr:["modifier la couleur du texte des échelles"]}},27792:e=>{e.exports={en:["change scales font size"],fr:["modifier la taille de police des échelles"]}},94997:e=>{e.exports={en:["change scales lines color"],fr:["modifier la couleur des lignes des échelles"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],fr:["modifier la visibilité des interruptions de session"]}},28175:e=>{e.exports={en:["change sessions breaks width"],fr:["modifier la largeur des interruptions de session"]}},33895:e=>{e.exports={en:["change sessions breaks color"],fr:["modifier la couleur des interruptions de session"]}},21641:e=>{e.exports={
|
||||
en:["change sessions breaks style"],fr:["modifier le style des interruptions de session"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],fr:["modifier l'affichage des prix réels sur l'échelle de prix (au lieu du prix Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],fr:["changer les barres fines"]}},39754:e=>{e.exports={en:["change time hours format"],fr:["changer le format de l'heure"]}},74883:e=>{e.exports={en:["change top margin"],fr:["modifier la marge supérieure"]}},51250:e=>{e.exports={en:["change unit label visibility"],fr:["modifier la visibilité de l'étiquette d'unité"]}},71805:e=>{e.exports={en:["change vert grid lines color"],fr:["modifier la couleur des lignes de la grille verticale"]}},96201:e=>{e.exports={en:["change volume values visibility"],fr:["modifier la visibilité des valeurs de volume"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],fr:["changer la couleur de la bordure du haut de {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],fr:["changer la couleur du haut de {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],fr:["changer la couleur de la mèche du bas de {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],fr:["changer la couleur de la mèche du haut de {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],fr:["changer la visibilité de la mèche de {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],fr:["changer la visibilité du corps de {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],fr:["changer la visibilité de la bordure de {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],fr:["changer la couleur de la bordure du bas de {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],fr:["changer la couleur du bas de {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],fr:["changer la couleur de la barre de bordure du bas de {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],fr:["changer la couleur de la barre de bordure du haut de {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],fr:["changer la couleur du bas de {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],fr:["changer la couleur de la barre de bordure de projection du haut de {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],fr:["changer la couleur de la barre de projection du bas de {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],fr:["changer la couleur de la barre de projection du haut de {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],fr:["changer la couleur du haut de {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],fr:["modifier les propriétés de {inputName}"]}},
|
||||
18077:e=>{e.exports={en:["adjust data for dividends"],fr:["ajuster les données pour les dividendes"]}},1433:e=>{e.exports={en:["adjust for contract changes"],fr:["ajuster pour les changements de contrat"]}},92598:e=>{e.exports={en:["hollow candles"],fr:["Bougies Creuses"]}},57243:e=>{e.exports={en:["range","ranges"],fr:["plage","plages"]}},70282:e=>{e.exports={en:["renko"],fr:["Renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],fr:["utiliser le règlement comme clôture sur l'intervalle quotidien"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],fr:["{value} décimale","{value} décimales"]}}}]);
|
||||
18077:e=>{e.exports={en:["adjust data for dividends"],fr:["ajuster les données pour les dividendes"]}},1433:e=>{e.exports={en:["adjust for contract changes"],fr:["ajuster pour les changements de contrat"]}},92598:e=>{e.exports={en:["hollow candles"],fr:["Bougies Creuses"]}},57243:e=>{e.exports={en:["range","ranges"],fr:["plage","plages"]}},70282:e=>{e.exports={en:["renko"],fr:["Renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],fr:["utiliser le règlement comme clôture sur l'intervalle quotidien"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],fr:["{value} décimale","{value} décimales"]}}}]);
|
||||
@@ -2,5 +2,5 @@
|
||||
disableActiveOnTouch:"disableActiveOnTouch-PVWoXu5j",disableActiveStateStyles:"disableActiveStateStyles-PVWoXu5j",withGrouped:"withGrouped-PVWoXu5j","quiet-primary":"quiet-primary-PVWoXu5j",green:"green-PVWoXu5j",red:"red-PVWoXu5j",blue:"blue-PVWoXu5j",secondary:"secondary-PVWoXu5j",ghost:"ghost-PVWoXu5j"}},1538:e=>{e.exports={lightButton:"lightButton-bYDQcOkp",link:"link-bYDQcOkp",ltr:"ltr-bYDQcOkp",rtl:"rtl-bYDQcOkp","typography-regular16px":"typography-regular16px-bYDQcOkp","typography-medium16px":"typography-medium16px-bYDQcOkp","typography-regular14px":"typography-regular14px-bYDQcOkp","typography-semibold14px":"typography-semibold14px-bYDQcOkp","typography-semibold16px":"typography-semibold16px-bYDQcOkp",content:"content-bYDQcOkp",visuallyHidden:"visuallyHidden-bYDQcOkp",nowrap:"nowrap-bYDQcOkp",ellipsisContainer:"ellipsisContainer-bYDQcOkp",textWrapContainer:"textWrapContainer-bYDQcOkp",textWrapWithEllipsis:"textWrapWithEllipsis-bYDQcOkp",slot:"slot-bYDQcOkp",caret:"caret-bYDQcOkp",activeCaret:"activeCaret-bYDQcOkp",xsmall:"xsmall-bYDQcOkp",withStartSlot:"withStartSlot-bYDQcOkp",withEndSlot:"withEndSlot-bYDQcOkp",noContent:"noContent-bYDQcOkp",wrap:"wrap-bYDQcOkp",small:"small-bYDQcOkp",medium:"medium-bYDQcOkp"}},36718:e=>{e.exports={"default-drawer-min-top-distance":"100px",wrap:"wrap-_HnK0UIN",positionBottom:"positionBottom-_HnK0UIN",backdrop:"backdrop-_HnK0UIN",drawer:"drawer-_HnK0UIN",positionLeft:"positionLeft-_HnK0UIN"}},27011:(e,t,o)=>{"use strict";function n(e,t){return t||null==e||("string"==typeof e||Array.isArray(e))&&0===e.length}o.d(t,{isIconOnly:()=>n})},9038:(e,t,o)=>{"use strict";o.d(t,{useLightButtonClasses:()=>c});var n=o(50959),r=o(97754),l=o(17946),a=o(27011),i=o(86332);const s=n.createContext({isInButtonGroup:!1,isGroupPrimary:!1}),c=(e,t,o)=>{const c=(0,n.useContext)(l.CustomBehaviourContext),{className:u,isSelected:d,children:p,showCaret:m,forceDirection:h,iconOnly:v,color:g="gray",variant:y="primary",size:f="medium",enableActiveStateStyles:x=c.enableActiveStateStyles,typography:b,isLink:w=!1,textWrap:C,isPills:E,isActive:S,startSlot:W,endSlot:k}=t,D=e[`typography-${((e,t,o)=>{if(o){const e=o.replace(/^\D+/g,"");return t?`semibold${e}`:o}switch(e){case"xsmall":return t?"semibold14px":"regular14px";case"small":case"medium":return t?"semibold16px":"regular16px";default:return""}})(f,d||E,b||void 0)}`],O=(0,n.useContext)(i.ControlGroupContext),{isInButtonGroup:B,isGroupPrimary:N}=(0,n.useContext)(s);return r(u,e.lightButton,w&&e.link,S&&e.active,d&&e.selected,(0,a.isIconOnly)(p,v)&&e.noContent,!!W&&e.withStartSlot,(m||!!k)&&e.withEndSlot,o&&e.withGrouped,h&&e[h],e[N?"primary":y],e[N?"gray":g],e[f],D,!x&&e.disableActiveStateStyles,O.isGrouped&&e.grouped,C&&e.wrap,B&&e.disableActiveOnTouch,E&&e.pills)}},66860:(e,t,o)=>{"use strict";o.d(t,{LightButtonContent:()=>p});var n=o(50959),r=o(97754),l=o(34094),a=o(27011),i=o(9745),s=o(2948),c=o(1538),u=o.n(c);const d=e=>n.createElement(i.Icon,{className:r(u().caret,e&&u().activeCaret),icon:s});function p(e){
|
||||
const{showCaret:t,iconOnly:o,ellipsis:i=!0,textWrap:s,tooltipText:c,children:p,endSlot:m,startSlot:h,isActiveCaret:v}=e;[m,t].filter((e=>!!e));return n.createElement(n.Fragment,null,h&&n.createElement("span",{className:r(u().slot,u().startSlot)},h),!(0,a.isIconOnly)(p,o)&&n.createElement("span",{className:r(u().content,!s&&u().nowrap,"apply-overflow-tooltip","apply-overflow-tooltip--check-children-recursively","apply-overflow-tooltip--allow-text"),"data-overflow-tooltip-text":c??(0,l.getTextForTooltip)(p)},s||i?n.createElement(n.Fragment,null,n.createElement("span",{className:r(!s&&i&&u().ellipsisContainer,s&&u().textWrapContainer,s&&i&&u().textWrapWithEllipsis)},p),n.createElement("span",{className:u().visuallyHidden,"aria-hidden":!0},p)):n.createElement(n.Fragment,null,p,n.createElement("span",{className:u().visuallyHidden,"aria-hidden":!0},p))),m&&n.createElement("span",{className:r(u().slot,u().endSlot)},m),t&&d(v))}},15893:(e,t,o)=>{"use strict";o.d(t,{LightButton:()=>d});var n=o(50959),r=o(86332),l=o(9038),a=o(66860),i=o(1538),s=o.n(i),c=o(88317),u=o.n(c);function d(e){const{isGrouped:t}=n.useContext(r.ControlGroupContext),{reference:o,className:i,isSelected:c,children:d,iconOnly:p,ellipsis:m,showCaret:h,forceDirection:v,endSlot:g,startSlot:y,color:f,variant:x,size:b,enableActiveStateStyles:w,typography:C,textWrap:E=!1,maxLines:S,style:W={},isPills:k,isActive:D,tooltipText:O,role:B,...N}=e,I=E?S??2:1,P=I>0?{...W,"--ui-lib-light-button-content-max-lines":I}:W;return n.createElement("button",{...N,className:(0,l.useLightButtonClasses)({...u(),...s()},{className:i,isSelected:c,children:d,iconOnly:p,showCaret:h,forceDirection:v,endSlot:g,startSlot:y,color:f,variant:x,size:b,enableActiveStateStyles:w,typography:C,textWrap:E,isPills:k,isActive:D},t),ref:o,style:P,role:B},n.createElement(a.LightButtonContent,{showCaret:h,isActiveCaret:h&&(k||D||c),iconOnly:p,ellipsis:m,textWrap:E,tooltipText:O,endSlot:g,startSlot:y},d))}},86332:(e,t,o)=>{"use strict";o.d(t,{ControlGroupContext:()=>n});const n=o(50959).createContext({isGrouped:!1,cellState:{isTop:!0,isRight:!0,isBottom:!0,isLeft:!0}})},17946:(e,t,o)=>{"use strict";o.d(t,{CustomBehaviourContext:()=>n});const n=(0,o(50959).createContext)({enableActiveStateStyles:!0});n.displayName="CustomBehaviourContext"},34094:(e,t,o)=>{"use strict";o.d(t,{getTextForTooltip:()=>a});var n=o(50959);const r=e=>(0,n.isValidElement)(e)&&Boolean(e.props.children),l=e=>null==e||"boolean"==typeof e||"{}"===JSON.stringify(e)?"":e.toString()+" ",a=e=>Array.isArray(e)||(0,n.isValidElement)(e)?n.Children.toArray(e).reduce(((e,t)=>{let o="";return o=(0,n.isValidElement)(t)&&r(t)?a(t.props.children):(0,n.isValidElement)(t)&&!r(t)?"":l(t),e.concat(o)}),"").trim():l(e)},37558:(e,t,o)=>{"use strict";o.d(t,{DrawerContext:()=>a,DrawerManager:()=>l});var n=o(50959),r=o(99054);class l extends n.PureComponent{constructor(e){super(e),this._isBodyFixed=!1,this._addDrawer=e=>{this.setState((t=>({stack:[...t.stack,e]})))},this._removeDrawer=e=>{this.setState((t=>({stack:t.stack.filter((t=>t!==e))})))},
|
||||
this.state={stack:[]}}componentDidUpdate(e,t){!t.stack.length&&this.state.stack.length&&((0,r.setFixedBodyState)(!0),this._isBodyFixed=!0),t.stack.length&&!this.state.stack.length&&this._isBodyFixed&&((0,r.setFixedBodyState)(!1),this._isBodyFixed=!1)}componentWillUnmount(){this.state.stack.length&&this._isBodyFixed&&(0,r.setFixedBodyState)(!1)}render(){return n.createElement(a.Provider,{value:{addDrawer:this._addDrawer,removeDrawer:this._removeDrawer,currentDrawer:this.state.stack.length?this.state.stack[this.state.stack.length-1]:null}},this.props.children)}}const a=n.createContext(null)},41590:(e,t,o)=>{"use strict";o.d(t,{Drawer:()=>m});var n=o(50959),r=o(50151),l=o(97754),a=o(92184),i=o(42842),s=o(37558),c=o(29197),u=o(86656),d=o(36718);var p;function m(e){const{position:t="Bottom",onClose:o,children:u,reference:p,className:m,theme:v=d}=e,g=(0,r.ensureNotNull)((0,n.useContext)(s.DrawerContext)),[y]=(0,n.useState)((()=>(0,a.randomHash)())),f=(0,n.useRef)(null),x=(0,n.useContext)(c.CloseDelegateContext);return(0,n.useLayoutEffect)((()=>((0,r.ensureNotNull)(f.current).focus({preventScroll:!0}),x.subscribe(g,o),g.addDrawer(y),()=>{g.removeDrawer(y),x.unsubscribe(g,o)})),[]),n.createElement(i.Portal,null,n.createElement("div",{ref:p,className:l(d.wrap,d[`position${t}`])},y===g.currentDrawer&&n.createElement("div",{className:d.backdrop,onClick:o}),n.createElement(h,{className:l(v.drawer,d[`position${t}`],m),ref:f,"data-name":e["data-name"]},u)))}!function(e){e.Left="Left",e.Bottom="Bottom"}(p||(p={}));const h=(0,n.forwardRef)(((e,t)=>{const{className:o,...r}=e;return n.createElement(u.TouchScrollContainer,{className:l(d.drawer,o),tabIndex:-1,ref:t,...r})}))},20520:(e,t,o)=>{"use strict";o.d(t,{PopupMenu:()=>p});var n=o(50959),r=o(32227),l=o(88987),a=o(42842),i=o(27317),s=o(29197);const c=n.createContext(void 0);var u=o(36383);const d=n.createContext({setMenuMaxWidth:!1});function p(e){const{controller:t,children:o,isOpened:p,closeOnClickOutside:m=!0,doNotCloseOn:h,onClickOutside:v,onClose:g,onKeyboardClose:y,"data-name":f="popup-menu-container",...x}=e,b=(0,n.useContext)(s.CloseDelegateContext),w=n.useContext(d),C=(0,n.useContext)(c),E=(0,u.useOutsideEvent)({handler:function(e){v&&v(e);if(!m)return;const t=(0,l.default)(h)?h():null==h?[]:[h];if(t.length>0&&e.target instanceof Node)for(const o of t){const t=r.findDOMNode(o);if(t instanceof Node&&t.contains(e.target))return}g()},mouseDown:!0,touchStart:!0});return p?n.createElement(a.Portal,{top:"0",left:"0",right:"0",bottom:"0",pointerEvents:"none"},n.createElement("span",{ref:E,style:{pointerEvents:"auto"}},n.createElement(i.Menu,{...x,onClose:g,onKeyboardClose:y,onScroll:function(t){const{onScroll:o}=e;o&&o(t)},customCloseDelegate:b,customRemeasureDelegate:C,ref:t,"data-name":f,limitMaxWidth:w.setMenuMaxWidth,"data-tooltip-show-on-focus":"true"},o))):null}},86656:(e,t,o)=>{"use strict";o.d(t,{TouchScrollContainer:()=>c});var n=o(50959),r=o(59142),l=o(50151),a=o(49483);const i=CSS.supports("overscroll-behavior","none");let s=0;const c=(0,n.forwardRef)(((e,t)=>{
|
||||
const{children:o,...l}=e,c=(0,n.useRef)(null);return(0,n.useImperativeHandle)(t,(()=>c.current)),(0,n.useLayoutEffect)((()=>{if(a.CheckMobile.iOS())return s++,null!==c.current&&(i?1===s&&(document.body.style.overscrollBehavior="none"):(0,r.disableBodyScroll)(c.current,{allowTouchMove:u(c)})),()=>{s--,null!==c.current&&(i?0===s&&(document.body.style.overscrollBehavior=""):(0,r.enableBodyScroll)(c.current))}}),[]),n.createElement("div",{ref:c,...l},o)}));function u(e){return t=>{const o=(0,l.ensureNotNull)(e.current),n=document.activeElement;return!o.contains(t)||null!==n&&o.contains(n)&&n.contains(t)}}},59617:e=>{e.exports={"css-value-small-size":"18px","css-value-medium-size":"22px","css-value-large-size":"28px","css-value-border-radius-small-size":"9px","css-value-border-radius-medium-size":"11px","css-value-border-radius-large-size":"8px","css-value-vertical-padding-size":"16px","css-value-horizontal-padding-size":"16px","css-value-vertical-padding-size-first":"11px","css-value-vertical-padding-size-last":"10px",popupWidget:"popupWidget-Wu2pIo3E",large:"large-Wu2pIo3E",mobile:"mobile-Wu2pIo3E",desc:"desc-Wu2pIo3E",icon:"icon-Wu2pIo3E",small:"small-Wu2pIo3E",medium:"medium-Wu2pIo3E",title:"title-Wu2pIo3E",text:"text-Wu2pIo3E",item:"item-Wu2pIo3E",boldItem:"boldItem-Wu2pIo3E",action:"action-Wu2pIo3E",actionBtn:"actionBtn-Wu2pIo3E",additionalWidget:"additionalWidget-Wu2pIo3E"}},12048:(e,t,o)=>{"use strict";o.r(t),o.d(t,{render:()=>S});var n=o(50959),r=o(32227),l=o(20520),a=o(90692),i=o(41590),s=o(37558),c=o(92184),u=o(97754),d=o(50151),p=o(9745),m=o(15893),h=o(77975),v=o(37265),g=o(58994),y=o(59617);const f=new WeakMap,x=new WeakMap;function b(e){const t=(0,h.useWatchedValueReadonly)({watchedValue:e.info});if(null===t)return null;const o=t.map((t=>{const{title:o,titleColor:r,icon:l,iconClassName:a,html:i,action:s,size:h,solutionId:b}=t;f.has(t)||f.set(t,(0,c.randomHash)());let w=[];return void 0!==e.additionalWidgets&&(w=e.additionalWidgets.map((t=>(x.has(t)||x.set(t,(0,c.randomHash)()),t.renderer((0,d.ensureDefined)(x.get(t)),y.additionalWidget,e.onClose))))),n.createElement("div",{key:f.get(t),className:u(y.popupWidget,y[h],e.isMobile&&y.mobile)},n.createElement(p.Icon,{className:u(y.icon,a,g[h],y[h]),style:{"--custom-status-color":r||void 0},icon:l||void 0}),n.createElement("div",{className:y.desc},n.createElement("span",{style:{color:r||void 0},className:u(y.title,y[h])},n.createElement("span",null,o),!1),i&&n.createElement("p",{className:u(y.text,y[h])},i.map(((e,t)=>{let o,r;return(0,v.isObject)(e)?(o=e.text,r=e.bold):o=e,n.createElement("span",{key:`html_item_${t}`,className:u(y.item,r&&y.boldItem),dangerouslySetInnerHTML:{__html:o}})}))),s&&n.createElement(m.LightButton,{className:y.actionBtn,onClick:()=>{e.onClose(),s?.onClick()},size:"xsmall",tooltipText:s.tooltip},s.text),w))}));return n.createElement(n.Fragment,null,o)}const w=new WeakMap;function C(e){const{statusWidgetInfos:t,matchMediaRule:o="(min-width: 441px)"}=e;return n.createElement(s.DrawerManager,null,n.createElement(a.MatchMedia,{rule:o
|
||||
},(o=>o?n.createElement(l.PopupMenu,{isOpened:!0,onClose:e.onClose,position:e.position,doNotCloseOn:e.rendererButton},n.createElement(E,{widgetInfo:t,onClose:e.onClose,isMobile:!o})):n.createElement(i.Drawer,{onClose:e.onClose,position:"Bottom"},n.createElement(E,{widgetInfo:t,onClose:e.onClose,isMobile:!o})))))}function E(e){return n.createElement(n.Fragment,null,e.widgetInfo.filter((e=>e.visible.value())).map((t=>(w.has(t)||w.set(t,(0,c.randomHash)()),n.createElement(b,{key:w.get(t),info:t.model.fullInfo(),onClose:e.onClose,additionalWidgets:t.additionalWidgets,isMobile:e.isMobile})))))}function S(e){const{opened:t,container:o,...l}=e;t?r.render(n.createElement(C,{...l}),o):r.unmountComponentAtNode(o)}},2948:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M3.92 7.83 9 12.29l5.08-4.46-1-1.13L9 10.29l-4.09-3.6-.99 1.14Z"/></svg>'},55698:(e,t,o)=>{"use strict";o.d(t,{nanoid:()=>n});let n=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce(((e,t)=>e+=(t&=63)<36?t.toString(36):t<62?(t-26).toString(36).toUpperCase():t>62?"-":"_"),"")}}]);
|
||||
const{children:o,...l}=e,c=(0,n.useRef)(null);return(0,n.useImperativeHandle)(t,(()=>c.current)),(0,n.useLayoutEffect)((()=>{if(a.CheckMobile.iOS())return s++,null!==c.current&&(i?1===s&&(document.body.style.overscrollBehavior="none"):(0,r.disableBodyScroll)(c.current,{allowTouchMove:u(c)})),()=>{s--,null!==c.current&&(i?0===s&&(document.body.style.overscrollBehavior=""):(0,r.enableBodyScroll)(c.current))}}),[]),n.createElement("div",{ref:c,...l},o)}));function u(e){return t=>{const o=(0,l.ensureNotNull)(e.current),n=document.activeElement;return!o.contains(t)||null!==n&&o.contains(n)&&n.contains(t)}}},59617:e=>{e.exports={"css-value-small-size":"18px","css-value-medium-size":"22px","css-value-large-size":"28px","css-value-border-radius-small-size":"9px","css-value-border-radius-medium-size":"11px","css-value-border-radius-large-size":"8px","css-value-vertical-padding-size":"16px","css-value-horizontal-padding-size":"16px","css-value-vertical-padding-size-first":"11px","css-value-vertical-padding-size-last":"10px",popupWidget:"popupWidget-Wu2pIo3E",large:"large-Wu2pIo3E",mobile:"mobile-Wu2pIo3E",desc:"desc-Wu2pIo3E",icon:"icon-Wu2pIo3E",small:"small-Wu2pIo3E",medium:"medium-Wu2pIo3E",title:"title-Wu2pIo3E",text:"text-Wu2pIo3E",item:"item-Wu2pIo3E",boldItem:"boldItem-Wu2pIo3E",action:"action-Wu2pIo3E",actionBtn:"actionBtn-Wu2pIo3E",additionalWidget:"additionalWidget-Wu2pIo3E"}},12048:(e,t,o)=>{"use strict";o.r(t),o.d(t,{render:()=>S});var n=o(50959),r=o(32227),l=o(20520),a=o(90692),i=o(41590),s=o(37558),c=o(92184),u=o(97754),d=o(50151),p=o(9745),m=o(15893),h=o(77975),v=o(37265),g=o(58994),y=o(59617);const f=new WeakMap,x=new WeakMap;function b(e){const t=(0,h.useWatchedValueReadonly)({watchedValue:e.info});if(null===t)return null;const o=t.map((t=>{const{title:o,titleColor:r,icon:l,iconClassName:a,html:i,action:s,size:h,solutionId:b}=t;f.has(t)||f.set(t,(0,c.randomHash)());let w=[];return void 0!==e.additionalWidgets&&(w=e.additionalWidgets.map((t=>(x.has(t)||x.set(t,(0,c.randomHash)()),t.renderer((0,d.ensureDefined)(x.get(t)),y.additionalWidget,e.onClose))))),n.createElement("div",{key:f.get(t),className:u(y.popupWidget,y[h],e.isMobile&&y.mobile),"data-test-id":t.dataTestId},n.createElement(p.Icon,{className:u(y.icon,a,g[h],y[h]),style:{"--custom-status-color":r||void 0},icon:l||void 0}),n.createElement("div",{className:y.desc},n.createElement("span",{style:{color:r||void 0},className:u(y.title,y[h])},n.createElement("span",null,o),!1),i&&n.createElement("p",{className:u(y.text,y[h])},i.map(((e,t)=>{let o,r;return(0,v.isObject)(e)?(o=e.text,r=e.bold):o=e,n.createElement("span",{key:`html_item_${t}`,className:u(y.item,r&&y.boldItem),dangerouslySetInnerHTML:{__html:o}})}))),s&&n.createElement(m.LightButton,{className:y.actionBtn,onClick:()=>{e.onClose(),s?.onClick()},size:"xsmall",tooltipText:s.tooltip},s.text),w))}));return n.createElement(n.Fragment,null,o)}const w=new WeakMap;function C(e){const{statusWidgetInfos:t,matchMediaRule:o="(min-width: 441px)"}=e
|
||||
;return n.createElement(s.DrawerManager,null,n.createElement(a.MatchMedia,{rule:o},(o=>o?n.createElement(l.PopupMenu,{isOpened:!0,onClose:e.onClose,position:e.position,doNotCloseOn:e.rendererButton},n.createElement(E,{widgetInfo:t,onClose:e.onClose,isMobile:!o})):n.createElement(i.Drawer,{onClose:e.onClose,position:"Bottom"},n.createElement(E,{widgetInfo:t,onClose:e.onClose,isMobile:!o})))))}function E(e){return n.createElement(n.Fragment,null,e.widgetInfo.filter((e=>e.visible.value())).map((t=>(w.has(t)||w.set(t,(0,c.randomHash)()),n.createElement(b,{key:w.get(t),info:t.model.fullInfo(),onClose:e.onClose,additionalWidgets:t.additionalWidgets,isMobile:e.isMobile})))))}function S(e){const{opened:t,container:o,...l}=e;t?r.render(n.createElement(C,{...l}),o):r.unmountComponentAtNode(o)}},2948:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" width="18" height="18"><path fill="currentColor" d="M3.92 7.83 9 12.29l5.08-4.46-1-1.13L9 10.29l-4.09-3.6-.99 1.14Z"/></svg>'},55698:(e,t,o)=>{"use strict";o.d(t,{nanoid:()=>n});let n=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce(((e,t)=>e+=(t&=63)<36?t.toString(36):t<62?(t-26).toString(36).toUpperCase():t>62?"-":"_"),"")}}]);
|
||||
@@ -0,0 +1,33 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[9754,1754,9685,2544],{62435:e=>{e.exports={wrap:"wrap-HAxAr6QG",image:"image-HAxAr6QG",text:"text-HAxAr6QG"}},21466:e=>{e.exports={section:"section-Og4Rg_SK",heading:"heading-Og4Rg_SK"}},94587:e=>{e.exports={item:"item-nuuDM7vP",normal:"normal-nuuDM7vP",big:"big-nuuDM7vP",selected:"selected-nuuDM7vP",contentCell:"contentCell-nuuDM7vP",content:"content-nuuDM7vP",favourite:"favourite-nuuDM7vP",favoriteActionCell:"favoriteActionCell-nuuDM7vP",iconCell:"iconCell-nuuDM7vP",icon:"icon-nuuDM7vP",checkboxInput:"checkboxInput-nuuDM7vP",label:"label-nuuDM7vP"}},27027:e=>{e.exports={dialog:"dialog-UAy2ZKyS",wrap:"wrap-UAy2ZKyS",empty:"empty-UAy2ZKyS",image:"image-UAy2ZKyS",emptyState:"emptyState-UAy2ZKyS"}},67797:e=>{e.exports={menuWrap:"menuWrap-Kq3ruQo8",isMeasuring:"isMeasuring-Kq3ruQo8",scrollWrap:"scrollWrap-Kq3ruQo8",momentumBased:"momentumBased-Kq3ruQo8",menuBox:"menuBox-Kq3ruQo8",isHidden:"isHidden-Kq3ruQo8"}},43010:(e,t,o)=>{"use strict";o.d(t,{useIsomorphicLayoutEffect:()=>i});var n=o(50959);function i(e,t){("undefined"==typeof window?n.useEffect:n.useLayoutEffect)(e,t)}},36383:(e,t,o)=>{"use strict";o.d(t,{useOutsideEvent:()=>s});var n=o(50959),i=o(43010),l=o(27267);function s(e){const{click:t,mouseDown:o,touchEnd:s,touchStart:a,handler:r,reference:c}=e,h=(0,n.useRef)(null),d=(0,n.useRef)("undefined"==typeof window?0:new window.CustomEvent("timestamp").timeStamp);return(0,i.useIsomorphicLayoutEffect)((()=>{const e={click:t,mouseDown:o,touchEnd:s,touchStart:a},n=c?c.current:h.current;return(0,l.addOutsideEventListener)(d.current,n,r,document,e)}),[t,o,s,a,r]),c||h}},9745:(e,t,o)=>{"use strict";o.d(t,{Icon:()=>i});var n=o(50959);const i=n.forwardRef(((e,t)=>{const{icon:o="",title:i,ariaLabel:l,ariaLabelledby:s,ariaHidden:a,...r}=e,c=!!(i||l||s);return n.createElement("span",{role:"img",...r,ref:t,"aria-label":l,"aria-labelledby":s,"aria-hidden":a||!c,title:i,dangerouslySetInnerHTML:{__html:o}})}))},83021:(e,t,o)=>{"use strict";o.d(t,{SubmenuContext:()=>i,SubmenuHandler:()=>l});var n=o(50959);const i=n.createContext(null);function l(e){const[t,o]=(0,n.useState)(null),l=(0,n.useRef)(null),s=(0,n.useRef)(new Map);return(0,n.useEffect)((()=>()=>{null!==l.current&&clearTimeout(l.current)}),[]),n.createElement(i.Provider,{value:{current:t,setCurrent:function(e){null!==l.current&&(clearTimeout(l.current),l.current=null);null===t?o(e):l.current=setTimeout((()=>{l.current=null,o(e)}),100)},registerSubmenu:function(e,t){return s.current.set(e,t),()=>{s.current.delete(e)}},isSubmenuNode:function(e){return Array.from(s.current.values()).some((t=>t(e)))}}},e.children)}},99663:(e,t,o)=>{"use strict";o.d(t,{Slot:()=>i,SlotContext:()=>l});var n=o(50959);class i extends n.Component{shouldComponentUpdate(){return!1}render(){return n.createElement("div",{style:{position:"fixed",zIndex:150,left:0,top:0},ref:this.props.reference})}}const l=n.createContext(null)},67961:(e,t,o)=>{"use strict";o.d(t,{OverlapManager:()=>s,getRootOverlapManager:()=>r})
|
||||
;var n=o(50151),i=o(34811);class l{constructor(){this._storage=[]}add(e){this._storage.push(e)}remove(e){this._storage=this._storage.filter((t=>e!==t))}has(e){return this._storage.includes(e)}getItems(){return this._storage}}class s{constructor(e=document){this._storage=new l,this._windows=new Map,this._index=0,this._document=e,this._container=e.createDocumentFragment()}setContainer(e){const t=this._container,o=null===e?this._document.createDocumentFragment():e;!function(e,t){Array.from(e.childNodes).forEach((e=>{e.nodeType===Node.ELEMENT_NODE&&t.appendChild(e)}))}(t,o),this._container=o}registerWindow(e){this._storage.has(e)||this._storage.add(e)}ensureWindow(e,t={position:"fixed",direction:"normal"}){const o=this._windows.get(e);if(void 0!==o)return o;this.registerWindow(e);const n=this._document.createElement("div");if(n.style.position=t.position,n.style.zIndex=this._index.toString(),n.dataset.id=e,void 0!==t.index){const e=this._container.childNodes.length;if(t.index>=e)this._container.appendChild(n);else if(t.index<=0)this._container.insertBefore(n,this._container.firstChild);else{const e=this._container.childNodes[t.index];this._container.insertBefore(n,e)}}else"reverse"===t.direction?this._container.insertBefore(n,this._container.firstChild):this._container.appendChild(n);return this._windows.set(e,n),++this._index,n}unregisterWindow(e){this._storage.remove(e);const t=this._windows.get(e);void 0!==t&&(null!==t.parentElement&&t.parentElement.removeChild(t),this._windows.delete(e))}getZindex(e){const t=this.ensureWindow(e);return parseInt(t.style.zIndex||"0")}moveLastWindowToTop(){const e=this._storage.getItems(),t=e[e.length-1];t&&this.moveToTop(t)}moveToTop(e){if(this.getZindex(e)!==this._index){const t=this.ensureWindow(e);this._windows.forEach(((e,o)=>{e.hasAttribute(i.FOCUS_TRAP_DATA_ATTRIBUTE)&&e.setAttribute(i.FOCUS_TRAP_DATA_ATTRIBUTE,e===t?"true":"false")})),t.style.zIndex=(++this._index).toString()}}removeWindow(e){this.unregisterWindow(e)}}const a=new WeakMap;function r(e=document){const t=e.getElementById("overlap-manager-root");if(null!==t)return(0,n.ensureDefined)(a.get(t));{const t=new s(e),o=function(e){const t=e.createElement("div");return t.style.position="absolute",t.style.zIndex=150..toString(),t.style.top="0px",t.style.left="0px",t.id="overlap-manager-root",t}(e);return a.set(o,t),t.setContainer(o),e.body.appendChild(o),t}}var c;!function(e){e[e.BaseZindex=150]="BaseZindex"}(c||(c={}))},99054:(e,t,o)=>{"use strict";o.d(t,{setFixedBodyState:()=>c});const n=(()=>{let e;return()=>{if(void 0===e){const t=document.createElement("div"),o=t.style;o.visibility="hidden",o.width="100px",o.msOverflowStyle="scrollbar",document.body.appendChild(t);const n=t.offsetWidth;t.style.overflow="scroll";const i=document.createElement("div");i.style.width="100%",t.appendChild(i);const l=i.offsetWidth;t.parentNode?.removeChild(t),e=n-l}return e}})();function i(e,t,o){null!==e&&e.style.setProperty(t,o)}function l(e,t){return getComputedStyle(e,null).getPropertyValue(t)}function s(e,t){return parseInt(l(e,t))}
|
||||
let a=0,r=!1;function c(e){const{body:t}=document,o=t.querySelector(".widgetbar-wrap");if(e&&1==++a){const e=l(t,"overflow"),a=s(t,"padding-right");"hidden"!==e.toLowerCase()&&t.scrollHeight>t.offsetHeight&&(i(o,"right",`${n()}px`),t.style.paddingRight=`${a+n()}px`,r=!0),t.classList.add("i-no-scroll")}else if(!e&&a>0&&0==--a&&(t.classList.remove("i-no-scroll"),r)){i(o,"right","0px");let e=0;0,t.scrollHeight<=t.clientHeight&&(e-=n()),t.style.paddingRight=(e<0?0:e)+"px",r=!1}}},89324:(e,t,o)=>{"use strict";o.r(t),o.d(t,{Components:()=>h,showDefaultSearchDialog:()=>c,showSymbolSearchItemsDialog:()=>s.showSymbolSearchItemsDialog});var n=o(82992),i=(o(32563),o(79652)),l=o(94664),s=o(1861),a=o(64147),r=o(84015);o(56570),o(49483);!(0,r.isOnMobileAppPage)("any")&&window.matchMedia("(min-width: 602px) and (min-height: 445px)").matches;function c(e){new a.WatchedValue({});const t=(0,l.getSymbolSearchCompleteOverrideFunction)(),{defaultValue:o,showSpreadActions:r,source:c,onSearchComplete:h,trackResultsOptions:d,...u}=e,v={...u,showSpreadActions:r??(0,i.canShowSpreadActions)(),onSymbolFiltersParamsChange:void 0,onSearchComplete:(e,o)=>{t(e[0].symbol,e[0].result).then((e=>{n.linking.setSymbolAndLogInitiator(e.symbol,"symbol search"),h?.(e.symbol)}))},onEmptyResults:void 0};(0,s.showSymbolSearchItemsDialog)({...v,defaultValue:o})}const h={SymbolSearchWatchlistDialogContentItem:null,SymbolSearchWatchlistDialog:null}},1861:(e,t,o)=>{"use strict";o.d(t,{showSymbolSearchItemsDialog:()=>r});var n=o(50959),i=o(50655),l=o(51826),s=o(73280),a=o(87896);function r(e){const{symbolTypeFilter:t,initialMode:o="symbolSearch",autofocus:r=!0,defaultValue:c,showSpreadActions:h,selectSearchOnInit:d,onSearchComplete:u,dialogTitle:v,placeholder:g,fullscreen:m,initialScreen:p,wrapper:w,dialog:f,contentItem:b,onClose:y,onOpen:T,footer:S,symbolTypes:x,searchInput:L,emptyState:C,hideMarkedListFlag:M,dialogWidth:A="auto",manager:_,shouldReturnFocus:z,onSymbolFiltersParamsChange:E,onEmptyResults:k,customSearchSymbols:H,enableOptionsChain:P,searchInitiationPoint:R}=e;if(l.dialogsOpenerManager.isOpened("SymbolSearch")||l.dialogsOpenerManager.isOpened("ChangeIntervalDialog"))return;const I=document.createElement("div"),D=n.createElement(i.SlotContext.Provider,{value:_??null},n.createElement(s.SymbolSearchItemsDialog,{symbolTypeFilter:t,onClose:V,initialMode:o,defaultValue:c,showSpreadActions:h,hideMarkedListFlag:M,selectSearchOnInit:d,onSearchComplete:u,dialogTitle:v,placeholder:g,fullscreen:m,initialScreen:p,wrapper:w,dialog:f,contentItem:b,footer:S,symbolTypes:x,searchInput:L,emptyState:C,autofocus:r,dialogWidth:A,shouldReturnFocus:z,onSymbolFiltersParamsChange:E,onEmptyResults:k,customSearchSymbols:H,enableOptionsChain:P,searchInitiationPoint:R})),F=(0,a.createReactRoot)(D,I);function V(){F.unmount(),l.dialogsOpenerManager.setAsClosed("SymbolSearch"),y&&y()}return l.dialogsOpenerManager.setAsOpened("SymbolSearch"),T&&T(),{close:V}}},46350:(e,t,o)=>{"use strict";o.r(t),o.d(t,{GlobalSearchDialogRenderer:()=>Qe})
|
||||
;var n=o(50959),i=o(77788),l=o(29280),s=o(90484),a=o(11542),r=o(56840),c=o(10087),h=o(37265),d=o(69654),u=o(97754),v=o.n(u),g=o(9745),m=o(24633),p=o(45345),w=o(67562),f=o(66619),b=o(62435);function y(e){const{text:t,showIcon:o=!0,className:i}=e,l=p.watchedTheme.value()===m.StdTheme.Dark?f:w;return n.createElement("div",{className:u(b.wrap,i)},o&&n.createElement(g.Icon,{icon:l,className:b.image}),n.createElement("span",{className:b.text},t))}var T=o(79418),S=o(55883),x=o(40173),L=o(5304),C=o(10772),M=o(74670),A=o(94587);const _=(0,x.mergeThemes)(L.DEFAUL_CONTEXT_MENU_ITEM_THEME,A);function z(e){const{action:t,onExecute:o}=e,[i,l]=(0,M.useActiveDescendant)(null);return n.createElement(C.ContextMenuAction,{theme:_,onShowSubMenu:S.default,isSubMenuOpened:!1,checkboxInput:!0,reference:i,selected:l,action:t,onExecute:()=>o(t),className:v()("apply-overflow-tooltip","apply-overflow-tooltip-focus","apply-overflow-tooltip--direction_y","apply-overflow-tooltip--check-children-recursively"),"data-overflow-tooltip-text":t.getLabel()})}var E=o(21466);function k(e){const{heading:t,items:o,onExecute:i,getActionIndex:l}=e;return n.createElement("table",{className:E.section},n.createElement("tbody",null,n.createElement("tr",null,n.createElement("td",{className:E.heading},t)),o.map((e=>n.createElement(z,{key:e.id,action:e,onExecute:i,index:l(e)})))))}var H=o(27027);const P=[{name:"drawingsActions",label:a.t(null,void 0,o(74385))},{name:"functionActions",label:a.t(null,void 0,o(83576))},{name:"settingsActions",label:a.t(null,void 0,o(32514))}];function R(e){const{dialogId:t,items:i,onClose:l,shouldReturnFocus:u}=e,[v,g]=(0,n.useState)(""),[m,p]=(0,n.useState)([]),w=(0,n.useRef)(null),f=(0,n.useRef)(null),b=(0,n.useRef)(null);(0,n.useEffect)((()=>{w.current?.focus()}),[]),(0,n.useEffect)((()=>{const e=w.current;if(e)return e.addEventListener("input",I),I(),()=>{e&&e.removeEventListener("input",I)}}),[]);const S=(0,n.useCallback)((0,s.default)((e=>{}),1e3),[]),x=(0,n.useCallback)((0,s.default)(l,200),[]);(0,n.useEffect)((()=>()=>{S.flush(),x.cancel()}),[]);const L=(0,n.useMemo)((()=>{const e=new Set(r.getJSON("GlobalSearchDialog.recent",[])),t=[];for(const o of e){const e=i.find((e=>e.getState().id===o));e&&t.push(e)}return t.reverse(),t}),[]),C=(0,n.useMemo)((()=>P.reduce(((e,t)=>(e.set(t.name,m.filter((e=>e.getState().category===t.name))),e)),new Map)),[m]),{handleKeyDown:M,handleForceFocus:A,handleSearchRefBlur:_,onDialogClick:z,resetFocusState:E}=(0,c.useSearchDialogKeyboardNavigation)({dialogRef:f,searchInputRef:w,contentContainerRef:b,getNextFocusedItemIndex:function(e,t){const o=null===e?1===t?-1:0:e;for(let e=1;e<=m.length;e++){const n=(m.length+e*t+o)%m.length;if(!m[n].isDisabled())return n}return null},isNavigationDisabled:!m.length,scrollToFocusedItem:function(e){e?.scrollIntoView({block:"nearest"})},onEscapeClick:l,getElementIdByIndex:function(e,t){let o=m[e].id;null!=t&&(o+="-favorite");return CSS.escape(o)}});return n.createElement(T.AdaptivePopupDialog,{ref:f,dataName:t,title:a.t(null,void 0,o(79354)),onClose:l,
|
||||
onClickOutside:l,shouldReturnFocus:u,render:()=>n.createElement(n.Fragment,null,n.createElement(d.DialogSearch,{reference:w,onBlur:_}),n.createElement("div",{className:H.wrap,ref:b},v?n.createElement(n.Fragment,null,m.length?P.map((e=>{const t=C.get(e.name);return t&&t.length?n.createElement(k,{key:e.name,heading:e.label,items:t,onExecute:R,getActionIndex:F}):null})):n.createElement(y,{text:a.t(null,void 0,o(47202)),className:H.emptyState})):n.createElement(n.Fragment,null,Boolean(m.length)?n.createElement(k,{heading:a.t(null,void 0,o(76753)),items:m,onExecute:R,getActionIndex:F}):n.createElement(y,{text:a.t(null,void 0,o(27463)),showIcon:!1,className:H.emptyState})))),onKeyDown:M,className:H.dialog,onForceFocus:A,onClick:z,isOpened:!0});function R(e){const t=new Set(r.getJSON("GlobalSearchDialog.recent",[])),o=e.getState().id;t.has(o)&&t.delete(o),t.add(o),r.setJSON("GlobalSearchDialog.recent",Array.from(t).slice(-10)),e.getState().checkable?x():l()}function I(){E();const e=w.current?w.current.value.toLocaleLowerCase().trim():"";if(g(e),e){const t=i.filter((t=>D(t).includes(e)||function(e,t){const{aliases:o}=t.getState();if(o)return o.some((t=>t.toLowerCase().includes(e)));return!1}(e,t))).sort((t=>D(t)===e?-1:0));p(t),t.length||S(e)}else p(L)}function D(e){const{label:t}=e.getState();return(0,h.isString)(t)?t.toLocaleLowerCase():""}function F(e){return m.findIndex((t=>t.id===e.id))}}var I,D=o(68335),F=o(82992),V=o(86235),Z=o(34585),O=o(56570),B=o(29023);!function(e){e.Drawings="drawingsActions",e.Function="functionActions",e.Settings="settingsActions"}(I||(I={}));class W extends B.Action{constructor({id:e,category:t,favourite:o,onFavouriteClick:n,hotkeyGroup:i,hotkeyHash:l,aliases:s,optionsLoader:a,onStartListening:r,...c}){super({actionId:"UnknownAction",options:{...c,doNotCloseOnClick:!0},id:e,optionsLoader:a,onStartListening:r}),this.execute=()=>{super.execute()},this.getState=()=>({...super.getState(),id:this._searchOptions.id,category:this._searchOptions.category,favourite:this._searchOptions.favourite,onFavouriteClick:this._onFavouriteClick,aliases:this._searchOptions.aliases}),this.update=e=>{this._searchOptions=Object.assign(this._searchOptions,e),super.update(e)},this._onFavouriteClick=e=>{this._searchOptions.onFavouriteClick&&(this.update({favourite:!this._searchOptions.favourite}),this._searchOptions.onFavouriteClick(e))},this._searchOptions={id:e,category:t,favourite:o,onFavouriteClick:n,aliases:s}}}var N,K=o(45126),U=o(49483),G=o(19475);!function(e){e.None="all",e.Following="following",e.Private="private"}(N||(N={}));var q=o(84425),j=o(42989),$=o(23076),Q=o(85662),J=o(16792),Y=o(3615),X=o(58519);function ee(e){const t=e.match(/^(\d+).(\d+).(\d+)/);if(!t)return null;const[,o,n,i]=t;return[parseInt(o),parseInt(n),parseInt(i)]}function te(e){const t=(0,U.desktopAppVersion)();return!!t&&function(e,t){const o=ee(e),n=ee(t);if(!o||!n)return!1;const[i,l,s]=o,[a,r,c]=n;return i!==a?i<a:l!==r?l<r:s!==c&&s<c}(t,e)}const oe=e=>{const t=t=>{const n=[];if(t&&t.length&&window.is_authenticated&&t.forEach((t=>{
|
||||
n.push(new W({id:t,category:"settingsActions",label:`${a.t(null,void 0,o(53438))} ${Q.translateStdThemeName(t)}`,onExecute:()=>{(0,X.loadTheme)(e.chartWidgetCollection(),{themeName:t,standardTheme:!1}).then((()=>{e.readOnly()||window.saver.saveChartSilently()}))}}))})),!(0,U.isDesktopApp)()||te("1.0.10")){const[,t]=Q.getStdThemeNames();n.push(new W({id:"DarkColorTheme",category:"settingsActions",label:a.t(null,void 0,o(25848)),checkable:!0,checked:Q.getCurrentTheme().name===t,onExecute:()=>{!function(e){const t=(0,Q.getCurrentTheme)().name===m.StdTheme.Dark?m.StdTheme.Light:m.StdTheme.Dark,n=e.chartModels().value().every((e=>null!==e.model().getThemeNameIfStdTheme())),i=()=>{(0,X.loadTheme)(e,{themeName:t,standardTheme:!0}).then((()=>{e.readOnly()||window.saver.saveChartSilently()}))};if(n)i();else{const e=a.t(null,void 0,o(78659)).format({name:(0,J.capitalizeFirstLetter)(t)});(0,Y.showConfirm)({text:e,onConfirm:({dialogClose:e})=>{i(),e()},onCancel:({dialogClose:e})=>{(0,p.setTheme)(t),(0,Q.syncTheme)(),e()}})}}(e.chartWidgetCollection())}}))}return n};return window.is_authenticated?Q.getThemeNames().then(t):Promise.resolve(t())};var ne=o(928),ie=o(81171);o(32679);var le=o(92693),se=o(84243),ae=o(90995);const{DrawingSyncMode:re}=ne,ce={drawings:"ToggleHideAllDrawingTools",indicators:"ToggleHideAllIndicators",positions:"ToggleHideAllPositions",all:"ToggleHideAll"},he=new K.TranslatedString("stay in drawing mode",a.t(null,void 0,o(4114))),de=new K.TranslatedString("sync drawings",a.t(null,void 0,o(94521))),ue=a.t(null,void 0,o(62518)),ve=a.t(null,void 0,o(23391)),ge=(a.t(null,void 0,o(93027)),a.t(null,void 0,o(3521)),a.t(null,void 0,o(79451))),me=a.t(null,void 0,o(3519)),pe=a.t(null,void 0,o(94593));var we=o(80387),fe=o(62400),be=o(89324);class ye extends W{constructor(e){super({label:a.t(null,void 0,o(37189)),id:"InvertScale",category:"settingsActions",checkable:!0,onExecute:()=>{this._model.invertPriceScale(this._model.mainSeries().priceScale())},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+73)}),this._model=e;(this._props=this._model.mainSeries().priceScale().properties().childs().isInverted).subscribe(this,(()=>{this._onUpdate.fire(this)}))}destroy(){super.destroy(),this._props.unsubscribeAll(this)}isChecked(){return this._model.mainSeries().priceScale().isInverted()}}class Te extends W{constructor(e){super({label:a.t(null,void 0,o(6919)),checkable:!0,id:"TogglePercantage",category:"settingsActions",onExecute:()=>{this.isChecked()?this._model.setPriceScaleRegularScaleMode(this._model.mainSeries().priceScale()):this._model.togglePriceScalePercentageScaleMode(this._model.mainSeries().priceScale())},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+80),disabled:e.mainSeries().priceScale().isLockScale()||6===e.mainSeries().properties().childs().style.value(),checked:e.mainSeries().priceScale().isPercentage()}),this._model=e;(this._props=this._model.mainSeries().priceScale().properties().childs().percentage).subscribe(this,(()=>{this._onUpdate.fire(this)}))}destroy(){super.destroy(),
|
||||
this._props.unsubscribeAll(this)}isChecked(){return this._model.mainSeries().priceScale().isPercentage()}}class Se extends W{constructor(e){super({label:a.t(null,void 0,o(16170)),id:"ToggleLogScale",category:"settingsActions",checkable:!0,onExecute:()=>{this.isChecked()?this._model.setPriceScaleRegularScaleMode(this._model.mainSeries().priceScale()):this._model.togglePriceScaleLogScaleMode(this._model.mainSeries().priceScale())},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+76),disabled:e.mainSeries().priceScale().isLockScale()||6===e.mainSeries().properties().childs().style.value(),checked:e.mainSeries().priceScale().isLog()}),this._model=e;(this._props=this._model.mainSeries().priceScale().properties().childs().log).subscribe(this,(()=>{this._onUpdate.fire(this)}))}destroy(){super.destroy(),this._props.unsubscribeAll(this)}isChecked(){return this._model.mainSeries().priceScale().isLog()}}var xe=o(27906);const Le=O.enabled("show_average_close_price_line_and_label"),Ce=new K.TranslatedString("change session",a.t(null,void 0,o(87041))),Me=new K.TranslatedString("change plus button visibility",a.t(null,void 0,o(96379))),Ae=new K.TranslatedString("change countdown to bar close visibility",a.t(null,void 0,o(39383))),_e=new K.TranslatedString("scale price chart only",a.t(null,void 0,o(63796))),ze=new K.TranslatedString("change symbol last value visibility",a.t(null,void 0,o(67453))),Ee=new K.TranslatedString("change high and low price labels visibility",a.t(null,void 0,o(24226))),ke=new K.TranslatedString("change average close price label visibility",a.t(null,void 0,o(76852))),He=new K.TranslatedString("change indicators and financials value labels visibility",a.t(null,void 0,o(71161))),Pe=new K.TranslatedString("change indicators and financials name labels visibility",a.t(null,void 0,o(35111))),Re=new K.TranslatedString("change high and low price lines visibility",a.t(null,void 0,o(80692))),Ie=new K.TranslatedString("change average close price line visibility",a.t(null,void 0,o(1022))),De=new K.TranslatedString("change symbol labels visibility",a.t(null,void 0,o(73357))),Fe=(new K.TranslatedString("change pre/post market price label visibility",a.t(null,void 0,o(30870))),new K.TranslatedString("change symbol previous close value visibility",a.t(null,void 0,o(4729))),new K.TranslatedString("change previous close price line visibility",a.t(null,void 0,o(58419)))),Ve=(new K.TranslatedString("change bid and ask labels visibility",a.t(null,void 0,o(69362))),new K.TranslatedString("change bid and ask lines visibility",a.t(null,void 0,o(52919))),new K.TranslatedString("change pre/post market price lines visibility",a.t(null,void 0,o(91978))),new K.TranslatedString("change price line visibility",a.t(null,void 0,o(8662)))),Ze=new K.TranslatedString("change session breaks visibility",a.t(null,void 0,o(38413))),Oe=(new K.TranslatedString("change ideas visibility on chart",a.t(null,void 0,o(13489))),new K.TranslatedString("show all ideas",a.t(null,void 0,o(13336))),
|
||||
new K.TranslatedString("show ideas of followed users",a.t(null,void 0,o(91395))),new K.TranslatedString("show my ideas only",a.t(null,void 0,o(57460))),new K.TranslatedString("change events visibility on chart",a.t(null,void 0,o(6119))),new K.TranslatedString("change earnings visibility",a.t(null,void 0,o(6819))),new K.TranslatedString("change dividends visibility",a.t(null,void 0,o(53929))),new K.TranslatedString("change splits visibility",a.t(null,void 0,o(47474))),{0:a.t(null,void 0,o(19265)),1:a.t(null,void 0,o(64526)),9:a.t(null,void 0,o(44958)),2:a.t(null,void 0,o(92911)),14:a.t(null,void 0,o(35458)),15:a.t(null,void 0,o(40447)),3:a.t(null,void 0,o(9537)),16:a.t(null,void 0,o(39883)),4:a.t(null,void 0,o(80082)),7:a.t(null,void 0,o(11604)),5:a.t(null,void 0,o(47189)),6:a.t(null,void 0,o(22027)),8:a.t(null,void 0,o(62423)),10:a.t(null,void 0,o(19579)),11:a.t(null,void 0,o(49942)),12:a.t(null,void 0,o(70405)),13:a.t(null,void 0,o(56281)),17:a.t(null,void 0,o(21190)),18:a.t(null,void 0,o(94861)),19:a.t(null,void 0,o(13618)),20:a.t(null,void 0,o(67346)),21:a.t(null,void 0,o(67579))});async function Be(e){const t=[],[n,i]=await Promise.all([oe(e),Promise.resolve(null)]),l=(e=>{const t=[],{stayInDrawingMode:o,drawOnAllCharts:n,drawOnAllChartsMode:i}=ne.properties().childs();t.push(new W({label:ue,checkable:!0,checked:o.value(),id:"ToggleStayInDrawingMode",category:"settingsActions",onExecute:()=>{e.model().setProperty(o,!o.value(),he)}})),t.push(new W({label:ve,checkable:!0,id:"ToggleSyncDrawings",category:"settingsActions",checked:n.value(),disabled:!e.isMultipleLayout().value(),onExecute:()=>{e.model().setProperty(n,!n.value(),de)}}));const l=ne.lockDrawings();t.push(new W({label:ge,checkable:!0,id:"ToggleLockDrawings",category:"settingsActions",checked:l.value(),onExecute:()=>{ne.lockDrawings().setValue(!ne.lockDrawings().value())}}));const s=(0,ae.getSavedHideMode)();t.push(...Array.from((0,ae.getHideOptions)()).map((([e,t])=>new W({label:t.tooltip.inactive,checkable:!0,id:ce[e],category:"settingsActions",checked:s===e&&(0,ae.getHideModeStateValue)(e),onExecute:()=>(0,ae.toggleHideMode)(e)}))));const{magnet:a,magnetMode:r}=ne.properties().childs();return t.push(new W({label:me,checkable:!0,id:"WeakMagnet",category:"functionActions",checked:a.value()&&r.value()===le.MagnetMode.WeakMagnet,icon:se.drawingToolsIcons.magnet,onExecute:()=>{a.value()&&r.value()===le.MagnetMode.WeakMagnet?(0,ie.setIsMagnetEnabled)(!1):(0,ie.setMagnetMode)(le.MagnetMode.WeakMagnet)}})),t.push(new W({label:pe,checkable:!0,id:"StrongMagnet",category:"functionActions",checked:a.value()&&r.value()===le.MagnetMode.StrongMagnet,icon:se.drawingToolsIcons.strongMagnet,onExecute:()=>{a.value()&&r.value()===le.MagnetMode.StrongMagnet?(0,ie.setIsMagnetEnabled)(!1):(0,ie.setMagnetMode)(le.MagnetMode.StrongMagnet)}})),t})(e),s=function(e){const t=[];return O.enabled("header_widget")&&O.enabled("header_compare")&&t.push(new W({icon:o(1393),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(57e3))),id:"Compare",category:"functionActions",
|
||||
onExecute:()=>e.toggleCompareOrAdd()})),O.enabled("header_widget")&&O.enabled("header_indicators")&&t.push(new W({icon:o(39681),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(87829))),id:"InsertIndicator",category:"functionActions",onExecute:()=>{e.showIndicators([])},shortcutHint:e.options().indicatorsDialogShortcutEnabled?(0,D.humanReadableHash)(47):void 0})),O.enabled("show_object_tree")&&t.push(new W({icon:o(30192),label:a.t(null,void 0,o(27077)),id:"OpenObjectsTreeInRightPanel",category:"functionActions",onExecute:()=>e.showObjectsTreePanelOrDialog()})),O.enabled("header_widget")&&O.enabled("header_settings")&&t.push(new W({label:(0,Z.appendEllipsis)(a.t(null,void 0,o(32514))),icon:o(34369),id:"ChartProperties",category:"functionActions",onExecute:()=>{e.showGeneralChartProperties()}})),O.enabled("header_widget")&&O.enabled("header_symbol_search")&&t.push(new W({icon:o(6347),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(63245))),id:"ChangeSymbol",category:"functionActions",onExecute:()=>{(0,be.showDefaultSearchDialog)({defaultValue:"",trackResultsOptions:void 0,enableOptionsChain:O.enabled("symbol_search_option_chain_selector")})}})),O.enabled("symbol_info")&&t.push(new W({label:(0,Z.appendEllipsis)(a.t(null,void 0,o(75594))),icon:o(37924),id:"SymbolInfo",category:"functionActions",onExecute:()=>{{const t=e.model().model(),o=t.mainSeries().symbolInfo(),n=t.availableUnits(),i={symbolInfo:o,showUnit:t.unitConversionEnabled(),unitDescription:e=>e?n.description(e):"",dateFormatter:t.dateFormatter()};return void(0,we.showSymbolInfoDialog)(i)}}})),e.options().goToDateEnabled&&t.push(new W({label:(0,Z.appendEllipsis)(a.t(null,void 0,o(54280))),icon:o(90752),id:"GoToDate",category:"functionActions",onExecute:()=>{(0,fe.showGoToDateDialog)(e)},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+71)})),t.filter((e=>null!==e))}(e);t.push(...n,...l,...s),i&&t.push(...i);const r=e.model().mainSeries(),c=r.priceScale(),h=r.properties().childs(),d=e.model().paneForSource?.(r);t.push(new W({id:"ResetPriceScale",category:"functionActions",label:a.t(null,void 0,o(15332)),icon:o(39267),onExecute:()=>{d&&e.model().resetPriceScale(d,c)},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+82)})),t.push(new ye(e.model())),t.push(new Te(e.model())),t.push(new Se(e.model()));const u=c.isLockScale(),v=6===h.style.value();t.push(new W({label:a.t(null,void 0,o(28051)),checkable:!0,id:"SetRegularSessionId",category:"functionActions",disabled:Boolean("regular"===r.symbolInfo()?.subsession_id),onExecute:()=>{e.model().setProperty(h.sessionId,"regular",Ce)},checked:Boolean("regular"===r.symbolInfo()?.subsession_id)})),t.push(new W({label:a.t(null,void 0,o(93308)),checkable:!0,id:"SetExtendedSessionId",category:"functionActions",disabled:!r.symbolInfo()?.subsessions?.some((e=>!e.private&&"extended"===e.id)),onExecute:()=>{const t="extended"===r.symbolInfo()?.subsession_id?"regular":"extended";e.model().setProperty(h.sessionId,t,Ce)},checked:Boolean("extended"===r.symbolInfo()?.subsession_id)})),t.push(new W({label:a.t(null,void 0,o(14017)),
|
||||
checkable:!0,id:"ToggleLockScale",category:"settingsActions",onExecute:()=>{e.model().togglePriceScaleLockScaleMode(e.model().mainSeries().priceScale())},checked:c.isLockScale()})),t.push(new W({label:a.t(null,void 0,o(89999)),checkable:!0,id:"ToggleIndexedTo100",category:"settingsActions",onExecute:()=>{c.isIndexedTo100()?e.model().setPriceScaleRegularScaleMode(e.model().mainSeries().priceScale()):e.model().togglePriceScaleIndexedTo100ScaleMode(e.model().mainSeries().priceScale())},disabled:u||v,checked:c.isIndexedTo100()})),t.push(new W({id:"AutoFitsToScreen",category:"settingsActions",label:a.t(null,void 0,o(24157)),checkable:!0,onExecute:()=>{e.model().togglePriceScaleAutoScaleMode(c)},checked:c.isAutoScale(),disabled:c.properties().childs().autoScaleDisabled.value()})),t.push(new W({label:a.t(null,{context:"scale_menu"},o(55300)),checkable:!0,id:"ToggleRegularScale",category:"settingsActions",onExecute:()=>{e.model().setPriceScaleRegularScaleMode(c)},disabled:u||v||c.isRegular(),checked:c.isRegular()}));const g=e.model().model().priceScaleSlotsCount(),m=0===g.left;t.push(new W({label:m?a.t(null,void 0,o(26493)):a.t(null,void 0,o(40789)),id:"MoveScaleToSide",category:"functionActions",disabled:g.left+g.right!==1,onExecute:()=>{e.model().mergeAllScales(m?"left":"right")}})),t.push(new W({label:a.t(null,void 0,o(7276)),id:"MergeAllScalesToLeft",category:"functionActions",disabled:g.left+g.right===1,onExecute:()=>{e.model().mergeAllScales("left")}})),t.push(new W({label:a.t(null,void 0,o(80219)),id:"MergeAllScalesToRight",category:"functionActions",disabled:g.left+g.right===1,onExecute:()=>{e.model().mergeAllScales("right")}})),t.push(new W({label:a.t(null,void 0,o(71566)),checkable:!0,checked:G.addPlusButtonProperty.value(),id:"ToggleAddOrderPlusButton",category:"settingsActions",onExecute:()=>{e.model().setProperty(G.addPlusButtonProperty,!G.addPlusButtonProperty.value(),Me)}}));const p=e.properties().childs().scalesProperties.childs(),w=h.showCountdown;t.push(new W({label:a.t(null,void 0,o(83140)),checkable:!0,id:"ToggleCountdown",category:"settingsActions",checked:w.value(),onExecute:()=>{e.model().setProperty(w,!w.value(),Ae)}}));const f=p.scaleSeriesOnly;t.push(new W({label:a.t(null,void 0,o(43758)),checkable:!0,id:"ScalePriceChartOnly",category:"settingsActions",checked:f.value(),onExecute:()=>{e.model().setProperty(f,!f.value(),_e)}}));const b=p.showSeriesLastValue;t.push(new W({label:a.t(null,void 0,o(10127)),checkable:!0,id:"ToggleSymbolLastValue",category:"settingsActions",checked:b.value(),onExecute:()=>{e.model().setProperty(b,!b.value(),ze)}}));const y=h.highLowAvgPrice.childs();t.push(new W({label:a.t(null,void 0,o(99479)),checkable:!0,id:"ToggleHighLowPriceLabels",category:"settingsActions",checked:y.highLowPriceLabelsVisible.value(),onExecute:()=>{e.model().setProperty(y.highLowPriceLabelsVisible,!y.highLowPriceLabelsVisible.value(),Ee)}})),Le&&t.push(new W({label:a.t(null,void 0,o(21841)),checkable:!0,id:"ToggleAverageClosePriceLabel",category:"settingsActions",
|
||||
checked:y.averageClosePriceLabelVisible.value(),onExecute:()=>{const t=!y.averageClosePriceLabelVisible.value();e.model().setProperty(y.averageClosePriceLabelVisible,t,ke)}}));const T=p.showSymbolLabels;t.push(new W({label:a.t(null,void 0,o(32390)),checkable:!0,id:"ToggleSymbolLabels",category:"settingsActions",checked:T.value(),onExecute:()=>{e.model().setProperty(T,!T.value(),De)}}));const S=(0,q.combineProperty)(((e,t)=>e||t),p.showStudyLastValue.weakReference(),p.showFundamentalLastValue.weakReference());t.push(new W({label:a.t(null,void 0,o(46850)),checkable:!0,id:"ToggleStudyLastValue",category:"settingsActions",checked:S.value(),onExecute:()=>{const t=!S.value();e.model().beginUndoMacro(He),e.model().setProperty(p.showStudyLastValue,t,null),e.model().setProperty(p.showFundamentalLastValue,t,null),e.model().endUndoMacro()},onDestroy:()=>{S.destroy()}}));const x=(0,q.combineProperty)(((e,t)=>e||t),p.showStudyPlotLabels.weakReference(),p.showFundamentalNameLabel.weakReference());t.push(new W({label:a.t(null,void 0,o(54418)),checkable:!0,id:"ToggleIndicatorsLabels",category:"settingsActions",checked:x.value(),onExecute:()=>{e.model().beginUndoMacro(Pe);const t=!x.value();e.model().setProperty(p.showStudyPlotLabels,t,null),e.model().setProperty(p.showFundamentalNameLabel,t,null),e.model().endUndoMacro()},onDestroy:()=>{x.destroy()}})),t.push(new W({label:a.t(null,void 0,o(33766)),checkable:!0,id:"ToggleHighLowPriceLines",category:"settingsActions",checked:y.highLowPriceLinesVisible.value(),onExecute:()=>{e.model().setProperty(y.highLowPriceLinesVisible,!y.highLowPriceLinesVisible.value(),Re)}})),Le&&t.push(new W({label:a.t(null,void 0,o(16138)),checkable:!0,id:"ToggleAverageClosePriceLine",category:"settingsActions",checked:y.averageClosePriceLineVisible.value(),onExecute:()=>{const t=!y.averageClosePriceLineVisible.value();e.model().setProperty(y.averageClosePriceLineVisible,t,Ie)}}));const L=h.showPriceLine;t.push(new W({label:a.t(null,void 0,o(72926)),checkable:!0,id:"TogglePriceLine",category:"settingsActions",checked:L.value(),onExecute:()=>{e.model().setProperty(L,!L.value(),Ve)}}));const C=h.showPrevClosePriceLine;t.push(new W({label:a.t(null,void 0,o(79366)),checkable:!0,id:"ToggleSymbolPrevCloseLine",disabled:e.model().mainSeries().isDWM(),category:"settingsActions",checked:C.value(),onExecute:()=>{e.model().setProperty(C,!C.value(),Fe)}})),t.push(new W({label:a.t(null,void 0,o(54170)),icon:o(39267),id:"ResetTimeScale",category:"functionActions",onExecute:()=>{e.model().resetTimeScale()},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Mod+D.Modifiers.Alt+81)}));const M=e.model().model().sessions().properties().childs().sessionHighlight.childs().vertlines.childs().sessBreaks.childs().visible,A=(0,q.createWVFromProperty)(e.model().mainSeries().isDWMProperty()),_=new W({label:a.t(null,void 0,o(66707)),checkable:!0,id:"ToggleSessionBreaks",category:"settingsActions",disabled:A.value(),checked:M.value(),onExecute:()=>{e.model().setProperty(M,!M.value(),Ze)},onDestroy:()=>A.destroy()})
|
||||
;if(A.subscribe((()=>_.update({disabled:A.value()}))),t.push(_),t.push(new W({label:a.t(null,void 0,o(31789)),icon:o(39267),id:"ResetChart",category:"functionActions",onExecute:()=>e.GUIResetScales(),shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+82)})),t.push(new W({icon:o(93544),label:a.t(null,void 0,o(99984)),id:"RemoveAllIndicators",category:"functionActions",onExecute:()=>e.removeAllStudies()})),t.push(new W({icon:o(93544),label:a.t(null,void 0,o(96374)),id:"RemoveAllDrawingTools",category:"functionActions",onExecute:()=>e.removeAllDrawingTools()})),t.push(new W({icon:o(93544),label:a.t(null,void 0,o(4474)),id:"RemoveAllIndicatorsAndDrawingTools",category:"functionActions",onExecute:()=>e.removeAllStudiesDrawingTools()})),t.push(new W({label:a.t(null,void 0,o(22437)),id:"ApplyIndicatorsToAllCharts",category:"functionActions",disabled:!e.applyIndicatorsToAllChartsAvailable(),onExecute:()=>{e.chartWidgetCollection().applyIndicatorsToAllCharts(e)}})),O.enabled("header_widget")&&O.enabled("header_undo_redo")&&(t.push(new W({id:"Undo",category:"functionActions",icon:o(77665),label:a.t(null,void 0,o(14804)),onExecute:()=>{e.model().undoHistory().undo()},disabled:e.model().undoHistory().undoStack().isEmpty(),shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Mod+90)})),t.push(new W({id:"Redo",category:"functionActions",icon:o(96052),label:a.t(null,void 0,o(48236)),onExecute:()=>{e.model().undoHistory().redo()},disabled:e.model().undoHistory().redoStack().isEmpty(),shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Mod+89)}))),t.push(new W({label:a.t(null,void 0,o(12754)),id:"MoveChartRight",category:"functionActions",disabled:!e.chartWidgetCollection().activeChartCanBeMoved().value(),onExecute:()=>{e.chartWidgetCollection().moveActiveChartWithUndo(!1)}})),t.push(new W({label:a.t(null,void 0,o(35112)),id:"MoveChartLeft",category:"functionActions",disabled:!e.chartWidgetCollection().activeChartCanBeMoved().value(),onExecute:()=>{e.chartWidgetCollection().moveActiveChartWithUndo(!0)}})),O.enabled("header_widget")&&O.enabled("header_chart_type")){const o=(0,j.allChartStyles)();for(const n of o)t.push(new W({id:`ChartStyle_${n}`,category:"functionActions",disabled:!F.linking.supportedChartStyles.value()?.includes(n),onExecute:()=>{e.chartWidgetCollection().setChartStyleToWidget(n)},icon:$.SERIES_ICONS[n],label:Oe[n]}))}return O.enabled("header_widget")&&(0,xe.shouldShowFullscreen)()&&t.push(new W({label:a.t(null,void 0,o(67092)),id:"Fullscreen mode",icon:o(49697),category:"functionActions",checkable:!0,checked:e.chartWidgetCollection().fullscreen().value(),disabled:!e.chartWidgetCollection().fullscreenable().value(),onExecute:()=>{const t=e.chartWidgetCollection();t.fullscreen().value()?t.exitFullscreen():t.startFullscreen()},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Shift+70)})),t}o(50151);var We=o(26744),Ne=o(2627),Ke=o(59511);function Ue(){return Ke.lineToolsFlat.map((e=>function(e){const t=Ne.lineToolsInfo[e],n=t.selectHotkey?.hash,i={id:e,category:"drawingsActions",label:t.localizedName,icon:t.icon,
|
||||
shortcutHint:n?(0,D.humanReadableHash)(n):void 0,payload:e,onExecute:()=>ne.tool.setValue(e),favourite:We.LinetoolsFavoritesStore.isFavorite(e),onFavouriteClick:t=>{t.preventDefault(),We.LinetoolsFavoritesStore.isFavorite(e)?We.LinetoolsFavoritesStore.removeFavorite(e):We.LinetoolsFavoritesStore.addFavorite(e)}};return e.toLowerCase().includes("fib")&&(i.aliases=[a.t(null,void 0,o(26578))]),new W(i)}(e.name)))}var Ge=o(37404);o(3343);function qe(e,t){const o=e.getState().category,n=t.getState().category;return o===n?0:"drawingsActions"===n?1:"drawingsActions"===o||"functionActions"===o?-1:1}var je=o(16216),$e=o(87896);class Qe extends l.DialogRenderer{constructor(e){super(),this._actions=[],this.show=e=>{this.visible().value()||async function(e,t){const n=[],[i,l,s,r,c]=await Promise.all([Be(e),Promise.resolve(null),Promise.resolve(null),Promise.resolve(null),Promise.resolve(null)]);n.push(...i);const h=e.chartWidgetCollection();if(O.enabled("header_widget")&&O.enabled("header_resolutions")){const t={label:(0,Z.appendEllipsis)(a.t(null,void 0,o(2569))),id:"ChangeInterval",category:"functionActions",onExecute:()=>{(0,V.showChangeIntervalDialogAsync)({initVal:F.linking.interval.value(),selectOnInit:!0})}};!O.enabled("show_interval_dialog_on_key_press")||e.readOnly()||e.options().hideSymbolSearch||(t.shortcutHint=(0,D.humanReadableHash)(188)),n.push(new W(t))}if(t&&O.enabled("header_widget")&&O.enabled("header_saveload")){n.push(new W({id:"LoadChartLayout",category:"functionActions",label:(0,Z.appendEllipsis)(a.t(null,void 0,o(7386))),onExecute:()=>{t.showLoadDialog()},shortcutHint:a.t(null,{context:"hotkey"},o(23821))}));const i=e.getSaveChartService();i&&(n.push(new W({id:"RenameChartLayout",category:"functionActions",label:(0,Z.appendEllipsis)(a.t(null,void 0,o(38206))),onExecute:()=>{i.renameChart()}})),n.push(new W({id:"SaveChartLayout",category:"functionActions",icon:o(53707),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(41569))),disabled:!i.hasChanges(),onExecute:()=>{i.saveChartOrShowTitleDialog()},shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Mod+83)})))}return n.push(new W({id:"TakeSnapshot",category:"functionActions",icon:o(72644),label:a.t(null,void 0,o(8270)),onExecute:()=>h.takeServerScreenshot(),shortcutHint:(0,D.humanReadableHash)(D.Modifiers.Alt+83)})),n}(this._activeChartWidget,this._loadChartService).then((t=>{this._actions=t.concat((()=>{const e=new W({id:"ManageLayoutDrawings",category:"functionActions",icon:o(81111),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(81031))),onExecute:()=>(0,Ge.showManageDrawingsDialog)()}),t=O.enabled("left_toolbar")?[...Ue(),e]:[];return t})()).sort(qe),this._rootInstance=(0,$e.createReactRoot)(n.createElement(R,{shouldReturnFocus:e?.shouldReturnFocus,dialogId:"globalSearch",items:this._actions,onClose:this.hide}),this._container),this._setVisibility(!0)}))},this.hide=()=>{this._rootInstance?.unmount(),this._setVisibility(!1);for(const e of this._actions)e.destroy()};const t=(0,je.service)(i.CHART_WIDGET_COLLECTION_SERVICE)
|
||||
;this._activeChartWidget=t.activeChartWidget.value(),this._loadChartService=e}}},10087:(e,t,o)=>{"use strict";o.d(t,{getElementId:()=>d,useSearchDialogKeyboardNavigation:()=>h});var n=o(50959),i=o(50335),l=o(3343),s=o(76460),a=o(19291),r=o(9859),c=o(49483);function h(e){const{contentContainerRef:t,searchInputRef:o,dialogRef:i,getNextFocusedItemIndex:h,isNavigationDisabled:u,onEscapeClick:v,scrollToFocusedItem:g,getElementIdByIndex:m=d}=e,[p,w]=(0,n.useState)(null),[f,b]=(0,n.useState)(null),y=(0,n.useRef)({itemIndex:null,actionIndex:null}),[T,S]=(0,n.useState)(!1);function x(){S(!1),b(null),w(null)}return(0,n.useLayoutEffect)((()=>{if(null===p||!T)return;const e=m(p,f),o=t.current?.querySelector(`#${e}`);return o?.dispatchEvent(new CustomEvent("active-descendant-focus")),()=>{o?.dispatchEvent(new CustomEvent("active-descendant-blur"))}}),[p,T,f]),{handleKeyDown:function(e){const n=(0,l.hashFromEvent)(e);if(27===n&&v)return void v(e);const i=t.current;if(!i||e.target!==o.current)return;if(32===n||13===n){if(null===p)return;e.preventDefault();const t=i.querySelector(`#${m(p,f)}`);if(!(t instanceof HTMLElement))return;return void t.click()}const s=(0,a.mapKeyCodeToDirection)(n);if(!s||u)return;const c=null!==p?i.querySelector(`#${m(p)}`):null;switch(s){case"blockNext":case"blockPrev":{e.preventDefault();const t=h(p,"blockNext"===s?1:-1);if(null===t)return;w(t),S(!0),y.current.itemIndex=t;const o=i.querySelector(`#${m(t)}`);if(g(o,t),null!==f&&o instanceof HTMLElement){const e=Array.from(o.querySelectorAll('[data-role="list-item-action"]'));if(!e.length)return b(null),void(y.current.actionIndex=null);const t=(0,r.clamp)(f,0,e.length-1);b(t),y.current.actionIndex=t}return}case"inlineNext":{if(!c)return;e.preventDefault();const t=Array.from(c.querySelectorAll('[data-role="list-item-action"]'));if(!t||!t.length)return;return null===f?(b(0),void(y.current.actionIndex=0)):f===t.length-1?(b(null),void(y.current.actionIndex=null)):(b(f+1),void(y.current.actionIndex=f+1))}case"inlinePrev":{if(!c)return;e.preventDefault();const t=Array.from(c.querySelectorAll('[data-role="list-item-action"]'));if(!t||!t.length)return;return null===f?(b(t.length-1),void(y.current.actionIndex=t.length-1)):0===f?(b(null),void(y.current.actionIndex=null)):(b(f-1),void(y.current.actionIndex=f-1))}}},handleForceFocus:function(){(0,a.updateTabIndexes)()},handleSearchRefBlur:function(e){x(),w(p),c.CheckMobile.any()||e.relatedTarget!==i.current?.getElement()||e.target.focus()},resetFocusState:x,restoreFocusState:function(){b(y.current.actionIndex),w(y.current.itemIndex),S(!0)},focusVisible:T,focusedItemIndex:p,focusedActionIndex:f,setFocusedItemIndex:w,setFocusedActionIndex:b,onDialogClick:function(e){(0,s.isKeyboardClick)(e)||(S(!1),b(null))}}}function d(e,t){return(0,i.isNumber)(t)&&-1!==t?`list-item-${e}-action-${t}`:`list-item-${e}`}},37404:(e,t,o)=>{"use strict";o.d(t,{showManageDrawingsDialog:()=>i});let n=null;function i(e){return Promise.all([o.e(4166),o.e(8692),o.e(3693),o.e(7159),o.e(1702)]).then(o.bind(o,41662)).then((t=>{const o=new(0,
|
||||
t.ManageDrawingsDialogRenderer)(e);return null!==n&&n.hide(),o.show(),n=o,o}))}},51826:(e,t,o)=>{"use strict";o.d(t,{DialogsOpenerManager:()=>n,dialogsOpenerManager:()=>i});class n{constructor(){this._storage=new Map}setAsOpened(e,t){this._storage.set(e,t)}setAsClosed(e){this._storage.delete(e)}isOpened(e){return this._storage.has(e)}getDialogPayload(e){return this._storage.get(e)}}const i=new n},90692:(e,t,o)=>{"use strict";o.d(t,{MatchMedia:()=>i});var n=o(50959);class i extends n.PureComponent{constructor(e){super(e),this._handleChange=()=>{this.forceUpdate()},this.state={query:window.matchMedia(this.props.rule)}}componentDidMount(){this._subscribe(this.state.query)}componentDidUpdate(e,t){this.state.query!==t.query&&(this._unsubscribe(t.query),this._subscribe(this.state.query))}componentWillUnmount(){this._unsubscribe(this.state.query)}render(){return this.props.children(this.state.query.matches)}static getDerivedStateFromProps(e,t){return e.rule!==t.query.media?{query:window.matchMedia(e.rule)}:null}_subscribe(e){e.addEventListener("change",this._handleChange)}_unsubscribe(e){e.removeEventListener("change",this._handleChange)}}},64706:(e,t,o)=>{"use strict";o.d(t,{MenuContext:()=>n});const n=o(50959).createContext(null)},27317:(e,t,o)=>{"use strict";o.d(t,{DEFAULT_MENU_THEME:()=>p,Menu:()=>f});var n=o(50959),i=o(97754),l=o.n(i),s=o(50151),a=o(9859),r=o(14729),c=o(50655),h=o(59064),d=o(67961),u=o(26709),v=o(83021),g=o(64706),m=o(67797);const p=m;var w;!function(e){e[e.IndentFromWindow=0]="IndentFromWindow"}(w||(w={}));class f extends n.PureComponent{constructor(e){super(e),this._containerRef=null,this._scrollWrapRef=null,this._raf=null,this._scrollRaf=null,this._scrollTimeout=void 0,this._manager=new d.OverlapManager,this._hotkeys=null,this._scroll=0,this._handleContainerRef=e=>{this._containerRef=e,this.props.reference&&("function"==typeof this.props.reference&&this.props.reference(e),"object"==typeof this.props.reference&&(this.props.reference.current=e))},this._handleScrollWrapRef=e=>{this._scrollWrapRef=e,"function"==typeof this.props.scrollWrapReference&&this.props.scrollWrapReference(e),"object"==typeof this.props.scrollWrapReference&&(this.props.scrollWrapReference.current=e)},this._handleCustomRemeasureDelegate=()=>{this._resizeForced(),this._handleMeasure()},this._handleMeasure=({callback:e,forceRecalcPosition:t}={})=>{if(this.state.isMeasureValid&&!t)return;const{position:o}=this.props,n=(0,s.ensureNotNull)(this._containerRef);let i=n.getBoundingClientRect();const l=document.documentElement.clientHeight,r=document.documentElement.clientWidth,c=this.props.closeOnScrollOutsideOffset??0;let h=l-0-c;const d=i.height>h;if(d){(0,s.ensureNotNull)(this._scrollWrapRef).style.overflowY="scroll",i=n.getBoundingClientRect()}const{width:u,height:v}=i,g="function"==typeof o?o({contentWidth:u,contentHeight:v,availableWidth:r,availableHeight:l}):o,m=g?.indentFromWindow?.left??0,p=r-(g.overrideWidth??u)-(g?.indentFromWindow?.right??0),w=(0,
|
||||
a.clamp)(g.x,m,Math.max(m,p)),f=(g?.indentFromWindow?.top??0)+c,b=l-(g.overrideHeight??v)-(g?.indentFromWindow?.bottom??0);let y=(0,a.clamp)(g.y,f,Math.max(f,b));if(g.forbidCorrectYCoord&&y<g.y&&(h-=g.y-y,y=g.y),t&&void 0!==this.props.closeOnScrollOutsideOffset&&g.y<=this.props.closeOnScrollOutsideOffset)return void this._handleGlobalClose(!0);const T=g.overrideHeight??(d?h:void 0);this.setState({appearingMenuHeight:t?this.state.appearingMenuHeight:T,appearingMenuWidth:t?this.state.appearingMenuWidth:g.overrideWidth,appearingPosition:{x:w,y},isMeasureValid:!0},(()=>{this.props.doNotRestorePosition||this._restoreScrollPosition(),e&&e()}))},this._restoreScrollPosition=()=>{const e=document.activeElement,t=(0,s.ensureNotNull)(this._containerRef);if(null!==e&&t.contains(e))try{e.scrollIntoView()}catch(e){}else(0,s.ensureNotNull)(this._scrollWrapRef).scrollTop=this._scroll},this._resizeForced=()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0})},this._resize=()=>{null===this._raf&&(this._raf=requestAnimationFrame((()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0}),this._raf=null})))},this._handleGlobalClose=e=>{this.props.onClose(e)},this._handleSlot=e=>{this._manager.setContainer(e)},this._handleScroll=()=>{this._scroll=(0,s.ensureNotNull)(this._scrollWrapRef).scrollTop},this._handleScrollOutsideEnd=()=>{clearTimeout(this._scrollTimeout),this._scrollTimeout=setTimeout((()=>{this._handleMeasure({forceRecalcPosition:!0})}),80)},this._handleScrollOutside=e=>{e.target!==this._scrollWrapRef&&(this._handleScrollOutsideEnd(),null===this._scrollRaf&&(this._scrollRaf=requestAnimationFrame((()=>{this._handleMeasure({forceRecalcPosition:!0}),this._scrollRaf=null}))))},this.state={}}componentDidMount(){this._handleMeasure({callback:this.props.onOpen});const{customCloseDelegate:e=h.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.subscribe(this,this._handleGlobalClose),t?.subscribe(null,this._handleCustomRemeasureDelegate),window.addEventListener("resize",this._resize);const o=null!==this.context;this._hotkeys||o||(this._hotkeys=u.createGroup({desc:"Popup menu"}),this._hotkeys.add({desc:"Close",hotkey:27,handler:()=>{this.props.onKeyboardClose&&this.props.onKeyboardClose(),this._handleGlobalClose()}})),this.props.repositionOnScroll&&window.addEventListener("scroll",this._handleScrollOutside,{capture:!0})}componentDidUpdate(){this._handleMeasure()}componentWillUnmount(){const{customCloseDelegate:e=h.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.unsubscribe(this,this._handleGlobalClose),t?.unsubscribe(null,this._handleCustomRemeasureDelegate),window.removeEventListener("resize",this._resize),window.removeEventListener("scroll",this._handleScrollOutside,{capture:!0}),this._hotkeys&&(this._hotkeys.destroy(),this._hotkeys=null),null!==this._raf&&(cancelAnimationFrame(this._raf),this._raf=null),null!==this._scrollRaf&&(cancelAnimationFrame(this._scrollRaf),
|
||||
this._scrollRaf=null),this._scrollTimeout&&clearTimeout(this._scrollTimeout)}render(){const{id:e,role:t,"aria-label":o,"aria-labelledby":i,"aria-activedescendant":s,"aria-hidden":a,"aria-describedby":h,"aria-invalid":d,children:u,minWidth:p,theme:w=m,className:f,maxHeight:y,onMouseOver:T,onMouseOut:S,onKeyDown:x,onFocus:L,onBlur:C}=this.props,{appearingMenuHeight:M,appearingMenuWidth:A,appearingPosition:_,isMeasureValid:z}=this.state,E={"--ui-kit-menu-max-width":`${_&&_.x}px`,maxWidth:"calc(100vw - var(--ui-kit-menu-max-width) - 6px)"};return n.createElement(g.MenuContext.Provider,{value:this},n.createElement(v.SubmenuHandler,null,n.createElement(c.SlotContext.Provider,{value:this._manager},n.createElement("div",{id:e,role:t,"aria-label":o,"aria-labelledby":i,"aria-activedescendant":s,"aria-hidden":a,"aria-describedby":h,"aria-invalid":d,className:l()(f,w.menuWrap,!z&&w.isMeasuring),style:{height:M,left:_&&_.x,minWidth:p,position:"fixed",top:_&&_.y,width:A,...this.props.limitMaxWidth&&E},"data-name":this.props["data-name"],"data-tooltip-show-on-focus":this.props["data-tooltip-show-on-focus"],ref:this._handleContainerRef,onScrollCapture:this.props.onScroll,onContextMenu:r.preventDefaultForContextMenu,tabIndex:this.props.tabIndex,onMouseOver:T,onMouseOut:S,onKeyDown:x,onFocus:L,onBlur:C},n.createElement("div",{className:l()(w.scrollWrap,!this.props.noMomentumBasedScroll&&w.momentumBased),style:{overflowY:void 0!==M?"scroll":"auto",maxHeight:y},onScrollCapture:this._handleScroll,ref:this._handleScrollWrapRef},n.createElement(b,{className:w.menuBox},u)))),n.createElement(c.Slot,{reference:this._handleSlot})))}update(e){e?this._resizeForced():this._resize()}focus(e){this._containerRef?.focus(e)}blur(){this._containerRef?.blur()}}function b(e){const t=(0,s.ensureNotNull)((0,n.useContext)(v.SubmenuContext)),o=n.useRef(null);return n.createElement("div",{ref:o,className:e.className,onMouseOver:function(e){if(!(null!==t.current&&e.target instanceof Node&&(n=e.target,o.current?.contains(n))))return;var n;t.isSubmenuNode(e.target)||t.setCurrent(null)},"data-name":"menu-inner"},e.children)}f.contextType=v.SubmenuContext},29197:(e,t,o)=>{"use strict";o.d(t,{CloseDelegateContext:()=>l});var n=o(50959),i=o(59064);const l=n.createContext(i.globalCloseDelegate)},42842:(e,t,o)=>{"use strict";o.d(t,{Portal:()=>c,PortalContext:()=>h});var n=o(50959),i=o(32227),l=o(55698),s=o(67961),a=o(34811),r=o(99663);class c extends n.PureComponent{constructor(){super(...arguments),this._uuid=(0,l.nanoid)()}componentWillUnmount(){this._manager().removeWindow(this._uuid)}render(){const e=this._manager().ensureWindow(this._uuid,this.props.layerOptions);e.style.top=this.props.top||"",e.style.bottom=this.props.bottom||"",e.style.left=this.props.left||"",e.style.right=this.props.right||"",e.style.pointerEvents=this.props.pointerEvents||"";const t=this.props.className;return t&&("string"==typeof t?e.classList.add(t):e.classList.add(...t)),
|
||||
this.props.shouldTrapFocus&&!e.hasAttribute(a.FOCUS_TRAP_DATA_ATTRIBUTE)&&e.setAttribute(a.FOCUS_TRAP_DATA_ATTRIBUTE,"true"),this.props["aria-hidden"]&&e.setAttribute("aria-hidden","true"),i.createPortal(n.createElement(h.Provider,{value:this},this.props.children),e)}moveToTop(){this._manager().moveToTop(this._uuid)}_manager(){return null===this.context?(0,s.getRootOverlapManager)():this.context}}c.contextType=r.SlotContext;const h=n.createContext(null)},50655:(e,t,o)=>{"use strict";o.d(t,{Slot:()=>n.Slot,SlotContext:()=>n.SlotContext});var n=o(99663)},40173:(e,t,o)=>{"use strict";function n(e,t,o={}){return Object.assign({},e,function(e,t,o={}){const n=Object.assign({},t);for(const i of Object.keys(t)){const l=o[i]||i;l in e&&(n[i]=[e[l],t[i]].join(" "))}return n}(e,t,o))}o.d(t,{mergeThemes:()=>n})},84243:(e,t,o)=>{"use strict";o.d(t,{drawingToolsIcons:()=>n});const n={SyncDrawing:o(99088),arrow:o(63743),cursor:o(18953),dot:o(72196),demonstration:o(54780),performance:"",drawginmode:o(52459),drawginmodeActive:o(63975),eraser:o(27999),group:o(34059),hideAllDrawings:o(45820),hideAllDrawingsActive:o(84959),hideAllIndicators:o(42321),hideAllIndicatorsActive:o(75895),hideAllDrawingTools:o(93756),hideAllDrawingToolsActive:o(42650),hideAllPositionsTools:o(57313),hideAllPositionsToolsActive:o(65162),lockAllDrawings:o(91244),lockAllDrawingsActive:o(65186),magnet:o(68385),heart:o(10862),smile:o(7636),sticker:o(62567),strongMagnet:o(46049),measure:o(88518),removeAllDrawingTools:o(93544),showObjectsTree:o(36515),zoom:o(6894),"zoom-out":o(45360)}},59511:(e,t,o)=>{"use strict";o.d(t,{isLineToolsGroupWithSections:()=>r,lineTools:()=>a,lineToolsFlat:()=>c});var n=o(11542),i=(o(49483),o(56570)),l=o(37265);const s=i.enabled("image_drawingtool"),a=[{id:"linetool-group-cursors",title:n.t(null,void 0,o(81578)),sections:[{items:[{name:"cursor"},{name:"dot"},{name:"arrow"},{name:"demonstration"},null].filter(l.isExistent)},{items:[{name:"eraser"}]}],trackLabel:null},{id:"linetool-group-trend-line",title:n.t(null,void 0,o(48773)),sections:[{title:n.t(null,void 0,o(56982)),items:[{name:"LineToolTrendLine"},{name:"LineToolRay"},{name:"LineToolInfoLine"},{name:"LineToolExtended"},{name:"LineToolTrendAngle"},{name:"LineToolHorzLine"},{name:"LineToolHorzRay"},{name:"LineToolVertLine"},{name:"LineToolCrossLine"}]},{title:n.t(null,void 0,o(59934)),items:[{name:"LineToolParallelChannel"},{name:"LineToolRegressionTrend"},{name:"LineToolFlatBottom"},{name:"LineToolDisjointAngle"}]},{title:n.t(null,void 0,o(36167)),items:[{name:"LineToolPitchfork"},{name:"LineToolSchiffPitchfork2"},{name:"LineToolSchiffPitchfork"},{name:"LineToolInsidePitchfork"}]}],trackLabel:null},{id:"linetool-group-gann-and-fibonacci",title:n.t(null,void 0,o(2654)),sections:[{title:n.t(null,void 0,o(26578)),items:[{name:"LineToolFibRetracement"},{name:"LineToolTrendBasedFibExtension"},{name:"LineToolFibChannel"},{name:"LineToolFibTimeZone"},{name:"LineToolFibSpeedResistanceFan"},{name:"LineToolTrendBasedFibTime"},{name:"LineToolFibCircles"},{name:"LineToolFibSpiral"},{
|
||||
name:"LineToolFibSpeedResistanceArcs"},{name:"LineToolFibWedge"},{name:"LineToolPitchfan"}]},{title:n.t(null,void 0,o(51494)),items:[{name:"LineToolGannSquare"},{name:"LineToolGannFixed"},{name:"LineToolGannComplex"},{name:"LineToolGannFan"}]}],trackLabel:null},{id:"linetool-group-patterns",title:n.t(null,void 0,o(46417)),sections:[{title:n.t(null,void 0,o(46417)),items:[{name:"LineTool5PointsPattern"},{name:"LineToolCypherPattern"},{name:"LineToolHeadAndShoulders"},{name:"LineToolABCD"},{name:"LineToolTrianglePattern"},{name:"LineToolThreeDrivers"}]},{title:n.t(null,void 0,o(44255)),items:[{name:"LineToolElliottImpulse"},{name:"LineToolElliottCorrection"},{name:"LineToolElliottTriangle"},{name:"LineToolElliottDoubleCombo"},{name:"LineToolElliottTripleCombo"}]},{title:n.t(null,void 0,o(77915)),items:[{name:"LineToolCircleLines"},{name:"LineToolTimeCycles"},{name:"LineToolSineLine"}]}],trackLabel:null},{id:"linetool-group-prediction-and-measurement",title:n.t(null,void 0,o(1410)),sections:[{title:n.t(null,void 0,o(75747)),items:[{name:"LineToolRiskRewardLong"},{name:"LineToolRiskRewardShort"},{name:"LineToolPrediction"},{name:"LineToolBarsPattern"},{name:"LineToolGhostFeed"},{name:"LineToolProjection"}].filter(l.isExistent)},{title:n.t(null,void 0,o(69260)),items:[{name:"LineToolAnchoredVWAP"},{name:"LineToolFixedRangeVolumeProfile"},null].filter(l.isExistent)},{title:n.t(null,void 0,o(97050)),items:[{name:"LineToolPriceRange"},{name:"LineToolDateRange"},{name:"LineToolDateAndPriceRange"}]}],trackLabel:null},{id:"linetool-group-geometric-shapes",title:n.t(null,void 0,o(22145)),sections:[{title:n.t(null,void 0,o(65695)),items:[{name:"LineToolBrush"},{name:"LineToolHighlighter"}]},{title:n.t(null,void 0,o(19147)),items:[{name:"LineToolArrowMarker"},{name:"LineToolArrow"},{name:"LineToolArrowMarkUp"},{name:"LineToolArrowMarkDown"},{name:"LineToolArrowMarkLeft"},{name:"LineToolArrowMarkRight"}].filter(l.isExistent)},{title:n.t(null,void 0,o(65781)),items:[{name:"LineToolRectangle"},{name:"LineToolRotatedRectangle"},{name:"LineToolPath"},{name:"LineToolCircle"},{name:"LineToolEllipse"},{name:"LineToolPolyline"},{name:"LineToolTriangle"},{name:"LineToolArc"},{name:"LineToolBezierQuadro"},{name:"LineToolBezierCubic"}]}],trackLabel:null},{id:"linetool-group-annotation",title:n.t(null,void 0,o(32064)),sections:[{title:n.t(null,void 0,o(65831)),items:[{name:"LineToolText"},{name:"LineToolTextAbsolute"},{name:"LineToolTextNote"},{name:"LineToolPriceNote"},{name:"LineToolNote"},{name:"LineToolTable"},{name:"LineToolCallout"},{name:"LineToolComment"},{name:"LineToolPriceLabel"},{name:"LineToolSignpost"},{name:"LineToolFlagMark"}].filter(l.isExistent)},{title:n.t(null,void 0,o(93111)),items:[s?{name:"LineToolImage"}:null,null,null].filter(l.isExistent)}],trackLabel:null}];function r(e){return"sections"in e}const c=a.map((function(e){return r(e)?e.sections.map((e=>e.items)).flat():e.items})).flat()},27906:(e,t,o)=>{"use strict";o.d(t,{shouldShowFullscreen:()=>i});var n=o(56570);function i(){
|
||||
return n.enabled("header_fullscreen_button")}},2627:(e,t,o)=>{"use strict";o.d(t,{lineToolsInfo:()=>b});var n=o(50151),i=o(11542),l=o(61814),s=(o(21251),o(98626)),a=o(84243);const r={SyncDrawing:i.t(null,void 0,o(59377)),arrow:i.t(null,void 0,o(11858)),cursor:i.t(null,void 0,o(6969)),demonstration:i.t(null,void 0,o(14939)),dot:i.t(null,void 0,o(57157)),performance:i.t(null,void 0,o(35553)),drawginmode:i.t(null,void 0,o(62518)),eraser:i.t(null,void 0,o(8727)),group:i.t(null,void 0,o(3154)),hideAllDrawings:i.t(null,void 0,o(52563)),lockAllDrawings:i.t(null,void 0,o(79451)),magnet:i.t(null,void 0,o(81396)),measure:i.t(null,void 0,o(91563)),removeAllDrawingTools:i.t(null,void 0,o(57118)),showObjectsTree:i.t(null,void 0,o(85786)),zoom:i.t(null,void 0,o(55774)),"zoom-out":i.t(null,void 0,o(37310))};var c=o(98523),h=o(68335),d=o(17402);const u=(0,h.humanReadableModifiers)(h.Modifiers.Shift,!1).trim(),v=(0,h.humanReadableModifiers)(h.Modifiers.Alt,!1).trim(),g=(0,h.humanReadableModifiers)(h.Modifiers.Mod,!1).trim(),m={keys:[u],text:i.t(null,void 0,o(23369))},p={keys:[u],text:i.t(null,void 0,o(13798))},w={keys:[u],text:i.t(null,void 0,o(10539))},f={LineTool5PointsPattern:{},LineToolABCD:{},LineToolArc:{},LineToolArrow:{},LineToolArrowMarkDown:{},LineToolArrowMarkLeft:{},LineToolArrowMarkRight:{},LineToolArrowMarkUp:{},LineToolComment:{},LineToolBarsPattern:{},LineToolBezierCubic:{},LineToolBezierQuadro:{},LineToolBrush:{},LineToolCallout:{},LineToolCircleLines:{},LineToolCypherPattern:{},LineToolDateAndPriceRange:{},LineToolDateRange:{},LineToolDisjointAngle:{hotKey:(0,l.hotKeySerialize)(m)},LineToolElliottCorrection:{},LineToolElliottDoubleCombo:{},LineToolElliottImpulse:{},LineToolElliottTriangle:{},LineToolElliottTripleCombo:{},LineToolEllipse:{hotKey:(0,l.hotKeySerialize)(p)},LineToolExtended:{},LineToolFibChannel:{},LineToolFibCircles:{hotKey:(0,l.hotKeySerialize)(p)},LineToolFibRetracement:{},LineToolFibSpeedResistanceArcs:{},LineToolFibSpeedResistanceFan:{hotKey:(0,l.hotKeySerialize)(w)},LineToolFibSpiral:{},LineToolFibTimeZone:{},LineToolFibWedge:{},LineToolFlagMark:{},LineToolFlatBottom:{hotKey:(0,l.hotKeySerialize)(m)},LineToolAnchoredVWAP:{},LineToolGannComplex:{},LineToolGannFixed:{},LineToolGannFan:{},LineToolGannSquare:{hotKey:(0,l.hotKeySerialize)({keys:[u],text:i.t(null,void 0,o(83042))})},LineToolHeadAndShoulders:{},LineToolHorzLine:{hotKey:(0,l.hotKeySerialize)({keys:[v,"H"],text:"{0} + {1}"})},LineToolHorzRay:{},LineToolIcon:{},LineToolImage:{},LineToolEmoji:{},LineToolInsidePitchfork:{},LineToolNote:{},LineToolSignpost:{},LineToolParallelChannel:{hotKey:(0,l.hotKeySerialize)(m)},LineToolPitchfan:{},LineToolPitchfork:{},LineToolPolyline:{},LineToolPath:{},LineToolPrediction:{},LineToolPriceLabel:{},LineToolPriceNote:{hotKey:(0,l.hotKeySerialize)(m)},LineToolTextNote:{},LineToolArrowMarker:{},LineToolPriceRange:{},LineToolProjection:{},LineToolRay:{},LineToolRectangle:{hotKey:(0,l.hotKeySerialize)({keys:[u],text:i.t(null,void 0,o(10539))})},LineToolCircle:{},LineToolRegressionTrend:{},
|
||||
LineToolRiskRewardLong:{},LineToolRiskRewardShort:{},LineToolFixedRangeVolumeProfile:{},LineToolRotatedRectangle:{hotKey:(0,l.hotKeySerialize)(m)},LineToolSchiffPitchfork:{},LineToolSchiffPitchfork2:{},LineToolSineLine:{},LineToolText:{},LineToolTextAbsolute:{},LineToolThreeDrivers:{},LineToolTimeCycles:{},LineToolTrendAngle:{hotKey:(0,l.hotKeySerialize)(m)},LineToolTrendBasedFibExtension:{},LineToolTrendBasedFibTime:{},LineToolTrendLine:{hotKey:(0,l.hotKeySerialize)(m)},LineToolInfoLine:{},LineToolTriangle:{},LineToolTrianglePattern:{},LineToolVertLine:{hotKey:(0,l.hotKeySerialize)({keys:[v,"V"],text:"{0} + {1}"})},LineToolCrossLine:{},LineToolHighlighter:{},LineToolGhostFeed:{},LineToolTable:{},SyncDrawing:{iconActive:a.drawingToolsIcons.SyncDrawingActive},arrow:{},cursor:{},dot:{},demonstration:{hotKey:(0,l.hotKeySerialize)({keys:[v],text:i.t(null,void 0,o(42633))})},drawginmode:{iconActive:a.drawingToolsIcons.drawginmodeActive},eraser:{},group:{},hideAllDrawings:{iconActive:a.drawingToolsIcons.hideAllDrawingsActive,hotKey:(0,l.hotKeySerialize)({keys:[g,v,"H"],text:"{0} + {1} + {2}"})},lockAllDrawings:{iconActive:a.drawingToolsIcons.lockAllDrawingsActive},magnet:{hotKey:(0,l.hotKeySerialize)({keys:[g],text:"{0}"})},measure:{hotKey:(0,l.hotKeySerialize)({keys:[u],text:i.t(null,void 0,o(92949))})},removeAllDrawingTools:{},showObjectsTree:{},zoom:{},"zoom-out":{}};const b={};Object.entries(f).map((([e,t])=>{const o=s.lineToolsIcons[e]??a.drawingToolsIcons[e];(0,n.assert)(!!o,`Icon is not defined for drawing "${e}"`);const i=c.lineToolsLocalizedNames[e]??r[e];(0,n.assert)(!!i,`Localized name is not defined for drawing "${e}"`);return{...t,name:e,icon:o,localizedName:i,selectHotkey:d.lineToolsSelectHotkeys[e]}})).forEach((e=>{b[e.name]=e}))},23076:(e,t,o)=>{"use strict";o.r(t),o.d(t,{SERIES_ICONS:()=>p});var n=o(4475),i=o(94670),l=o(32162),s=o(39956),a=o(14083),r=o(45504),c=o(52867),h=o(41473),d=o(31246),u=o(15726),v=o(24464),g=o(71705),m=o(9450);const p={3:i,16:l,0:s,1:a,8:r,9:c,2:h,14:d,15:u,10:v,12:g,13:m};p[21]=n},26744:(e,t,o)=>{"use strict";o.d(t,{LinetoolsFavoritesStore:()=>c});var n=o(52033),i=o(37265),l=o(56840);const s=["LineToolBalloon","LineToolNoteAbsolute",null,null].filter(i.isExistent),a=!1;var r,c;!function(e){function t(){e.favorites=[];let t=!1;const n=Boolean(void 0===(0,l.getValue)("chart.favoriteDrawings")),r=(0,l.getJSON)("chart.favoriteDrawings",[]);if(0===r.length&&n&&"undefined"!=typeof window){const e=JSON.parse(window.urlParams?.favorites??"{}").drawingTools;e&&Array.isArray(e)&&r.push(...e)}r.forEach(((n,i)=>{const l=n.tool||n;o(l)?s.includes(l)?t=!0:e.favorites.push(l):a&&a.includes(l)&&e.hiddenToolsPositions.set(l,i)})),t&&i(),e.favoritesSynced.fire()}function o(e){return"string"==typeof e&&""!==e&&!(a&&a.includes(e))}function i(t){const o=e.favorites.slice();e.hiddenToolsPositions.forEach(((e,t)=>{o.splice(e,0,t)})),(0,l.setJSON)("chart.favoriteDrawings",o,t)}e.favorites=[],e.favoritesSynced=new n.Delegate,e.hiddenToolsPositions=new Map,e.favoriteIndex=function(t){
|
||||
return e.favorites.indexOf(t)},e.isValidLineToolName=o,e.saveFavorites=i,t(),l.onSync.subscribe(null,t)}(r||(r={})),function(e){function t(e){return r.isValidLineToolName(e)}function o(){return r.favorites.length}function i(e){return-1!==r.favoriteIndex(e)}e.favoriteAdded=new n.Delegate,e.favoriteRemoved=new n.Delegate,e.favoriteMoved=new n.Delegate,e.favoritesSynced=r.favoritesSynced,e.favorites=function(){return r.favorites.slice()},e.isValidLineToolName=t,e.favoritesCount=o,e.favorite=function(e){return e<0||e>=o()?"":r.favorites[e]},e.addFavorite=function(o,n){return!(i(o)||!t(o)||"performance"===o)&&(r.favorites.push(o),r.saveFavorites(n),e.favoriteAdded.fire(o),!0)},e.removeFavorite=function(t,o){const n=r.favoriteIndex(t);if(-1===n)return!1;r.favorites.splice(n,1);const i=r.hiddenToolsPositions;return i.forEach(((e,t)=>{e>n&&i.set(t,e-1)})),r.saveFavorites(o),e.favoriteRemoved.fire(t),!0},e.isFavorite=i,e.moveFavorite=function(n,i,l){if(i<0||i>=o()||!t(n))return!1;const s=r.favoriteIndex(n);if(-1===s||i===s)return!1;const a=r.hiddenToolsPositions;return a.forEach(((e,t)=>{s<e&&i>e?e--:i<e&&s>e&&e++,a.set(t,e)})),r.favorites.splice(s,1),r.favorites.splice(i,0,n),r.saveFavorites(l),e.favoriteMoved.fire(n,s,i),!0}}(c||(c={}))},16792:(e,t,o)=>{"use strict";function n(e){return e.charAt(0).toUpperCase()+e.substring(1)}o.d(t,{capitalizeFirstLetter:()=>n})},54780:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="m11.26 21 3.65-4.78 6.09-.66L10 8zm3.09-5.71-2.33 3.05-.8-8.3 7.02 4.82z"/><path fill-rule="evenodd" d="M25 14a11 11 0 1 1-22 0 11 11 0 0 1 22 0m-1 0a10 10 0 1 1-20 0 10 10 0 0 1 20 0"/></svg>'},52459:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M17.27 4.56a2.5 2.5 0 0 0-3.54 0l-.58.59-9 9-1 1-.15.14V20h4.7l.15-.15 1-1 9-9 .59-.58a2.5 2.5 0 0 0 0-3.54l-1.17-1.17Zm-2.83.7a1.5 1.5 0 0 1 2.12 0l1.17 1.18a1.5 1.5 0 0 1 0 2.12l-.23.23-3.3-3.29.24-.23Zm-.94.95 3.3 3.29-8.3 8.3-3.3-3.3 8.3-8.3Zm-9 9 3.3 3.29-.5.5H4v-3.3l.5-.5Zm16.5.29a1.5 1.5 0 0 0-3 0V18h4.5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-4c0-.83.67-1.5 1.5-1.5h.5v-2.5a2.5 2.5 0 0 1 5 0v.5h-1v-.5ZM16.5 19a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-6Zm2.5 4v-2h1v2h-1Z"/></svg>'},63975:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M17.27 4.56a2.5 2.5 0 0 0-3.54 0l-.58.59-9 9-1 1-.15.14V20h4.7l.15-.15 1-1 9-9 .59-.58a2.5 2.5 0 0 0 0-3.54l-1.17-1.17Zm-2.83.7a1.5 1.5 0 0 1 2.12 0l1.17 1.18a1.5 1.5 0 0 1 0 2.12l-.23.23-3.3-3.29.24-.23Zm-.94.95 3.3 3.29-8.3 8.3-3.3-3.3 8.3-8.3Zm-9 9 3.3 3.29-.5.5H4v-3.3l.5-.5Zm16.5.29a1.5 1.5 0 0 0-3 0V18h3v-2.5Zm1 0V18h.5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-4c0-.83.67-1.5 1.5-1.5h.5v-2.5a2.5 2.5 0 0 1 5 0ZM16.5 19a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-6Zm2.5 4v-2h1v2h-1Z"/></svg>'},94670:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="m25.35 5.35-9.5 9.5-.35.36-.35-.36-4.65-4.64-8.15 8.14-.7-.7 8.5-8.5.35-.36.35.36 4.65 4.64 9.15-9.14.7.7ZM2 21h1v1H2v-1Zm2-1H3v1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1V9h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1H9v1H8v1H7v1H6v1H5v1H4v1Zm1 0v1H4v-1h1Zm1 0H5v-1h1v1Zm1 0v1H6v-1h1Zm0-1H6v-1h1v1Zm1 0H7v1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1H9v1H8v1H7v1h1v1Zm1 0v1H8v-1h1Zm0-1H8v-1h1v1Zm1 0H9v1h1v1h1v-1h1v1h1v-1h1v1h1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1H9v1h1v1Zm1 0v1h-1v-1h1Zm0-1v-1h-1v1h1Zm0 0v1h1v1h1v-1h-1v-1h-1Zm6 2v-1h1v1h-1Zm2 0v1h-1v-1h1Zm0-1h-1v-1h1v1Zm1 0h-1v1h1v1h1v-1h1v1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h1v1Zm1 0h-1v1h1v-1Zm0-1h1v1h-1v-1Zm0-1h1v-1h-1v1Zm0 0v1h-1v-1h1Zm-4 3v1h-1v-1h1Z"/></svg>'},39956:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M19 6h-1v7h-3v1h3v8h1v-3h3v-1h-3V6ZM11 7h-1v13H7v1h3v2h1V10h3V9h-3V7Z"/></svg>'},24464:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="m10.49 7.55-.42.7-2.1 3.5.86.5 1.68-2.8 1.8 2.82.84-.54-2.23-3.5-.43-.68Zm12.32 4.72-.84-.54 2.61-4 .84.54-2.61 4Zm-5.3 6.3 1.2-1.84.84.54-1.63 2.5-.43.65-.41-.65-1.6-2.5.85-.54 1.17 1.85ZM4.96 16.75l.86.52-2.4 4-.86-.52 2.4-4ZM3 14v1h1v-1H3Zm2 0h1v1H5v-1Zm2 0v1h1v-1H7Zm2 0h1v1H9v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Z"/></svg>'},14083:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17 11v6h3v-6h-3zm-.5-1h4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5z"/><path d="M18 7h1v3.5h-1zm0 10.5h1V21h-1z"/><path d="M9 8v12h3V8H9zm-.5-1h4a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 .5-.5z"/><path d="M10 4h1v3.5h-1zm0 16.5h1V24h-1z"/></svg>'},53707:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><g fill="none"><path stroke="currentColor" d="M11 20.5H7.5a5 5 0 1 1 .42-9.98 7.5 7.5 0 0 1 14.57 2.1 4 4 0 0 1-1 7.877H18"/><path stroke="currentColor" d="M14.5 24V12.5M11 16l3.5-3.5L18 16"/></g></svg>'},9450:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M12 7v14h5V7h-5Zm4 1h-3v12h3V8ZM19 15v6h5v-6h-5Zm4 1h-3v4h3v-4ZM5 12h5v9H5v-9Zm1 1h3v7H6v-7Z"/></svg>'},1393:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M13.5 6a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17zM4 14.5a9.5 9.5 0 1 1 19 0 9.5 9.5 0 0 1-19 0z"/><path fill="currentColor" d="M9 14h4v-4h1v4h4v1h-4v4h-1v-4H9v-1z"/></svg>'},49697:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path d="M21 7v4h1V6h-5v1z"/><path d="M16.854 11.854l5-5-.708-.708-5 5zM7 7v4H6V6h5v1z"/><path d="M11.146 11.854l-5-5 .708-.708 5 5zM21 21v-4h1v5h-5v-1z"/><path d="M16.854 16.146l5 5-.708.708-5-5z"/><g><path d="M7 21v-4H6v5h5v-1z"/><path d="M11.146 16.146l-5 5 .708.708 5-5z"/></g></g></svg>'},34059:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" width="30" height="30"><path fill="currentColor" d="M5.5 13A2.5 2.5 0 0 0 3 15.5 2.5 2.5 0 0 0 5.5 18 2.5 2.5 0 0 0 8 15.5 2.5 2.5 0 0 0 5.5 13zm9.5 0a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 15 18a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 15 13zm9.5 0a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5z"/></svg>'},45504:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M9 8v12h3V8H9zm-1-.502C8 7.223 8.215 7 8.498 7h4.004c.275 0 .498.22.498.498v13.004a.493.493 0 0 1-.498.498H8.498A.496.496 0 0 1 8 20.502V7.498z"/><path d="M10 4h1v3.5h-1z"/><path d="M17 6v6h3V6h-3zm-1-.5c0-.276.215-.5.498-.5h4.004c.275 0 .498.23.498.5v7c0 .276-.215.5-.498.5h-4.004a.503.503 0 0 1-.498-.5v-7z"/><path d="M18 2h1v3.5h-1z"/></svg>'},71705:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M7.5 7H7v14h5V7H7.5zM8 20V8h3v12H8zm7.5-11H15v10h5V9h-4.5zm.5 9v-8h3v8h-3z"/></svg>'},32162:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path fill-rule="evenodd" d="M22 3h1v1h-1V3Zm0 2V4h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1V9h-1V8h-1V7h-1V6h-1V5h-1v1H9v1H8v1H7v1H6v1H5v1H4v1h1v1H4v1h1v-1h1v-1h1v-1h1v-1h1V9h1V8h1v1h1v1h1v1h1v1h1v1h1v-1h1v-1h1v-1h1V9h1V8h1V7h1V6h1V5h-1Zm-1 1V5h1v1h-1Zm-1 1V6h1v1h-1Zm-1 1V7h1v1h-1Zm-1 1V8h1v1h-1Zm-1 1V9h1v1h-1Zm-1 1v-1h1v1h-1Zm-1 0v-1h-1V9h-1V8h-1V7h-1V6h-1v1H9v1H8v1H7v1H6v1H5v1h1v-1h1v-1h1V9h1V8h1V7h1v1h1v1h1v1h1v1h1Zm0 0h1v1h-1v-1Zm.84 6.37 7.5-7-.68-.74-7.15 6.67-4.66-4.65-.33-.34-.36.32-5.5 5 .68.74 5.14-4.68 4.67 4.66.34.35.35-.33ZM6 23H5v1h1v-1Zm0-1H5v-1h1v1Zm1 0v1H6v-1h1Zm0-1H6v-1h1v1Zm1 0v1H7v-1h1Zm0-1H7v-1h1v1Zm1 0v1H8v-1h1Zm0-1H8v-1h1v1Zm1 0v1H9v-1h1Zm0-1H9v-1h1v1Zm1 0h-1v1h1v1h1v1h1v1h1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h-1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1h1v1Zm0 0h1v1h-1v-1Zm2 2v1h1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1Zm0 0v-1h-1v1h1Z"/></svg>'},4475:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M19 6h-1v7v9h1v-3h3v-1h-3V6ZM11 7h-1v16h1V10h3V9h-3V7Z"/></svg>'},52867:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17 11v6h3v-6h-3zm-.5-1h4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5z"/><path d="M18 7h1v3.5h-1zm0 10.5h1V21h-1z"/><path d="M9 8v11h3V8H9zm-.5-1h4a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-12a.5.5 0 0 1 .5-.5z"/><path d="M10 4h1v5h-1zm0 14h1v5h-1zM8.5 9H10v1H8.5zM11 9h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11z"/></svg>'},39681:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M20 17l-5 5M15 17l5 5M9 11.5h7M17.5 8a2.5 2.5 0 0 0-5 0v11a2.5 2.5 0 0 1-5 0"/></svg>'},31246:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path fill-rule="evenodd" d="m18.43 15.91 6.96-8.6-.78-.62-6.96 8.6a2.49 2.49 0 0 0-2.63.2l-2.21-2.02A2.5 2.5 0 0 0 10.5 10a2.5 2.5 0 1 0 1.73 4.3l2.12 1.92a2.5 2.5 0 1 0 4.08-.31ZM10.5 14a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm7.5 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/><path d="M8.37 13.8c.17.3.4.54.68.74l-5.67 6.78-.76-.64 5.75-6.88Z"/></svg>'},41473:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="m25.39 7.31-8.83 10.92-6.02-5.47-7.16 8.56-.76-.64 7.82-9.36 6 5.45L24.61 6.7l.78.62Z"/></svg>'},96052:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M18.293 13l-2.647 2.646.707.708 3.854-3.854-3.854-3.854-.707.708L18.293 12H12.5A5.5 5.5 0 0 0 7 17.5V19h1v-1.5a4.5 4.5 0 0 1 4.5-4.5h5.793z"/></svg>'},72644:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.118 6a.5.5 0 0 0-.447.276L9.809 8H5.5A1.5 1.5 0 0 0 4 9.5v10A1.5 1.5 0 0 0 5.5 21h16a1.5 1.5 0 0 0 1.5-1.5v-10A1.5 1.5 0 0 0 21.5 8h-4.309l-.862-1.724A.5.5 0 0 0 15.882 6h-4.764zm-1.342-.17A1.5 1.5 0 0 1 11.118 5h4.764a1.5 1.5 0 0 1 1.342.83L17.809 7H21.5A2.5 2.5 0 0 1 24 9.5v10a2.5 2.5 0 0 1-2.5 2.5h-16A2.5 2.5 0 0 1 3 19.5v-10A2.5 2.5 0 0 1 5.5 7h3.691l.585-1.17z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 18a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9z"/></svg>'},15726:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M19 5h5v1h-4v13h-6v-7h-4v12H5v-1h4V11h6v7h4V5Z"/></svg>'},63743:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M11.682 16.09l3.504 6.068 1.732-1-3.497-6.057 3.595-2.1L8 7.74v10.512l3.682-2.163zm-.362 1.372L7 20V6l12 7-4.216 2.462 3.5 6.062-3.464 2-3.5-6.062z"/></svg>'},18953:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path d="M18 15h8v-1h-8z"/><path d="M14 18v8h1v-8zM14 3v8h1v-8zM3 15h8v-1h-8z"/></g></svg>'},72196:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><circle fill="currentColor" cx="14" cy="14" r="3"/></svg>'},27999:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 31" width="29" height="31"><g fill="currentColor" fill-rule="nonzero"><path d="M15.3 22l8.187-8.187c.394-.394.395-1.028.004-1.418l-4.243-4.243c-.394-.394-1.019-.395-1.407-.006l-11.325 11.325c-.383.383-.383 1.018.007 1.407l1.121 1.121h7.656zm-9.484-.414c-.781-.781-.779-2.049-.007-2.821l11.325-11.325c.777-.777 2.035-.78 2.821.006l4.243 4.243c.781.781.78 2.048-.004 2.832l-8.48 8.48h-8.484l-1.414-1.414z"/><path d="M13.011 22.999h7.999v-1h-7.999zM13.501 11.294l6.717 6.717.707-.707-6.717-6.717z"/></g></svg>'},10862:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M24.13 14.65a6.2 6.2 0 0 0-.46-9.28c-2.57-2.09-6.39-1.71-8.75.6l-.92.91-.92-.9c-2.36-2.32-6.18-2.7-8.75-.61a6.2 6.2 0 0 0-.46 9.28l9.07 8.92c.58.57 1.53.57 2.12 0l9.07-8.92Zm-9.77 8.2 9.07-8.91a5.2 5.2 0 0 0-.39-7.8c-2.13-1.73-5.38-1.45-7.42.55L14 8.29l-1.62-1.6c-2.03-2-5.29-2.28-7.42-.55a5.2 5.2 0 0 0-.4 7.8l9.08 8.91c.2.2.52.2.72 0Z"/></svg>'},68385:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor" fill-rule="evenodd"><path fill-rule="nonzero" d="M14 10a2 2 0 0 0-2 2v11H6V12c0-4.416 3.584-8 8-8s8 3.584 8 8v11h-6V12a2 2 0 0 0-2-2zm-3 2a3 3 0 0 1 6 0v10h4V12c0-3.864-3.136-7-7-7s-7 3.136-7 7v10h4V12z"/><path d="M6.5 18h5v1h-5zm10 0h5v1h-5z"/></g></svg>'},88518:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" d="M2 9.75a1.5 1.5 0 0 0-1.5 1.5v5.5a1.5 1.5 0 0 0 1.5 1.5h24a1.5 1.5 0 0 0 1.5-1.5v-5.5a1.5 1.5 0 0 0-1.5-1.5zm0 1h3v2.5h1v-2.5h3.25v3.9h1v-3.9h3.25v2.5h1v-2.5h3.25v3.9h1v-3.9H22v2.5h1v-2.5h3a.5.5 0 0 1 .5.5v5.5a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5v-5.5a.5.5 0 0 1 .5-.5z" transform="rotate(-45 14 14)"/></svg>'},36515:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path fill-rule="nonzero" d="M14 18.634l-.307-.239-7.37-5.73-2.137-1.665 9.814-7.633 9.816 7.634-.509.394-1.639 1.269-7.667 5.969zm7.054-6.759l1.131-.876-8.184-6.366-8.186 6.367 1.123.875 7.063 5.491 7.054-5.492z"/><path d="M7 14.5l-1 .57 8 6.43 8-6.5-1-.5-7 5.5z"/><path d="M7 17.5l-1 .57 8 6.43 8-6.5-1-.5-7 5.5z"/></g></svg>'},7636:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M4.05 14a9.95 9.95 0 1 1 19.9 0 9.95 9.95 0 0 1-19.9 0ZM14 3a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm-3 13.03a.5.5 0 0 1 .64.3 2.5 2.5 0 0 0 4.72 0 .5.5 0 0 1 .94.34 3.5 3.5 0 0 1-6.6 0 .5.5 0 0 1 .3-.64Zm.5-4.53a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>'},62567:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M7 4h14a3 3 0 0 1 3 3v11c0 .34-.03.67-.08 1H20.3c-1.28 0-2.31.97-2.31 2.24V24H7a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Zm12 19.92A6 6 0 0 0 23.66 20H20.3c-.77 0-1.31.48-1.31 1.24v2.68ZM3 7a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v11a7 7 0 0 1-7 7H7a4 4 0 0 1-4-4V7Zm8 9.03a.5.5 0 0 1 .64.3 2.5 2.5 0 0 0 4.72 0 .5.5 0 0 1 .94.34 3.5 3.5 0 0 1-6.6 0 .5.5 0 0 1 .3-.64Zm.5-4.53a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>'},46049:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="nonzero" d="M14 5a7 7 0 0 0-7 7v3h4v-3a3 3 0 1 1 6 0v3h4v-3a7 7 0 0 0-7-7zm7 11h-4v3h4v-3zm-10 0H7v3h4v-3zm-5-4a8 8 0 1 1 16 0v8h-6v-8a2 2 0 1 0-4 0v8H6v-8zm3.293 11.294l-1.222-2.037.858-.514 1.777 2.963-2 1 1.223 2.037-.858.514-1.778-2.963 2-1zm9.778-2.551l.858.514-1.223 2.037 2 1-1.777 2.963-.858-.514 1.223-2.037-2-1 1.777-2.963z"/></svg>'},99088:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path fill-rule="nonzero" d="M15.039 5.969l-.019-.019-2.828 2.828.707.707 2.474-2.474c1.367-1.367 3.582-1.367 4.949 0s1.367 3.582 0 4.949l-2.474 2.474.707.707 2.828-2.828-.019-.019c1.415-1.767 1.304-4.352-.334-5.99-1.638-1.638-4.224-1.749-5.99-.334zM5.97 15.038l-.019-.019 2.828-2.828.707.707-2.475 2.475c-1.367 1.367-1.367 3.582 0 4.949s3.582 1.367 4.949 0l2.474-2.474.707.707-2.828 2.828-.019-.019c-1.767 1.415-4.352 1.304-5.99-.334-1.638-1.638-1.749-4.224-.334-5.99z"/><path d="M10.485 16.141l5.656-5.656.707.707-5.656 5.656z"/></g></svg>'},42650:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M19.76 6.07l-.7.7a13.4 13.4 0 011.93 2.47c.19.3.33.55.42.72l.03.04-.03.04a15 15 0 01-2.09 2.9c-1.47 1.6-3.6 3.12-6.32 3.12-.98 0-1.88-.2-2.7-.52l-.77.76c1.03.47 2.18.76 3.47.76 3.12 0 5.5-1.75 7.06-3.44a16 16 0 002.38-3.38v-.02h.01L22 10l.45.22.1-.22-.1-.22L22 10l.45-.22-.01-.02a5.1 5.1 0 00-.15-.28 16 16 0 00-2.53-3.41zM6.24 13.93l.7-.7-.27-.29a15 15 0 01-2.08-2.9L4.56 10l.03-.04a15 15 0 012.09-2.9c1.47-1.6 3.6-3.12 6.32-3.12.98 0 1.88.2 2.7.52l.77-.76A8.32 8.32 0 0013 2.94c-3.12 0-5.5 1.75-7.06 3.44a16 16 0 00-2.38 3.38v.02h-.01L4 10l-.45-.22-.1.22.1.22L4 10l-.45.22.01.02a5.5 5.5 0 00.15.28 16 16 0 002.53 3.41zm6.09-.43a3.6 3.6 0 004.24-4.24l-.93.93a2.6 2.6 0 01-2.36 2.36l-.95.95zm-1.97-3.69l-.93.93a3.6 3.6 0 014.24-4.24l-.95.95a2.6 2.6 0 00-2.36 2.36zm11.29 7.84l-.8.79a1.5 1.5 0 000 2.12l.59.59a1.5 1.5 0 002.12 0l1.8-1.8-.71-.7-1.8 1.79a.5.5 0 01-.7 0l-.59-.59a.5.5 0 010-.7l.8-.8-.71-.7zm-5.5 3.5l.35.35-.35-.35.01-.02.02-.02.02-.02a4.68 4.68 0 01.65-.5c.4-.27 1-.59 1.65-.59.66 0 1.28.33 1.73.77.44.45.77 1.07.77 1.73a2.5 2.5 0 01-.77 1.73 2.5 2.5 0 01-1.73.77h-4a.5.5 0 01-.42-.78l1-1.5 1-1.5a.5.5 0 01.07-.07zm.74.67a3.46 3.46 0 01.51-.4c.35-.24.75-.42 1.1-.42.34 0 .72.17 1.02.48.3.3.48.68.48 1.02 0 .34-.17.72-.48 1.02-.3.3-.68.48-1.02.48h-3.07l.49-.72.97-1.46zM21.2 2.5L5.5 18.2l-.7-.7L20.5 1.8l.7.7z"/></svg>'},75895:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" d="M16.47 3.7A8.32 8.32 0 0013 2.94c-3.12 0-5.5 1.75-7.06 3.44a16 16 0 00-2.38 3.38v.02h-.01L4 10l-.45-.22-.1.22.1.22L4 10l-.45.22.01.02a5.5 5.5 0 00.15.28 16 16 0 002.53 3.41l.7-.7-.27-.29a15 15 0 01-2.08-2.9L4.56 10l.03-.04a15 15 0 012.09-2.9c1.47-1.6 3.6-3.12 6.32-3.12.98 0 1.88.2 2.7.52l.77-.76zm-7.04 7.04l.93-.93a2.6 2.6 0 012.36-2.36l.95-.95a3.6 3.6 0 00-4.24 4.24zm.1 5.56c1.03.47 2.18.76 3.47.76 3.12 0 5.5-1.75 7.06-3.44a16 16 0 002.38-3.38v-.02h.01L22 10l.45.22.1-.22-.1-.22L22 10l.45-.22-.01-.02-.02-.03-.01-.03a9.5 9.5 0 00-.57-1 16 16 0 00-2.08-2.63l-.7.7.27.29a15.01 15.01 0 012.08 2.9l.03.04-.03.04a15 15 0 01-2.09 2.9c-1.47 1.6-3.6 3.12-6.32 3.12-.98 0-1.88-.2-2.7-.52l-.77.76zm2.8-2.8a3.6 3.6 0 004.24-4.24l-.93.93a2.6 2.6 0 01-2.36 2.36l-.95.95zm7.9 3.73c-.12.12-.23.35-.23.77v2h1v1h-1v2c0 .58-.14 1.1-.52 1.48-.38.38-.9.52-1.48.52s-1.1-.14-1.48-.52c-.38-.38-.52-.9-.52-1.48h1c0 .42.1.65.23.77.12.12.35.23.77.23.42 0 .65-.1.77-.23.12-.12.23-.35.23-.77v-2h-1v-1h1v-2c0-.58.14-1.1.52-1.48.38-.38.9-.52 1.48-.52s1.1.14 1.48.52c.38.38.52.9.52 1.48h-1c0-.42-.1-.65-.23-.77-.12-.12-.35-.23-.77-.23-.42 0-.65.1-.77.23zm2.56 6.27l-1.14-1.15.7-.7 1.15 1.14 1.15-1.14.7.7-1.14 1.15 1.14 1.15-.7.7-1.15-1.14-1.15 1.14-.7-.7 1.14-1.15zM21.2 2.5L5.5 18.2l-.7-.7L20.5 1.8l.7.7z"/></svg>'},65162:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M5.5 18.2L21.2 2.5l-.7-.7L4.8 17.5l.7.7zM19.05 6.78l.71-.7a14.26 14.26 0 0 1 2.08 2.64 14.26 14.26 0 0 1 .6 1.05v.02h.01L22 10l.45.22-.01.02a5.18 5.18 0 0 1-.15.28 16 16 0 0 1-2.23 3.1c-1.56 1.69-3.94 3.44-7.06 3.44-1.29 0-2.44-.3-3.47-.76l.76-.76c.83.32 1.73.52 2.71.52 2.73 0 4.85-1.53 6.33-3.12a15.01 15.01 0 0 0 2.08-2.9l.03-.04-.03-.04a15 15 0 0 0-2.36-3.18zM22 10l.45-.22.1.22-.1.22L22 10zM6.94 13.23l-.7.7a14.24 14.24 0 0 1-2.08-2.64 14.28 14.28 0 0 1-.6-1.05v-.02h-.01L4 10l-.45-.22.01-.02a5.55 5.55 0 0 1 .15-.28 16 16 0 0 1 2.23-3.1C7.5 4.69 9.88 2.94 13 2.94c1.29 0 2.44.3 3.47.76l-.76.76A7.27 7.27 0 0 0 13 3.94c-2.73 0-4.85 1.53-6.33 3.12a15 15 0 0 0-2.08 2.9l-.03.04.03.04a15.01 15.01 0 0 0 2.36 3.18zM4 10l-.45.22-.1-.22.1-.22L4 10zm9 3.56c-.23 0-.46-.02-.67-.06l.95-.95a2.6 2.6 0 0 0 2.36-2.36l.93-.93a3.6 3.6 0 0 1-3.57 4.3zm-3.57-2.82l.93-.93a2.6 2.6 0 0 1 2.36-2.36l.95-.95a3.6 3.6 0 0 0-4.24 4.24zM17.5 21.9l3.28 2.18a.5.5 0 1 1-.56.84L17.5 23.1l-2.72 1.82a.5.5 0 1 1-.56-.84l3.28-2.18zM18.58 19.22a.5.5 0 0 1 .7-.14L22 20.9l2.72-1.82a.5.5 0 0 1 .56.84L22 22.1l-3.28-2.18a.5.5 0 0 1-.14-.7z"/></svg>'},65186:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M14 6a3 3 0 0 0-3 3v3h6V9a3 3 0 0 0-3-3zm4 6V9a4 4 0 0 0-8 0v3H8.5A2.5 2.5 0 0 0 6 14.5v7A2.5 2.5 0 0 0 8.5 24h11a2.5 2.5 0 0 0 2.5-2.5v-7a2.5 2.5 0 0 0-2.5-2.5H18zm-5 5a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2zm-6-2.5c0-.83.67-1.5 1.5-1.5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 7 21.5v-7z"/></svg>'},91244:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M14 6a3 3 0 0 0-3 3v3h8.5a2.5 2.5 0 0 1 2.5 2.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 6 21.5v-7A2.5 2.5 0 0 1 8.5 12H10V9a4 4 0 0 1 8 0h-1a3 3 0 0 0-3-3zm-1 11a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2zm-6-2.5c0-.83.67-1.5 1.5-1.5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 7 21.5v-7z"/></svg>'},45820:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M4.56 14a10.05 10.05 0 00.52.91c.41.69 1.04 1.6 1.85 2.5C8.58 19.25 10.95 21 14 21c3.05 0 5.42-1.76 7.07-3.58A17.18 17.18 0 0023.44 14a9.47 9.47 0 00-.52-.91c-.41-.69-1.04-1.6-1.85-2.5C19.42 8.75 17.05 7 14 7c-3.05 0-5.42 1.76-7.07 3.58A17.18 17.18 0 004.56 14zM24 14l.45-.21-.01-.03a7.03 7.03 0 00-.16-.32c-.11-.2-.28-.51-.5-.87-.44-.72-1.1-1.69-1.97-2.65C20.08 7.99 17.45 6 14 6c-3.45 0-6.08 2-7.8 3.92a18.18 18.18 0 00-2.64 3.84v.02h-.01L4 14l-.45-.21-.1.21.1.21L4 14l-.45.21.01.03a5.85 5.85 0 00.16.32c.11.2.28.51.5.87.44.72 1.1 1.69 1.97 2.65C7.92 20.01 10.55 22 14 22c3.45 0 6.08-2 7.8-3.92a18.18 18.18 0 002.64-3.84v-.02h.01L24 14zm0 0l.45.21.1-.21-.1-.21L24 14zm-10-3a3 3 0 100 6 3 3 0 000-6zm-4 3a4 4 0 118 0 4 4 0 01-8 0z"/></svg>'},93756:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M5 10.76l-.41-.72-.03-.04.03-.04a15 15 0 012.09-2.9c1.47-1.6 3.6-3.12 6.32-3.12 2.73 0 4.85 1.53 6.33 3.12a15.01 15.01 0 012.08 2.9l.03.04-.03.04a15 15 0 01-2.09 2.9c-1.47 1.6-3.6 3.12-6.32 3.12-2.73 0-4.85-1.53-6.33-3.12a15 15 0 01-1.66-2.18zm17.45-.98L22 10l.45.22-.01.02a5.04 5.04 0 01-.15.28 16.01 16.01 0 01-2.23 3.1c-1.56 1.69-3.94 3.44-7.06 3.44-3.12 0-5.5-1.75-7.06-3.44a16 16 0 01-2.38-3.38v-.02h-.01L4 10l-.45-.22.01-.02a5.4 5.4 0 01.15-.28 16 16 0 012.23-3.1C7.5 4.69 9.88 2.94 13 2.94c3.12 0 5.5 1.75 7.06 3.44a16.01 16.01 0 012.38 3.38v.02h.01zM22 10l.45-.22.1.22-.1.22L22 10zM3.55 9.78L4 10l-.45.22-.1-.22.1-.22zm6.8.22A2.6 2.6 0 0113 7.44 2.6 2.6 0 0115.65 10 2.6 2.6 0 0113 12.56 2.6 2.6 0 0110.35 10zM13 6.44A3.6 3.6 0 009.35 10 3.6 3.6 0 0013 13.56c2 0 3.65-1.58 3.65-3.56A3.6 3.6 0 0013 6.44zm7.85 12l.8-.8.7.71-.79.8a.5.5 0 000 .7l.59.59c.2.2.5.2.7 0l1.8-1.8.7.71-1.79 1.8a1.5 1.5 0 01-2.12 0l-.59-.59a1.5 1.5 0 010-2.12zM16.5 21.5l-.35-.35a.5.5 0 00-.07.07l-1 1.5-1 1.5a.5.5 0 00.42.78h4a2.5 2.5 0 001.73-.77A2.5 2.5 0 0021 22.5a2.5 2.5 0 00-.77-1.73A2.5 2.5 0 0018.5 20a3.1 3.1 0 00-1.65.58 5.28 5.28 0 00-.69.55v.01h-.01l.35.36zm.39.32l-.97 1.46-.49.72h3.07c.34 0 .72-.17 1.02-.48.3-.3.48-.68.48-1.02 0-.34-.17-.72-.48-1.02-.3-.3-.68-.48-1.02-.48-.35 0-.75.18-1.1.42a4.27 4.27 0 00-.51.4z"/></svg>'},42321:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M5 10.76a13.27 13.27 0 01-.41-.72L4.56 10l.03-.04a15 15 0 012.08-2.9c1.48-1.6 3.6-3.12 6.33-3.12s4.85 1.53 6.33 3.12a15.01 15.01 0 012.08 2.9l.03.04-.03.04a15 15 0 01-2.08 2.9c-1.48 1.6-3.6 3.12-6.33 3.12s-4.85-1.53-6.33-3.12a15 15 0 01-1.66-2.18zm17.45-.98L22 10l.45.22-.01.02a14.3 14.3 0 01-.6 1.05c-.4.64-1 1.48-1.78 2.33-1.56 1.7-3.94 3.44-7.06 3.44s-5.5-1.75-7.06-3.44a16 16 0 01-2.23-3.1 9.39 9.39 0 01-.15-.28v-.02h-.01L4 10l-.45-.22.01-.02a5.59 5.59 0 01.15-.28 16 16 0 012.23-3.1C7.5 4.69 9.87 2.94 13 2.94c3.12 0 5.5 1.75 7.06 3.44a16 16 0 012.23 3.1 9.5 9.5 0 01.15.28v.01l.01.01zM22 10l.45-.22.1.22-.1.22L22 10zM3.55 9.78L4 10l-.45.22-.1-.22.1-.22zm6.8.22A2.6 2.6 0 0113 7.44 2.6 2.6 0 0115.65 10 2.6 2.6 0 0113 12.56 2.6 2.6 0 0110.35 10zM13 6.44A3.6 3.6 0 009.35 10c0 1.98 1.65 3.56 3.65 3.56s3.65-1.58 3.65-3.56A3.6 3.6 0 0013 6.44zM20 18c0-.42.1-.65.23-.77.12-.13.35-.23.77-.23.42 0 .65.1.77.23.13.12.23.35.23.77h1c0-.58-.14-1.1-.52-1.48-.38-.38-.9-.52-1.48-.52s-1.1.14-1.48.52c-.37.38-.52.9-.52 1.48v2h-1v1h1v2c0 .42-.1.65-.23.77-.12.13-.35.23-.77.23-.42 0-.65-.1-.77-.23-.13-.12-.23-.35-.23-.77h-1c0 .58.14 1.1.52 1.48.38.37.9.52 1.48.52s1.1-.14 1.48-.52c.37-.38.52-.9.52-1.48v-2h1v-1h-1v-2zm1.65 4.35l1.14 1.15-1.14 1.15.7.7 1.15-1.14 1.15 1.14.7-.7-1.14-1.15 1.14-1.15-.7-.7-1.15 1.14-1.15-1.14-.7.7z"/></svg>'},57313:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M4.5 10a8.46 8.46 0 0 0 .46.8c.38.6.94 1.4 1.68 2.19 1.48 1.6 3.62 3.13 6.36 3.13s4.88-1.53 6.36-3.13A15.07 15.07 0 0 0 21.5 10a7.41 7.41 0 0 0-.46-.8c-.38-.6-.94-1.4-1.68-2.19-1.48-1.6-3.62-3.13-6.36-3.13S8.12 5.4 6.64 7A15.07 15.07 0 0 0 4.5 10zM22 10l.41-.19-.4.19zm0 0l.41.19-.4-.19zm.41.19l.09-.19-.09-.19-.01-.02a6.86 6.86 0 0 0-.15-.28c-.1-.18-.25-.45-.45-.76-.4-.64-.99-1.48-1.77-2.32C18.47 4.74 16.11 3 13 3 9.89 3 7.53 4.74 5.97 6.43A15.94 15.94 0 0 0 3.6 9.79v.02h-.01L3.5 10l.09.19.01.02a6.59 6.59 0 0 0 .15.28c.1.18.25.45.45.76.4.64.99 1.48 1.77 2.32C7.53 15.26 9.89 17 13 17c3.11 0 5.47-1.74 7.03-3.43a15.94 15.94 0 0 0 2.37-3.36v-.02h.01zM4 10l-.41-.19.4.19zm9-2.63c-1.5 0-2.7 1.18-2.7 2.63s1.2 2.63 2.7 2.63c1.5 0 2.7-1.18 2.7-2.63S14.5 7.37 13 7.37zM9.4 10C9.4 8.07 11 6.5 13 6.5s3.6 1.57 3.6 3.5S15 13.5 13 13.5A3.55 3.55 0 0 1 9.4 10zm8.1 11.9l3.28 2.18a.5.5 0 1 1-.56.84L17.5 23.1l-2.72 1.82a.5.5 0 1 1-.56-.84l3.28-2.18zm1.78-2.82a.5.5 0 0 0-.56.84L22 22.1l3.28-2.18a.5.5 0 1 0-.56-.84L22 20.9l-2.72-1.82z"/></svg>'},6894:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17.646 18.354l4 4 .708-.708-4-4z"/><path d="M12.5 21a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17zm0-1a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15z"/><path d="M9 13h7v-1H9z"/><path d="M13 16V9h-1v7z"/></svg>'},45360:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17.646 18.354l4 4 .708-.708-4-4z"/><path d="M12.5 21a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17zm0-1a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15z"/><path d="M9 13h7v-1H9z"/></svg>'},77665:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M8.707 13l2.647 2.646-.707.708L6.792 12.5l3.853-3.854.708.708L8.707 12H14.5a5.5 5.5 0 0 1 5.5 5.5V19h-1v-1.5a4.5 4.5 0 0 0-4.5-4.5H8.707z"/></svg>'},90752:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M5.5 13v-2.5m8.5 11h6.5a2 2 0 0 0 2-2v-9m-17 0v-2c0-1.1.9-2 2-2h13a2 2 0 0 1 2 2v2m-17 0h17"/><path fill="currentColor" d="M10 4h1v4h-1V4zM17 4h1v4h-1V4z"/><path stroke="currentColor" d="M4 18.5h7.5m0 0L8 22m3.5-3.5L8 15"/></svg>'},81111:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M4 6.5C4 5.67 4.67 5 5.5 5h4.2l.15.15L11.71 7h8.79c.83 0 1.5.67 1.5 1.5V11H5V20.5c0 .28.22.5.5.5H9v1H5.5A1.5 1.5 0 0 1 4 20.5V6.5zM5 10h16V8.5a.5.5 0 0 0-.5-.5h-9.2l-.15-.15L9.29 6H5.5a.5.5 0 0 0-.5.5V10z"/><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M14.85 16.85l3.5-3.5-.7-.7-3.5 3.5a1.5 1.5 0 1 0 0 2.7l1.64 1.65-1.64 1.65a1.5 1.5 0 1 0 .7.7l1.65-1.64 1.65 1.64a1.5 1.5 0 1 0 2.7 0l3.5-3.5-.7-.7-3.5 3.5a1.5 1.5 0 0 0-1.3 0l-1.64-1.65 4.14-4.15-.7-.7-4.15 4.14-1.65-1.64a1.5 1.5 0 0 0 0-1.3zm-.85.65a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm6 6a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-6.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1z"/></svg>'},30192:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M13.39 3.84a1 1 0 0 1 1.22 0l8.19 6.37a1 1 0 0 1 0 1.58l-8.19 6.37a1 1 0 0 1-1.22 0L5.2 11.79a1 1 0 0 1 0-1.58l8.19-6.37zm.61.8L5.81 11 14 17.37 22.19 11 14 4.63zM5.3 13.6l8.7 6.76 8.7-6.76.6.78-8.69 6.77a1 1 0 0 1-1.22 0l-8.7-6.77.62-.78zm8.09 10.55l-8.7-6.77.62-.78L14 23.37l8.7-6.76.6.78-8.69 6.77a1 1 0 0 1-1.22 0z"/></svg>'},55883:(e,t,o)=>{"use strict";o.d(t,{default:()=>n});const n=function(){}}}]);
|
||||
@@ -1,32 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[9754,1754,9685,2544],{62435:e=>{e.exports={wrap:"wrap-HAxAr6QG",image:"image-HAxAr6QG",text:"text-HAxAr6QG"}},21466:e=>{e.exports={section:"section-Og4Rg_SK",heading:"heading-Og4Rg_SK"}},94587:e=>{e.exports={item:"item-nuuDM7vP",normal:"normal-nuuDM7vP",big:"big-nuuDM7vP",selected:"selected-nuuDM7vP",contentCell:"contentCell-nuuDM7vP",content:"content-nuuDM7vP",favourite:"favourite-nuuDM7vP",favoriteActionCell:"favoriteActionCell-nuuDM7vP",iconCell:"iconCell-nuuDM7vP",icon:"icon-nuuDM7vP",checkboxInput:"checkboxInput-nuuDM7vP",label:"label-nuuDM7vP"}},27027:e=>{e.exports={dialog:"dialog-UAy2ZKyS",wrap:"wrap-UAy2ZKyS",empty:"empty-UAy2ZKyS",image:"image-UAy2ZKyS",emptyState:"emptyState-UAy2ZKyS"}},67797:e=>{e.exports={menuWrap:"menuWrap-Kq3ruQo8",isMeasuring:"isMeasuring-Kq3ruQo8",scrollWrap:"scrollWrap-Kq3ruQo8",momentumBased:"momentumBased-Kq3ruQo8",menuBox:"menuBox-Kq3ruQo8",isHidden:"isHidden-Kq3ruQo8"}},43010:(e,t,o)=>{"use strict";o.d(t,{useIsomorphicLayoutEffect:()=>i});var n=o(50959);function i(e,t){("undefined"==typeof window?n.useEffect:n.useLayoutEffect)(e,t)}},36383:(e,t,o)=>{"use strict";o.d(t,{useOutsideEvent:()=>s});var n=o(50959),i=o(43010),l=o(27267);function s(e){const{click:t,mouseDown:o,touchEnd:s,touchStart:a,handler:r,reference:c}=e,h=(0,n.useRef)(null),d=(0,n.useRef)("undefined"==typeof window?0:new window.CustomEvent("timestamp").timeStamp);return(0,i.useIsomorphicLayoutEffect)((()=>{const e={click:t,mouseDown:o,touchEnd:s,touchStart:a},n=c?c.current:h.current;return(0,l.addOutsideEventListener)(d.current,n,r,document,e)}),[t,o,s,a,r]),c||h}},9745:(e,t,o)=>{"use strict";o.d(t,{Icon:()=>i});var n=o(50959);const i=n.forwardRef(((e,t)=>{const{icon:o="",title:i,ariaLabel:l,ariaLabelledby:s,ariaHidden:a,...r}=e,c=!!(i||l||s);return n.createElement("span",{role:"img",...r,ref:t,"aria-label":l,"aria-labelledby":s,"aria-hidden":a||!c,title:i,dangerouslySetInnerHTML:{__html:o}})}))},83021:(e,t,o)=>{"use strict";o.d(t,{SubmenuContext:()=>i,SubmenuHandler:()=>l});var n=o(50959);const i=n.createContext(null);function l(e){const[t,o]=(0,n.useState)(null),l=(0,n.useRef)(null),s=(0,n.useRef)(new Map);return(0,n.useEffect)((()=>()=>{null!==l.current&&clearTimeout(l.current)}),[]),n.createElement(i.Provider,{value:{current:t,setCurrent:function(e){null!==l.current&&(clearTimeout(l.current),l.current=null);null===t?o(e):l.current=setTimeout((()=>{l.current=null,o(e)}),100)},registerSubmenu:function(e,t){return s.current.set(e,t),()=>{s.current.delete(e)}},isSubmenuNode:function(e){return Array.from(s.current.values()).some((t=>t(e)))}}},e.children)}},99663:(e,t,o)=>{"use strict";o.d(t,{Slot:()=>i,SlotContext:()=>l});var n=o(50959);class i extends n.Component{shouldComponentUpdate(){return!1}render(){return n.createElement("div",{style:{position:"fixed",zIndex:150,left:0,top:0},ref:this.props.reference})}}const l=n.createContext(null)},67961:(e,t,o)=>{"use strict";o.d(t,{OverlapManager:()=>s,getRootOverlapManager:()=>r})
|
||||
;var n=o(50151),i=o(34811);class l{constructor(){this._storage=[]}add(e){this._storage.push(e)}remove(e){this._storage=this._storage.filter((t=>e!==t))}has(e){return this._storage.includes(e)}getItems(){return this._storage}}class s{constructor(e=document){this._storage=new l,this._windows=new Map,this._index=0,this._document=e,this._container=e.createDocumentFragment()}setContainer(e){const t=this._container,o=null===e?this._document.createDocumentFragment():e;!function(e,t){Array.from(e.childNodes).forEach((e=>{e.nodeType===Node.ELEMENT_NODE&&t.appendChild(e)}))}(t,o),this._container=o}registerWindow(e){this._storage.has(e)||this._storage.add(e)}ensureWindow(e,t={position:"fixed",direction:"normal"}){const o=this._windows.get(e);if(void 0!==o)return o;this.registerWindow(e);const n=this._document.createElement("div");if(n.style.position=t.position,n.style.zIndex=this._index.toString(),n.dataset.id=e,void 0!==t.index){const e=this._container.childNodes.length;if(t.index>=e)this._container.appendChild(n);else if(t.index<=0)this._container.insertBefore(n,this._container.firstChild);else{const e=this._container.childNodes[t.index];this._container.insertBefore(n,e)}}else"reverse"===t.direction?this._container.insertBefore(n,this._container.firstChild):this._container.appendChild(n);return this._windows.set(e,n),++this._index,n}unregisterWindow(e){this._storage.remove(e);const t=this._windows.get(e);void 0!==t&&(null!==t.parentElement&&t.parentElement.removeChild(t),this._windows.delete(e))}getZindex(e){const t=this.ensureWindow(e);return parseInt(t.style.zIndex||"0")}moveLastWindowToTop(){const e=this._storage.getItems(),t=e[e.length-1];t&&this.moveToTop(t)}moveToTop(e){if(this.getZindex(e)!==this._index){const t=this.ensureWindow(e);this._windows.forEach(((e,o)=>{e.hasAttribute(i.FOCUS_TRAP_DATA_ATTRIBUTE)&&e.setAttribute(i.FOCUS_TRAP_DATA_ATTRIBUTE,e===t?"true":"false")})),t.style.zIndex=(++this._index).toString()}}removeWindow(e){this.unregisterWindow(e)}}const a=new WeakMap;function r(e=document){const t=e.getElementById("overlap-manager-root");if(null!==t)return(0,n.ensureDefined)(a.get(t));{const t=new s(e),o=function(e){const t=e.createElement("div");return t.style.position="absolute",t.style.zIndex=150..toString(),t.style.top="0px",t.style.left="0px",t.id="overlap-manager-root",t}(e);return a.set(o,t),t.setContainer(o),e.body.appendChild(o),t}}var c;!function(e){e[e.BaseZindex=150]="BaseZindex"}(c||(c={}))},99054:(e,t,o)=>{"use strict";o.d(t,{setFixedBodyState:()=>c});const n=(()=>{let e;return()=>{if(void 0===e){const t=document.createElement("div"),o=t.style;o.visibility="hidden",o.width="100px",o.msOverflowStyle="scrollbar",document.body.appendChild(t);const n=t.offsetWidth;t.style.overflow="scroll";const i=document.createElement("div");i.style.width="100%",t.appendChild(i);const l=i.offsetWidth;t.parentNode?.removeChild(t),e=n-l}return e}})();function i(e,t,o){null!==e&&e.style.setProperty(t,o)}function l(e,t){return getComputedStyle(e,null).getPropertyValue(t)}function s(e,t){return parseInt(l(e,t))}
|
||||
let a=0,r=!1;function c(e){const{body:t}=document,o=t.querySelector(".widgetbar-wrap");if(e&&1==++a){const e=l(t,"overflow"),a=s(t,"padding-right");"hidden"!==e.toLowerCase()&&t.scrollHeight>t.offsetHeight&&(i(o,"right",`${n()}px`),t.style.paddingRight=`${a+n()}px`,r=!0),t.classList.add("i-no-scroll")}else if(!e&&a>0&&0==--a&&(t.classList.remove("i-no-scroll"),r)){i(o,"right","0px");let e=0;0,t.scrollHeight<=t.clientHeight&&(e-=n()),t.style.paddingRight=(e<0?0:e)+"px",r=!1}}},89324:(e,t,o)=>{"use strict";o.r(t),o.d(t,{Components:()=>h,showDefaultSearchDialog:()=>c,showSymbolSearchItemsDialog:()=>s.showSymbolSearchItemsDialog});var n=o(82992),i=(o(32563),o(79652)),l=o(94664),s=o(1861),a=o(64147),r=o(84015);o(56570),o(49483);!(0,r.isOnMobileAppPage)("any")&&window.matchMedia("(min-width: 602px) and (min-height: 445px)").matches;function c(e){new a.WatchedValue({});const t=(0,l.getSymbolSearchCompleteOverrideFunction)(),{defaultValue:o,showSpreadActions:r,source:c,onSearchComplete:h,trackResultsOptions:d,...u}=e,v={...u,showSpreadActions:r??(0,i.canShowSpreadActions)(),onSymbolFiltersParamsChange:void 0,onSearchComplete:(e,o)=>{t(e[0].symbol,e[0].result).then((e=>{n.linking.setSymbolAndLogInitiator(e.symbol,"symbol search"),h?.(e.symbol)}))},onEmptyResults:void 0};(0,s.showSymbolSearchItemsDialog)({...v,defaultValue:o})}const h={SymbolSearchWatchlistDialogContentItem:null,SymbolSearchWatchlistDialog:null}},1861:(e,t,o)=>{"use strict";o.d(t,{showSymbolSearchItemsDialog:()=>r});var n=o(50959),i=o(50655),l=o(51826),s=o(73280),a=o(87896);function r(e){const{symbolTypeFilter:t,initialMode:o="symbolSearch",autofocus:r=!0,defaultValue:c,showSpreadActions:h,selectSearchOnInit:d,onSearchComplete:u,dialogTitle:v,placeholder:g,fullscreen:m,initialScreen:p,wrapper:w,dialog:f,contentItem:b,onClose:y,onOpen:T,footer:S,symbolTypes:x,searchInput:L,emptyState:C,hideMarkedListFlag:M,dialogWidth:A="auto",manager:_,shouldReturnFocus:z,onSymbolFiltersParamsChange:E,onEmptyResults:k,customSearchSymbols:H,enableOptionsChain:P}=e;if(l.dialogsOpenerManager.isOpened("SymbolSearch")||l.dialogsOpenerManager.isOpened("ChangeIntervalDialog"))return;const R=document.createElement("div"),D=n.createElement(i.SlotContext.Provider,{value:_??null},n.createElement(s.SymbolSearchItemsDialog,{symbolTypeFilter:t,onClose:F,initialMode:o,defaultValue:c,showSpreadActions:h,hideMarkedListFlag:M,selectSearchOnInit:d,onSearchComplete:u,dialogTitle:v,placeholder:g,fullscreen:m,initialScreen:p,wrapper:w,dialog:f,contentItem:b,footer:S,symbolTypes:x,searchInput:L,emptyState:C,autofocus:r,dialogWidth:A,shouldReturnFocus:z,onSymbolFiltersParamsChange:E,onEmptyResults:k,customSearchSymbols:H,enableOptionsChain:P})),I=(0,a.createReactRoot)(D,R);function F(){I.unmount(),l.dialogsOpenerManager.setAsClosed("SymbolSearch"),y&&y()}return l.dialogsOpenerManager.setAsOpened("SymbolSearch"),T&&T(),{close:F}}},46350:(e,t,o)=>{"use strict";o.r(t),o.d(t,{GlobalSearchDialogRenderer:()=>Qe})
|
||||
;var n=o(50959),i=o(77788),l=o(29280),s=o(90484),a=o(11542),r=o(56840),c=o(10087),h=o(37265),d=o(69654),u=o(97754),v=o.n(u),g=o(9745),m=o(24633),p=o(45345),w=o(67562),f=o(66619),b=o(62435);function y(e){const{text:t,showIcon:o=!0,className:i}=e,l=p.watchedTheme.value()===m.StdTheme.Dark?f:w;return n.createElement("div",{className:u(b.wrap,i)},o&&n.createElement(g.Icon,{icon:l,className:b.image}),n.createElement("span",{className:b.text},t))}var T=o(79418),S=o(55883),x=o(40173),L=o(5304),C=o(10772),M=o(74670),A=o(94587);const _=(0,x.mergeThemes)(L.DEFAUL_CONTEXT_MENU_ITEM_THEME,A);function z(e){const{action:t,onExecute:o}=e,[i,l]=(0,M.useActiveDescendant)(null);return n.createElement(C.ContextMenuAction,{theme:_,onShowSubMenu:S.default,isSubMenuOpened:!1,checkboxInput:!0,reference:i,selected:l,action:t,onExecute:()=>o(t),className:v()("apply-overflow-tooltip","apply-overflow-tooltip-focus","apply-overflow-tooltip--direction_y","apply-overflow-tooltip--check-children-recursively"),"data-overflow-tooltip-text":t.getLabel()})}var E=o(21466);function k(e){const{heading:t,items:o,onExecute:i,getActionIndex:l}=e;return n.createElement("table",{className:E.section},n.createElement("tbody",null,n.createElement("tr",null,n.createElement("td",{className:E.heading},t)),o.map((e=>n.createElement(z,{key:e.id,action:e,onExecute:i,index:l(e)})))))}var H=o(27027);const P=[{name:"drawingsActions",label:a.t(null,void 0,o(74385))},{name:"functionActions",label:a.t(null,void 0,o(83576))},{name:"settingsActions",label:a.t(null,void 0,o(32514))}];function R(e){const{dialogId:t,items:i,onClose:l,shouldReturnFocus:u}=e,[v,g]=(0,n.useState)(""),[m,p]=(0,n.useState)([]),w=(0,n.useRef)(null),f=(0,n.useRef)(null),b=(0,n.useRef)(null);(0,n.useEffect)((()=>{w.current?.focus()}),[]),(0,n.useEffect)((()=>{const e=w.current;if(e)return e.addEventListener("input",D),D(),()=>{e&&e.removeEventListener("input",D)}}),[]);const S=(0,n.useCallback)((0,s.default)((e=>{}),1e3),[]),x=(0,n.useCallback)((0,s.default)(l,200),[]);(0,n.useEffect)((()=>()=>{S.flush(),x.cancel()}),[]);const L=(0,n.useMemo)((()=>{const e=new Set(r.getJSON("GlobalSearchDialog.recent",[])),t=[];for(const o of e){const e=i.find((e=>e.getState().id===o));e&&t.push(e)}return t.reverse(),t}),[]),C=(0,n.useMemo)((()=>P.reduce(((e,t)=>(e.set(t.name,m.filter((e=>e.getState().category===t.name))),e)),new Map)),[m]),{handleKeyDown:M,handleForceFocus:A,handleSearchRefBlur:_,onDialogClick:z,resetFocusState:E}=(0,c.useSearchDialogKeyboardNavigation)({dialogRef:f,searchInputRef:w,contentContainerRef:b,getNextFocusedItemIndex:function(e,t){const o=null===e?1===t?-1:0:e;for(let e=1;e<=m.length;e++){const n=(m.length+e*t+o)%m.length;if(!m[n].isDisabled())return n}return null},isNavigationDisabled:!m.length,scrollToFocusedItem:function(e){e?.scrollIntoView({block:"nearest"})},onEscapeClick:l,getElementIdByIndex:function(e,t){let o=m[e].id;null!=t&&(o+="-favorite");return CSS.escape(o)}});return n.createElement(T.AdaptivePopupDialog,{ref:f,dataName:t,title:a.t(null,void 0,o(79354)),onClose:l,
|
||||
onClickOutside:l,shouldReturnFocus:u,render:()=>n.createElement(n.Fragment,null,n.createElement(d.DialogSearch,{reference:w,onBlur:_}),n.createElement("div",{className:H.wrap,ref:b},v?n.createElement(n.Fragment,null,m.length?P.map((e=>{const t=C.get(e.name);return t&&t.length?n.createElement(k,{key:e.name,heading:e.label,items:t,onExecute:R,getActionIndex:F}):null})):n.createElement(y,{text:a.t(null,void 0,o(47202)),className:H.emptyState})):n.createElement(n.Fragment,null,Boolean(m.length)?n.createElement(k,{heading:a.t(null,void 0,o(76753)),items:m,onExecute:R,getActionIndex:F}):n.createElement(y,{text:a.t(null,void 0,o(27463)),showIcon:!1,className:H.emptyState})))),onKeyDown:M,className:H.dialog,onForceFocus:A,onClick:z,isOpened:!0});function R(e){const t=new Set(r.getJSON("GlobalSearchDialog.recent",[])),o=e.getState().id;t.has(o)&&t.delete(o),t.add(o),r.setJSON("GlobalSearchDialog.recent",Array.from(t).slice(-10)),e.getState().checkable?x():l()}function D(){E();const e=w.current?w.current.value.toLocaleLowerCase().trim():"";if(g(e),e){const t=i.filter((t=>I(t).includes(e)||function(e,t){const{aliases:o}=t.getState();if(o)return o.some((t=>t.toLowerCase().includes(e)));return!1}(e,t))).sort((t=>I(t)===e?-1:0));p(t),t.length||S(e)}else p(L)}function I(e){const{label:t}=e.getState();return(0,h.isString)(t)?t.toLocaleLowerCase():""}function F(e){return m.findIndex((t=>t.id===e.id))}}var D,I=o(68335),F=o(82992),V=o(86235),Z=o(34585),O=o(56570),B=o(29023);!function(e){e.Drawings="drawingsActions",e.Function="functionActions",e.Settings="settingsActions"}(D||(D={}));class W extends B.Action{constructor({id:e,category:t,favourite:o,onFavouriteClick:n,hotkeyGroup:i,hotkeyHash:l,aliases:s,optionsLoader:a,onStartListening:r,...c}){super({actionId:"UnknownAction",options:{...c,doNotCloseOnClick:!0},id:e,optionsLoader:a,onStartListening:r}),this.execute=()=>{super.execute()},this.getState=()=>({...super.getState(),id:this._searchOptions.id,category:this._searchOptions.category,favourite:this._searchOptions.favourite,onFavouriteClick:this._onFavouriteClick,aliases:this._searchOptions.aliases}),this.update=e=>{this._searchOptions=Object.assign(this._searchOptions,e),super.update(e)},this._onFavouriteClick=e=>{this._searchOptions.onFavouriteClick&&(this.update({favourite:!this._searchOptions.favourite}),this._searchOptions.onFavouriteClick(e))},this._searchOptions={id:e,category:t,favourite:o,onFavouriteClick:n,aliases:s}}}var N,K=o(45126),U=o(49483),G=o(19475);!function(e){e.None="all",e.Following="following",e.Private="private"}(N||(N={}));var q=o(84425),j=o(42989),$=o(23076),Q=o(85662),J=o(16792),Y=o(3615),X=o(58519);function ee(e){const t=e.match(/^(\d+).(\d+).(\d+)/);if(!t)return null;const[,o,n,i]=t;return[parseInt(o),parseInt(n),parseInt(i)]}function te(e){const t=(0,U.desktopAppVersion)();return!!t&&function(e,t){const o=ee(e),n=ee(t);if(!o||!n)return!1;const[i,l,s]=o,[a,r,c]=n;return i!==a?i<a:l!==r?l<r:s!==c&&s<c}(t,e)}const oe=e=>{const t=t=>{const n=[];if(t&&t.length&&window.is_authenticated&&t.forEach((t=>{
|
||||
n.push(new W({id:t,category:"settingsActions",label:`${a.t(null,void 0,o(53438))} ${Q.translateStdThemeName(t)}`,onExecute:()=>{(0,X.loadTheme)(e.chartWidgetCollection(),{themeName:t,standardTheme:!1}).then((()=>{e.readOnly()||window.saver.saveChartSilently()}))}}))})),!(0,U.isDesktopApp)()||te("1.0.10")){const[,t]=Q.getStdThemeNames();n.push(new W({id:"DarkColorTheme",category:"settingsActions",label:a.t(null,void 0,o(25848)),checkable:!0,checked:Q.getCurrentTheme().name===t,onExecute:()=>{!function(e){const t=(0,Q.getCurrentTheme)().name===m.StdTheme.Dark?m.StdTheme.Light:m.StdTheme.Dark,n=e.chartModels().value().every((e=>null!==e.model().getThemeNameIfStdTheme())),i=()=>{(0,X.loadTheme)(e,{themeName:t,standardTheme:!0}).then((()=>{e.readOnly()||window.saver.saveChartSilently()}))};if(n)i();else{const e=a.t(null,void 0,o(78659)).format({name:(0,J.capitalizeFirstLetter)(t)});(0,Y.showConfirm)({text:e,onConfirm:({dialogClose:e})=>{i(),e()},onCancel:({dialogClose:e})=>{(0,p.setTheme)(t),(0,Q.syncTheme)(),e()}})}}(e.chartWidgetCollection())}}))}return n};return window.is_authenticated?Q.getThemeNames().then(t):Promise.resolve(t())};var ne=o(928),ie=o(81171);o(32679);var le=o(92693),se=o(84243),ae=o(90995);const{DrawingSyncMode:re}=ne,ce={drawings:"ToggleHideAllDrawingTools",indicators:"ToggleHideAllIndicators",positions:"ToggleHideAllPositions",all:"ToggleHideAll"},he=new K.TranslatedString("stay in drawing mode",a.t(null,void 0,o(4114))),de=new K.TranslatedString("sync drawings",a.t(null,void 0,o(94521))),ue=a.t(null,void 0,o(62518)),ve=a.t(null,void 0,o(23391)),ge=(a.t(null,void 0,o(93027)),a.t(null,void 0,o(3521)),a.t(null,void 0,o(79451))),me=a.t(null,void 0,o(3519)),pe=a.t(null,void 0,o(94593));var we=o(80387),fe=o(62400),be=o(89324);class ye extends W{constructor(e){super({label:a.t(null,void 0,o(37189)),id:"InvertScale",category:"settingsActions",checkable:!0,onExecute:()=>{this._model.invertPriceScale(this._model.mainSeries().priceScale())},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+73)}),this._model=e;(this._props=this._model.mainSeries().priceScale().properties().childs().isInverted).subscribe(this,(()=>{this._onUpdate.fire(this)}))}destroy(){super.destroy(),this._props.unsubscribeAll(this)}isChecked(){return this._model.mainSeries().priceScale().isInverted()}}class Te extends W{constructor(e){super({label:a.t(null,void 0,o(6919)),checkable:!0,id:"TogglePercantage",category:"settingsActions",onExecute:()=>{this.isChecked()?this._model.setPriceScaleRegularScaleMode(this._model.mainSeries().priceScale()):this._model.togglePriceScalePercentageScaleMode(this._model.mainSeries().priceScale())},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+80),disabled:e.mainSeries().priceScale().isLockScale()||6===e.mainSeries().properties().childs().style.value(),checked:e.mainSeries().priceScale().isPercentage()}),this._model=e;(this._props=this._model.mainSeries().priceScale().properties().childs().percentage).subscribe(this,(()=>{this._onUpdate.fire(this)}))}destroy(){super.destroy(),
|
||||
this._props.unsubscribeAll(this)}isChecked(){return this._model.mainSeries().priceScale().isPercentage()}}class Se extends W{constructor(e){super({label:a.t(null,void 0,o(16170)),id:"ToggleLogScale",category:"settingsActions",checkable:!0,onExecute:()=>{this.isChecked()?this._model.setPriceScaleRegularScaleMode(this._model.mainSeries().priceScale()):this._model.togglePriceScaleLogScaleMode(this._model.mainSeries().priceScale())},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+76),disabled:e.mainSeries().priceScale().isLockScale()||6===e.mainSeries().properties().childs().style.value(),checked:e.mainSeries().priceScale().isLog()}),this._model=e;(this._props=this._model.mainSeries().priceScale().properties().childs().log).subscribe(this,(()=>{this._onUpdate.fire(this)}))}destroy(){super.destroy(),this._props.unsubscribeAll(this)}isChecked(){return this._model.mainSeries().priceScale().isLog()}}var xe=o(27906);const Le=O.enabled("show_average_close_price_line_and_label"),Ce=new K.TranslatedString("change session",a.t(null,void 0,o(87041))),Me=new K.TranslatedString("change plus button visibility",a.t(null,void 0,o(96379))),Ae=new K.TranslatedString("change countdown to bar close visibility",a.t(null,void 0,o(39383))),_e=new K.TranslatedString("scale price chart only",a.t(null,void 0,o(63796))),ze=new K.TranslatedString("change symbol last value visibility",a.t(null,void 0,o(67453))),Ee=new K.TranslatedString("change high and low price labels visibility",a.t(null,void 0,o(24226))),ke=new K.TranslatedString("change average close price label visibility",a.t(null,void 0,o(76852))),He=new K.TranslatedString("change indicators and financials value labels visibility",a.t(null,void 0,o(71161))),Pe=new K.TranslatedString("change indicators and financials name labels visibility",a.t(null,void 0,o(35111))),Re=new K.TranslatedString("change high and low price lines visibility",a.t(null,void 0,o(80692))),De=new K.TranslatedString("change average close price line visibility",a.t(null,void 0,o(1022))),Ie=new K.TranslatedString("change symbol labels visibility",a.t(null,void 0,o(73357))),Fe=(new K.TranslatedString("change pre/post market price label visibility",a.t(null,void 0,o(30870))),new K.TranslatedString("change symbol previous close value visibility",a.t(null,void 0,o(4729))),new K.TranslatedString("change previous close price line visibility",a.t(null,void 0,o(58419)))),Ve=(new K.TranslatedString("change bid and ask labels visibility",a.t(null,void 0,o(69362))),new K.TranslatedString("change bid and ask lines visibility",a.t(null,void 0,o(52919))),new K.TranslatedString("change pre/post market price lines visibility",a.t(null,void 0,o(91978))),new K.TranslatedString("change price line visibility",a.t(null,void 0,o(8662)))),Ze=new K.TranslatedString("change session breaks visibility",a.t(null,void 0,o(38413))),Oe=(new K.TranslatedString("change ideas visibility on chart",a.t(null,void 0,o(13489))),new K.TranslatedString("show all ideas",a.t(null,void 0,o(13336))),
|
||||
new K.TranslatedString("show ideas of followed users",a.t(null,void 0,o(91395))),new K.TranslatedString("show my ideas only",a.t(null,void 0,o(57460))),new K.TranslatedString("change events visibility on chart",a.t(null,void 0,o(6119))),new K.TranslatedString("change earnings visibility",a.t(null,void 0,o(6819))),new K.TranslatedString("change dividends visibility",a.t(null,void 0,o(53929))),new K.TranslatedString("change splits visibility",a.t(null,void 0,o(47474))),{0:a.t(null,void 0,o(19265)),1:a.t(null,void 0,o(64526)),9:a.t(null,void 0,o(44958)),2:a.t(null,void 0,o(92911)),14:a.t(null,void 0,o(35458)),15:a.t(null,void 0,o(40447)),3:a.t(null,void 0,o(9537)),16:a.t(null,void 0,o(39883)),4:a.t(null,void 0,o(80082)),7:a.t(null,void 0,o(11604)),5:a.t(null,void 0,o(47189)),6:a.t(null,void 0,o(22027)),8:a.t(null,void 0,o(62423)),10:a.t(null,void 0,o(19579)),11:a.t(null,void 0,o(49942)),12:a.t(null,void 0,o(70405)),13:a.t(null,void 0,o(56281)),17:a.t(null,void 0,o(21190)),18:a.t(null,void 0,o(94861)),19:a.t(null,void 0,o(13618)),20:a.t(null,void 0,o(67346))});async function Be(e){const t=[],[n,i]=await Promise.all([oe(e),Promise.resolve(null)]),l=(e=>{const t=[],{stayInDrawingMode:o,drawOnAllCharts:n,drawOnAllChartsMode:i}=ne.properties().childs();t.push(new W({label:ue,checkable:!0,checked:o.value(),id:"ToggleStayInDrawingMode",category:"settingsActions",onExecute:()=>{e.model().setProperty(o,!o.value(),he)}})),t.push(new W({label:ve,checkable:!0,id:"ToggleSyncDrawings",category:"settingsActions",checked:n.value(),disabled:!e.isMultipleLayout().value(),onExecute:()=>{e.model().setProperty(n,!n.value(),de)}}));const l=ne.lockDrawings();t.push(new W({label:ge,checkable:!0,id:"ToggleLockDrawings",category:"settingsActions",checked:l.value(),onExecute:()=>{ne.lockDrawings().setValue(!ne.lockDrawings().value())}}));const s=(0,ae.getSavedHideMode)();t.push(...Array.from((0,ae.getHideOptions)()).map((([e,t])=>new W({label:t.tooltip.inactive,checkable:!0,id:ce[e],category:"settingsActions",checked:s===e&&(0,ae.getHideModeStateValue)(e),onExecute:()=>(0,ae.toggleHideMode)(e)}))));const{magnet:a,magnetMode:r}=ne.properties().childs();return t.push(new W({label:me,checkable:!0,id:"WeakMagnet",category:"functionActions",checked:a.value()&&r.value()===le.MagnetMode.WeakMagnet,icon:se.drawingToolsIcons.magnet,onExecute:()=>{a.value()&&r.value()===le.MagnetMode.WeakMagnet?(0,ie.setIsMagnetEnabled)(!1):(0,ie.setMagnetMode)(le.MagnetMode.WeakMagnet)}})),t.push(new W({label:pe,checkable:!0,id:"StrongMagnet",category:"functionActions",checked:a.value()&&r.value()===le.MagnetMode.StrongMagnet,icon:se.drawingToolsIcons.strongMagnet,onExecute:()=>{a.value()&&r.value()===le.MagnetMode.StrongMagnet?(0,ie.setIsMagnetEnabled)(!1):(0,ie.setMagnetMode)(le.MagnetMode.StrongMagnet)}})),t})(e),s=function(e){const t=[];return O.enabled("header_widget")&&O.enabled("header_compare")&&t.push(new W({icon:o(1393),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(57e3))),id:"Compare",category:"functionActions",onExecute:()=>e.toggleCompareOrAdd()})),
|
||||
O.enabled("header_widget")&&O.enabled("header_indicators")&&t.push(new W({icon:o(39681),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(87829))),id:"InsertIndicator",category:"functionActions",onExecute:()=>{e.showIndicators([])},shortcutHint:e.options().indicatorsDialogShortcutEnabled?(0,I.humanReadableHash)(47):void 0})),O.enabled("show_object_tree")&&t.push(new W({icon:o(30192),label:a.t(null,void 0,o(27077)),id:"OpenObjectsTreeInRightPanel",category:"functionActions",onExecute:()=>e.showObjectsTreePanelOrDialog()})),O.enabled("header_widget")&&O.enabled("header_settings")&&t.push(new W({label:(0,Z.appendEllipsis)(a.t(null,void 0,o(32514))),icon:o(34369),id:"ChartProperties",category:"functionActions",onExecute:()=>{e.showGeneralChartProperties()}})),O.enabled("header_widget")&&O.enabled("header_symbol_search")&&t.push(new W({icon:o(6347),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(63245))),id:"ChangeSymbol",category:"functionActions",onExecute:()=>{(0,be.showDefaultSearchDialog)({defaultValue:"",trackResultsOptions:void 0,enableOptionsChain:O.enabled("symbol_search_option_chain_selector")})}})),O.enabled("symbol_info")&&t.push(new W({label:(0,Z.appendEllipsis)(a.t(null,void 0,o(75594))),icon:o(37924),id:"SymbolInfo",category:"functionActions",onExecute:()=>{{const t=e.model().model(),o=t.mainSeries().symbolInfo(),n=t.availableUnits(),i={symbolInfo:o,showUnit:t.unitConversionEnabled(),unitDescription:e=>e?n.description(e):"",dateFormatter:t.dateFormatter()};return void(0,we.showSymbolInfoDialog)(i)}}})),e.options().goToDateEnabled&&t.push(new W({label:(0,Z.appendEllipsis)(a.t(null,void 0,o(54280))),icon:o(90752),id:"GoToDate",category:"functionActions",onExecute:()=>{(0,fe.showGoToDateDialog)(e)},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+71)})),t.filter((e=>null!==e))}(e);t.push(...n,...l,...s),i&&t.push(...i);const r=e.model().mainSeries(),c=r.priceScale(),h=r.properties().childs(),d=e.model().paneForSource?.(r);t.push(new W({id:"ResetPriceScale",category:"functionActions",label:a.t(null,void 0,o(15332)),icon:o(39267),onExecute:()=>{d&&e.model().resetPriceScale(d,c)},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+82)})),t.push(new ye(e.model())),t.push(new Te(e.model())),t.push(new Se(e.model()));const u=c.isLockScale(),v=6===h.style.value();t.push(new W({label:a.t(null,void 0,o(28051)),checkable:!0,id:"SetRegularSessionId",category:"functionActions",disabled:Boolean("regular"===r.symbolInfo()?.subsession_id),onExecute:()=>{e.model().setProperty(h.sessionId,"regular",Ce)},checked:Boolean("regular"===r.symbolInfo()?.subsession_id)})),t.push(new W({label:a.t(null,void 0,o(93308)),checkable:!0,id:"SetExtendedSessionId",category:"functionActions",disabled:!r.symbolInfo()?.subsessions?.some((e=>!e.private&&"extended"===e.id)),onExecute:()=>{const t="extended"===r.symbolInfo()?.subsession_id?"regular":"extended";e.model().setProperty(h.sessionId,t,Ce)},checked:Boolean("extended"===r.symbolInfo()?.subsession_id)})),t.push(new W({label:a.t(null,void 0,o(14017)),checkable:!0,id:"ToggleLockScale",
|
||||
category:"settingsActions",onExecute:()=>{e.model().togglePriceScaleLockScaleMode(e.model().mainSeries().priceScale())},checked:c.isLockScale()})),t.push(new W({label:a.t(null,void 0,o(89999)),checkable:!0,id:"ToggleIndexedTo100",category:"settingsActions",onExecute:()=>{c.isIndexedTo100()?e.model().setPriceScaleRegularScaleMode(e.model().mainSeries().priceScale()):e.model().togglePriceScaleIndexedTo100ScaleMode(e.model().mainSeries().priceScale())},disabled:u||v,checked:c.isIndexedTo100()})),t.push(new W({id:"AutoFitsToScreen",category:"settingsActions",label:a.t(null,void 0,o(24157)),checkable:!0,onExecute:()=>{e.model().togglePriceScaleAutoScaleMode(c)},checked:c.isAutoScale(),disabled:c.properties().childs().autoScaleDisabled.value()})),t.push(new W({label:a.t(null,{context:"scale_menu"},o(55300)),checkable:!0,id:"ToggleRegularScale",category:"settingsActions",onExecute:()=>{e.model().setPriceScaleRegularScaleMode(c)},disabled:u||v||c.isRegular(),checked:c.isRegular()}));const g=e.model().model().priceScaleSlotsCount(),m=0===g.left;t.push(new W({label:m?a.t(null,void 0,o(26493)):a.t(null,void 0,o(40789)),id:"MoveScaleToSide",category:"functionActions",disabled:g.left+g.right!==1,onExecute:()=>{e.model().mergeAllScales(m?"left":"right")}})),t.push(new W({label:a.t(null,void 0,o(7276)),id:"MergeAllScalesToLeft",category:"functionActions",disabled:g.left+g.right===1,onExecute:()=>{e.model().mergeAllScales("left")}})),t.push(new W({label:a.t(null,void 0,o(80219)),id:"MergeAllScalesToRight",category:"functionActions",disabled:g.left+g.right===1,onExecute:()=>{e.model().mergeAllScales("right")}})),t.push(new W({label:a.t(null,void 0,o(71566)),checkable:!0,checked:G.addPlusButtonProperty.value(),id:"ToggleAddOrderPlusButton",category:"settingsActions",onExecute:()=>{e.model().setProperty(G.addPlusButtonProperty,!G.addPlusButtonProperty.value(),Me)}}));const p=e.properties().childs().scalesProperties.childs(),w=h.showCountdown;t.push(new W({label:a.t(null,void 0,o(83140)),checkable:!0,id:"ToggleCountdown",category:"settingsActions",checked:w.value(),onExecute:()=>{e.model().setProperty(w,!w.value(),Ae)}}));const f=p.scaleSeriesOnly;t.push(new W({label:a.t(null,void 0,o(43758)),checkable:!0,id:"ScalePriceChartOnly",category:"settingsActions",checked:f.value(),onExecute:()=>{e.model().setProperty(f,!f.value(),_e)}}));const b=p.showSeriesLastValue;t.push(new W({label:a.t(null,void 0,o(10127)),checkable:!0,id:"ToggleSymbolLastValue",category:"settingsActions",checked:b.value(),onExecute:()=>{e.model().setProperty(b,!b.value(),ze)}}));const y=h.highLowAvgPrice.childs();t.push(new W({label:a.t(null,void 0,o(99479)),checkable:!0,id:"ToggleHighLowPriceLabels",category:"settingsActions",checked:y.highLowPriceLabelsVisible.value(),onExecute:()=>{e.model().setProperty(y.highLowPriceLabelsVisible,!y.highLowPriceLabelsVisible.value(),Ee)}})),Le&&t.push(new W({label:a.t(null,void 0,o(21841)),checkable:!0,id:"ToggleAverageClosePriceLabel",category:"settingsActions",checked:y.averageClosePriceLabelVisible.value(),onExecute:()=>{
|
||||
const t=!y.averageClosePriceLabelVisible.value();e.model().setProperty(y.averageClosePriceLabelVisible,t,ke)}}));const T=p.showSymbolLabels;t.push(new W({label:a.t(null,void 0,o(32390)),checkable:!0,id:"ToggleSymbolLabels",category:"settingsActions",checked:T.value(),onExecute:()=>{e.model().setProperty(T,!T.value(),Ie)}}));const S=(0,q.combineProperty)(((e,t)=>e||t),p.showStudyLastValue.weakReference(),p.showFundamentalLastValue.weakReference());t.push(new W({label:a.t(null,void 0,o(46850)),checkable:!0,id:"ToggleStudyLastValue",category:"settingsActions",checked:S.value(),onExecute:()=>{const t=!S.value();e.model().beginUndoMacro(He),e.model().setProperty(p.showStudyLastValue,t,null),e.model().setProperty(p.showFundamentalLastValue,t,null),e.model().endUndoMacro()},onDestroy:()=>{S.destroy()}}));const x=(0,q.combineProperty)(((e,t)=>e||t),p.showStudyPlotLabels.weakReference(),p.showFundamentalNameLabel.weakReference());t.push(new W({label:a.t(null,void 0,o(54418)),checkable:!0,id:"ToggleIndicatorsLabels",category:"settingsActions",checked:x.value(),onExecute:()=>{e.model().beginUndoMacro(Pe);const t=!x.value();e.model().setProperty(p.showStudyPlotLabels,t,null),e.model().setProperty(p.showFundamentalNameLabel,t,null),e.model().endUndoMacro()},onDestroy:()=>{x.destroy()}})),t.push(new W({label:a.t(null,void 0,o(33766)),checkable:!0,id:"ToggleHighLowPriceLines",category:"settingsActions",checked:y.highLowPriceLinesVisible.value(),onExecute:()=>{e.model().setProperty(y.highLowPriceLinesVisible,!y.highLowPriceLinesVisible.value(),Re)}})),Le&&t.push(new W({label:a.t(null,void 0,o(16138)),checkable:!0,id:"ToggleAverageClosePriceLine",category:"settingsActions",checked:y.averageClosePriceLineVisible.value(),onExecute:()=>{const t=!y.averageClosePriceLineVisible.value();e.model().setProperty(y.averageClosePriceLineVisible,t,De)}}));const L=h.showPriceLine;t.push(new W({label:a.t(null,void 0,o(72926)),checkable:!0,id:"TogglePriceLine",category:"settingsActions",checked:L.value(),onExecute:()=>{e.model().setProperty(L,!L.value(),Ve)}}));const C=h.showPrevClosePriceLine;t.push(new W({label:a.t(null,void 0,o(79366)),checkable:!0,id:"ToggleSymbolPrevCloseLine",disabled:e.model().mainSeries().isDWM(),category:"settingsActions",checked:C.value(),onExecute:()=>{e.model().setProperty(C,!C.value(),Fe)}})),t.push(new W({label:a.t(null,void 0,o(54170)),icon:o(39267),id:"ResetTimeScale",category:"functionActions",onExecute:()=>{e.model().resetTimeScale()},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Mod+I.Modifiers.Alt+81)}));const M=e.model().model().sessions().properties().childs().sessionHighlight.childs().vertlines.childs().sessBreaks.childs().visible,A=(0,q.createWVFromProperty)(e.model().mainSeries().isDWMProperty()),_=new W({label:a.t(null,void 0,o(66707)),checkable:!0,id:"ToggleSessionBreaks",category:"settingsActions",disabled:A.value(),checked:M.value(),onExecute:()=>{e.model().setProperty(M,!M.value(),Ze)},onDestroy:()=>A.destroy()});if(A.subscribe((()=>_.update({disabled:A.value()}))),t.push(_),t.push(new W({
|
||||
label:a.t(null,void 0,o(31789)),icon:o(39267),id:"ResetChart",category:"functionActions",onExecute:()=>e.GUIResetScales(),shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+82)})),t.push(new W({icon:o(93544),label:a.t(null,void 0,o(99984)),id:"RemoveAllIndicators",category:"functionActions",onExecute:()=>e.removeAllStudies()})),t.push(new W({icon:o(93544),label:a.t(null,void 0,o(96374)),id:"RemoveAllDrawingTools",category:"functionActions",onExecute:()=>e.removeAllDrawingTools()})),t.push(new W({icon:o(93544),label:a.t(null,void 0,o(4474)),id:"RemoveAllIndicatorsAndDrawingTools",category:"functionActions",onExecute:()=>e.removeAllStudiesDrawingTools()})),t.push(new W({label:a.t(null,void 0,o(22437)),id:"ApplyIndicatorsToAllCharts",category:"functionActions",disabled:!e.applyIndicatorsToAllChartsAvailable(),onExecute:()=>{e.chartWidgetCollection().applyIndicatorsToAllCharts(e)}})),O.enabled("header_widget")&&O.enabled("header_undo_redo")&&(t.push(new W({id:"Undo",category:"functionActions",icon:o(77665),label:a.t(null,void 0,o(14804)),onExecute:()=>{e.model().undoHistory().undo()},disabled:e.model().undoHistory().undoStack().isEmpty(),shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Mod+90)})),t.push(new W({id:"Redo",category:"functionActions",icon:o(96052),label:a.t(null,void 0,o(48236)),onExecute:()=>{e.model().undoHistory().redo()},disabled:e.model().undoHistory().redoStack().isEmpty(),shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Mod+89)}))),t.push(new W({label:a.t(null,void 0,o(12754)),id:"MoveChartRight",category:"functionActions",disabled:!e.chartWidgetCollection().activeChartCanBeMoved().value(),onExecute:()=>{e.chartWidgetCollection().moveActiveChartWithUndo(!1)}})),t.push(new W({label:a.t(null,void 0,o(35112)),id:"MoveChartLeft",category:"functionActions",disabled:!e.chartWidgetCollection().activeChartCanBeMoved().value(),onExecute:()=>{e.chartWidgetCollection().moveActiveChartWithUndo(!0)}})),O.enabled("header_widget")&&O.enabled("header_chart_type")){const o=(0,j.allChartStyles)();for(const n of o)t.push(new W({id:`ChartStyle_${n}`,category:"functionActions",disabled:!F.linking.supportedChartStyles.value()?.includes(n),onExecute:()=>{e.chartWidgetCollection().setChartStyleToWidget(n)},icon:$.SERIES_ICONS[n],label:Oe[n]}))}return O.enabled("header_widget")&&(0,xe.shouldShowFullscreen)()&&t.push(new W({label:a.t(null,void 0,o(67092)),id:"Fullscreen mode",icon:o(49697),category:"functionActions",checkable:!0,checked:e.chartWidgetCollection().fullscreen().value(),disabled:!e.chartWidgetCollection().fullscreenable().value(),onExecute:()=>{const t=e.chartWidgetCollection();t.fullscreen().value()?t.exitFullscreen():t.startFullscreen()},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Shift+70)})),t}o(50151);var We=o(26744),Ne=o(2627),Ke=o(59511);function Ue(){return Ke.lineToolsFlat.map((e=>function(e){const t=Ne.lineToolsInfo[e],n=t.selectHotkey?.hash,i={id:e,category:"drawingsActions",label:t.localizedName,icon:t.icon,shortcutHint:n?(0,I.humanReadableHash)(n):void 0,payload:e,
|
||||
onExecute:()=>ne.tool.setValue(e),favourite:We.LinetoolsFavoritesStore.isFavorite(e),onFavouriteClick:t=>{t.preventDefault(),We.LinetoolsFavoritesStore.isFavorite(e)?We.LinetoolsFavoritesStore.removeFavorite(e):We.LinetoolsFavoritesStore.addFavorite(e)}};return e.toLowerCase().includes("fib")&&(i.aliases=[a.t(null,void 0,o(26578))]),new W(i)}(e.name)))}var Ge=o(37404);o(3343);function qe(e,t){const o=e.getState().category,n=t.getState().category;return o===n?0:"drawingsActions"===n?1:"drawingsActions"===o||"functionActions"===o?-1:1}var je=o(16216),$e=o(87896);class Qe extends l.DialogRenderer{constructor(e){super(),this._actions=[],this.show=e=>{this.visible().value()||async function(e,t){const n=[],[i,l,s,r,c]=await Promise.all([Be(e),Promise.resolve(null),Promise.resolve(null),Promise.resolve(null),Promise.resolve(null)]);n.push(...i);const h=e.chartWidgetCollection();if(O.enabled("header_widget")&&O.enabled("header_resolutions")){const t={label:(0,Z.appendEllipsis)(a.t(null,void 0,o(2569))),id:"ChangeInterval",category:"functionActions",onExecute:()=>{(0,V.showChangeIntervalDialogAsync)({initVal:F.linking.interval.value(),selectOnInit:!0})}};!O.enabled("show_interval_dialog_on_key_press")||e.readOnly()||e.options().hideSymbolSearch||(t.shortcutHint=(0,I.humanReadableHash)(188)),n.push(new W(t))}if(t&&O.enabled("header_widget")&&O.enabled("header_saveload")){n.push(new W({id:"LoadChartLayout",category:"functionActions",label:(0,Z.appendEllipsis)(a.t(null,void 0,o(7386))),onExecute:()=>{t.showLoadDialog()},shortcutHint:a.t(null,{context:"hotkey"},o(23821))}));const i=e.getSaveChartService();i&&(n.push(new W({id:"RenameChartLayout",category:"functionActions",label:(0,Z.appendEllipsis)(a.t(null,void 0,o(38206))),onExecute:()=>{i.renameChart()}})),n.push(new W({id:"SaveChartLayout",category:"functionActions",icon:o(53707),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(41569))),disabled:!i.hasChanges(),onExecute:()=>{i.saveChartOrShowTitleDialog()},shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Mod+83)})))}return n.push(new W({id:"TakeSnapshot",category:"functionActions",icon:o(72644),label:a.t(null,void 0,o(8270)),onExecute:()=>h.takeServerScreenshot(),shortcutHint:(0,I.humanReadableHash)(I.Modifiers.Alt+83)})),n}(this._activeChartWidget,this._loadChartService).then((t=>{this._actions=t.concat((()=>{const e=new W({id:"ManageLayoutDrawings",category:"functionActions",icon:o(81111),label:(0,Z.appendEllipsis)(a.t(null,void 0,o(81031))),onExecute:()=>(0,Ge.showManageDrawingsDialog)()}),t=O.enabled("left_toolbar")?[...Ue(),e]:[];return t})()).sort(qe),this._rootInstance=(0,$e.createReactRoot)(n.createElement(R,{shouldReturnFocus:e?.shouldReturnFocus,dialogId:"globalSearch",items:this._actions,onClose:this.hide}),this._container),this._setVisibility(!0)}))},this.hide=()=>{this._rootInstance?.unmount(),this._setVisibility(!1);for(const e of this._actions)e.destroy()};const t=(0,je.service)(i.CHART_WIDGET_COLLECTION_SERVICE);this._activeChartWidget=t.activeChartWidget.value(),this._loadChartService=e}}},10087:(e,t,o)=>{
|
||||
"use strict";o.d(t,{getElementId:()=>d,useSearchDialogKeyboardNavigation:()=>h});var n=o(50959),i=o(50335),l=o(3343),s=o(76460),a=o(19291),r=o(9859),c=o(49483);function h(e){const{contentContainerRef:t,searchInputRef:o,dialogRef:i,getNextFocusedItemIndex:h,isNavigationDisabled:u,onEscapeClick:v,scrollToFocusedItem:g,getElementIdByIndex:m=d}=e,[p,w]=(0,n.useState)(null),[f,b]=(0,n.useState)(null),y=(0,n.useRef)({itemIndex:null,actionIndex:null}),[T,S]=(0,n.useState)(!1);function x(){S(!1),b(null),w(null)}return(0,n.useLayoutEffect)((()=>{if(null===p||!T)return;const e=m(p,f),o=t.current?.querySelector(`#${e}`);return o?.dispatchEvent(new CustomEvent("active-descendant-focus")),()=>{o?.dispatchEvent(new CustomEvent("active-descendant-blur"))}}),[p,T,f]),{handleKeyDown:function(e){const n=(0,l.hashFromEvent)(e);if(27===n&&v)return void v(e);const i=t.current;if(!i||e.target!==o.current)return;if(32===n||13===n){if(null===p)return;e.preventDefault();const t=i.querySelector(`#${m(p,f)}`);if(!(t instanceof HTMLElement))return;return void t.click()}const s=(0,a.mapKeyCodeToDirection)(n);if(!s||u)return;const c=null!==p?i.querySelector(`#${m(p)}`):null;switch(s){case"blockNext":case"blockPrev":{e.preventDefault();const t=h(p,"blockNext"===s?1:-1);if(null===t)return;w(t),S(!0),y.current.itemIndex=t;const o=i.querySelector(`#${m(t)}`);if(g(o,t),null!==f&&o instanceof HTMLElement){const e=Array.from(o.querySelectorAll('[data-role="list-item-action"]'));if(!e.length)return b(null),void(y.current.actionIndex=null);const t=(0,r.clamp)(f,0,e.length-1);b(t),y.current.actionIndex=t}return}case"inlineNext":{if(!c)return;e.preventDefault();const t=Array.from(c.querySelectorAll('[data-role="list-item-action"]'));if(!t||!t.length)return;return null===f?(b(0),void(y.current.actionIndex=0)):f===t.length-1?(b(null),void(y.current.actionIndex=null)):(b(f+1),void(y.current.actionIndex=f+1))}case"inlinePrev":{if(!c)return;e.preventDefault();const t=Array.from(c.querySelectorAll('[data-role="list-item-action"]'));if(!t||!t.length)return;return null===f?(b(t.length-1),void(y.current.actionIndex=t.length-1)):0===f?(b(null),void(y.current.actionIndex=null)):(b(f-1),void(y.current.actionIndex=f-1))}}},handleForceFocus:function(){(0,a.updateTabIndexes)()},handleSearchRefBlur:function(e){x(),w(p),c.CheckMobile.any()||e.relatedTarget!==i.current?.getElement()||e.target.focus()},resetFocusState:x,restoreFocusState:function(){b(y.current.actionIndex),w(y.current.itemIndex),S(!0)},focusVisible:T,focusedItemIndex:p,focusedActionIndex:f,setFocusedItemIndex:w,setFocusedActionIndex:b,onDialogClick:function(e){(0,s.isKeyboardClick)(e)||(S(!1),b(null))}}}function d(e,t){return(0,i.isNumber)(t)&&-1!==t?`list-item-${e}-action-${t}`:`list-item-${e}`}},37404:(e,t,o)=>{"use strict";o.d(t,{showManageDrawingsDialog:()=>i});let n=null;function i(e){return Promise.all([o.e(4166),o.e(8692),o.e(3693),o.e(7159),o.e(1702)]).then(o.bind(o,41662)).then((t=>{const o=new(0,t.ManageDrawingsDialogRenderer)(e);return null!==n&&n.hide(),o.show(),n=o,o}))}},51826:(e,t,o)=>{
|
||||
"use strict";o.d(t,{DialogsOpenerManager:()=>n,dialogsOpenerManager:()=>i});class n{constructor(){this._storage=new Map}setAsOpened(e,t){this._storage.set(e,t)}setAsClosed(e){this._storage.delete(e)}isOpened(e){return this._storage.has(e)}getDialogPayload(e){return this._storage.get(e)}}const i=new n},90692:(e,t,o)=>{"use strict";o.d(t,{MatchMedia:()=>i});var n=o(50959);class i extends n.PureComponent{constructor(e){super(e),this._handleChange=()=>{this.forceUpdate()},this.state={query:window.matchMedia(this.props.rule)}}componentDidMount(){this._subscribe(this.state.query)}componentDidUpdate(e,t){this.state.query!==t.query&&(this._unsubscribe(t.query),this._subscribe(this.state.query))}componentWillUnmount(){this._unsubscribe(this.state.query)}render(){return this.props.children(this.state.query.matches)}static getDerivedStateFromProps(e,t){return e.rule!==t.query.media?{query:window.matchMedia(e.rule)}:null}_subscribe(e){e.addEventListener("change",this._handleChange)}_unsubscribe(e){e.removeEventListener("change",this._handleChange)}}},64706:(e,t,o)=>{"use strict";o.d(t,{MenuContext:()=>n});const n=o(50959).createContext(null)},27317:(e,t,o)=>{"use strict";o.d(t,{DEFAULT_MENU_THEME:()=>p,Menu:()=>f});var n=o(50959),i=o(97754),l=o.n(i),s=o(50151),a=o(9859),r=o(14729),c=o(50655),h=o(59064),d=o(67961),u=o(26709),v=o(83021),g=o(64706),m=o(67797);const p=m;var w;!function(e){e[e.IndentFromWindow=0]="IndentFromWindow"}(w||(w={}));class f extends n.PureComponent{constructor(e){super(e),this._containerRef=null,this._scrollWrapRef=null,this._raf=null,this._scrollRaf=null,this._scrollTimeout=void 0,this._manager=new d.OverlapManager,this._hotkeys=null,this._scroll=0,this._handleContainerRef=e=>{this._containerRef=e,this.props.reference&&("function"==typeof this.props.reference&&this.props.reference(e),"object"==typeof this.props.reference&&(this.props.reference.current=e))},this._handleScrollWrapRef=e=>{this._scrollWrapRef=e,"function"==typeof this.props.scrollWrapReference&&this.props.scrollWrapReference(e),"object"==typeof this.props.scrollWrapReference&&(this.props.scrollWrapReference.current=e)},this._handleCustomRemeasureDelegate=()=>{this._resizeForced(),this._handleMeasure()},this._handleMeasure=({callback:e,forceRecalcPosition:t}={})=>{if(this.state.isMeasureValid&&!t)return;const{position:o}=this.props,n=(0,s.ensureNotNull)(this._containerRef);let i=n.getBoundingClientRect();const l=document.documentElement.clientHeight,r=document.documentElement.clientWidth,c=this.props.closeOnScrollOutsideOffset??0;let h=l-0-c;const d=i.height>h;if(d){(0,s.ensureNotNull)(this._scrollWrapRef).style.overflowY="scroll",i=n.getBoundingClientRect()}const{width:u,height:v}=i,g="function"==typeof o?o({contentWidth:u,contentHeight:v,availableWidth:r,availableHeight:l}):o,m=g?.indentFromWindow?.left??0,p=r-(g.overrideWidth??u)-(g?.indentFromWindow?.right??0),w=(0,a.clamp)(g.x,m,Math.max(m,p)),f=(g?.indentFromWindow?.top??0)+c,b=l-(g.overrideHeight??v)-(g?.indentFromWindow?.bottom??0);let y=(0,a.clamp)(g.y,f,Math.max(f,b))
|
||||
;if(g.forbidCorrectYCoord&&y<g.y&&(h-=g.y-y,y=g.y),t&&void 0!==this.props.closeOnScrollOutsideOffset&&g.y<=this.props.closeOnScrollOutsideOffset)return void this._handleGlobalClose(!0);const T=g.overrideHeight??(d?h:void 0);this.setState({appearingMenuHeight:t?this.state.appearingMenuHeight:T,appearingMenuWidth:t?this.state.appearingMenuWidth:g.overrideWidth,appearingPosition:{x:w,y},isMeasureValid:!0},(()=>{this.props.doNotRestorePosition||this._restoreScrollPosition(),e&&e()}))},this._restoreScrollPosition=()=>{const e=document.activeElement,t=(0,s.ensureNotNull)(this._containerRef);if(null!==e&&t.contains(e))try{e.scrollIntoView()}catch(e){}else(0,s.ensureNotNull)(this._scrollWrapRef).scrollTop=this._scroll},this._resizeForced=()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0})},this._resize=()=>{null===this._raf&&(this._raf=requestAnimationFrame((()=>{this.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0}),this._raf=null})))},this._handleGlobalClose=e=>{this.props.onClose(e)},this._handleSlot=e=>{this._manager.setContainer(e)},this._handleScroll=()=>{this._scroll=(0,s.ensureNotNull)(this._scrollWrapRef).scrollTop},this._handleScrollOutsideEnd=()=>{clearTimeout(this._scrollTimeout),this._scrollTimeout=setTimeout((()=>{this._handleMeasure({forceRecalcPosition:!0})}),80)},this._handleScrollOutside=e=>{e.target!==this._scrollWrapRef&&(this._handleScrollOutsideEnd(),null===this._scrollRaf&&(this._scrollRaf=requestAnimationFrame((()=>{this._handleMeasure({forceRecalcPosition:!0}),this._scrollRaf=null}))))},this.state={}}componentDidMount(){this._handleMeasure({callback:this.props.onOpen});const{customCloseDelegate:e=h.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.subscribe(this,this._handleGlobalClose),t?.subscribe(null,this._handleCustomRemeasureDelegate),window.addEventListener("resize",this._resize);const o=null!==this.context;this._hotkeys||o||(this._hotkeys=u.createGroup({desc:"Popup menu"}),this._hotkeys.add({desc:"Close",hotkey:27,handler:()=>{this.props.onKeyboardClose&&this.props.onKeyboardClose(),this._handleGlobalClose()}})),this.props.repositionOnScroll&&window.addEventListener("scroll",this._handleScrollOutside,{capture:!0})}componentDidUpdate(){this._handleMeasure()}componentWillUnmount(){const{customCloseDelegate:e=h.globalCloseDelegate,customRemeasureDelegate:t}=this.props;e.unsubscribe(this,this._handleGlobalClose),t?.unsubscribe(null,this._handleCustomRemeasureDelegate),window.removeEventListener("resize",this._resize),window.removeEventListener("scroll",this._handleScrollOutside,{capture:!0}),this._hotkeys&&(this._hotkeys.destroy(),this._hotkeys=null),null!==this._raf&&(cancelAnimationFrame(this._raf),this._raf=null),null!==this._scrollRaf&&(cancelAnimationFrame(this._scrollRaf),this._scrollRaf=null),this._scrollTimeout&&clearTimeout(this._scrollTimeout)}render(){
|
||||
const{id:e,role:t,"aria-label":o,"aria-labelledby":i,"aria-activedescendant":s,"aria-hidden":a,"aria-describedby":h,"aria-invalid":d,children:u,minWidth:p,theme:w=m,className:f,maxHeight:y,onMouseOver:T,onMouseOut:S,onKeyDown:x,onFocus:L,onBlur:C}=this.props,{appearingMenuHeight:M,appearingMenuWidth:A,appearingPosition:_,isMeasureValid:z}=this.state,E={"--ui-kit-menu-max-width":`${_&&_.x}px`,maxWidth:"calc(100vw - var(--ui-kit-menu-max-width) - 6px)"};return n.createElement(g.MenuContext.Provider,{value:this},n.createElement(v.SubmenuHandler,null,n.createElement(c.SlotContext.Provider,{value:this._manager},n.createElement("div",{id:e,role:t,"aria-label":o,"aria-labelledby":i,"aria-activedescendant":s,"aria-hidden":a,"aria-describedby":h,"aria-invalid":d,className:l()(f,w.menuWrap,!z&&w.isMeasuring),style:{height:M,left:_&&_.x,minWidth:p,position:"fixed",top:_&&_.y,width:A,...this.props.limitMaxWidth&&E},"data-name":this.props["data-name"],"data-tooltip-show-on-focus":this.props["data-tooltip-show-on-focus"],ref:this._handleContainerRef,onScrollCapture:this.props.onScroll,onContextMenu:r.preventDefaultForContextMenu,tabIndex:this.props.tabIndex,onMouseOver:T,onMouseOut:S,onKeyDown:x,onFocus:L,onBlur:C},n.createElement("div",{className:l()(w.scrollWrap,!this.props.noMomentumBasedScroll&&w.momentumBased),style:{overflowY:void 0!==M?"scroll":"auto",maxHeight:y},onScrollCapture:this._handleScroll,ref:this._handleScrollWrapRef},n.createElement(b,{className:w.menuBox},u)))),n.createElement(c.Slot,{reference:this._handleSlot})))}update(e){e?this._resizeForced():this._resize()}focus(e){this._containerRef?.focus(e)}blur(){this._containerRef?.blur()}}function b(e){const t=(0,s.ensureNotNull)((0,n.useContext)(v.SubmenuContext)),o=n.useRef(null);return n.createElement("div",{ref:o,className:e.className,onMouseOver:function(e){if(!(null!==t.current&&e.target instanceof Node&&(n=e.target,o.current?.contains(n))))return;var n;t.isSubmenuNode(e.target)||t.setCurrent(null)},"data-name":"menu-inner"},e.children)}f.contextType=v.SubmenuContext},29197:(e,t,o)=>{"use strict";o.d(t,{CloseDelegateContext:()=>l});var n=o(50959),i=o(59064);const l=n.createContext(i.globalCloseDelegate)},42842:(e,t,o)=>{"use strict";o.d(t,{Portal:()=>c,PortalContext:()=>h});var n=o(50959),i=o(32227),l=o(55698),s=o(67961),a=o(34811),r=o(99663);class c extends n.PureComponent{constructor(){super(...arguments),this._uuid=(0,l.nanoid)()}componentWillUnmount(){this._manager().removeWindow(this._uuid)}render(){const e=this._manager().ensureWindow(this._uuid,this.props.layerOptions);e.style.top=this.props.top||"",e.style.bottom=this.props.bottom||"",e.style.left=this.props.left||"",e.style.right=this.props.right||"",e.style.pointerEvents=this.props.pointerEvents||"";const t=this.props.className;return t&&("string"==typeof t?e.classList.add(t):e.classList.add(...t)),this.props.shouldTrapFocus&&!e.hasAttribute(a.FOCUS_TRAP_DATA_ATTRIBUTE)&&e.setAttribute(a.FOCUS_TRAP_DATA_ATTRIBUTE,"true"),this.props["aria-hidden"]&&e.setAttribute("aria-hidden","true"),
|
||||
i.createPortal(n.createElement(h.Provider,{value:this},this.props.children),e)}moveToTop(){this._manager().moveToTop(this._uuid)}_manager(){return null===this.context?(0,s.getRootOverlapManager)():this.context}}c.contextType=r.SlotContext;const h=n.createContext(null)},50655:(e,t,o)=>{"use strict";o.d(t,{Slot:()=>n.Slot,SlotContext:()=>n.SlotContext});var n=o(99663)},40173:(e,t,o)=>{"use strict";function n(e,t,o={}){return Object.assign({},e,function(e,t,o={}){const n=Object.assign({},t);for(const i of Object.keys(t)){const l=o[i]||i;l in e&&(n[i]=[e[l],t[i]].join(" "))}return n}(e,t,o))}o.d(t,{mergeThemes:()=>n})},84243:(e,t,o)=>{"use strict";o.d(t,{drawingToolsIcons:()=>n});const n={SyncDrawing:o(99088),arrow:o(63743),cursor:o(18953),dot:o(72196),demonstration:o(54780),performance:"",drawginmode:o(52459),drawginmodeActive:o(63975),eraser:o(27999),group:o(34059),hideAllDrawings:o(45820),hideAllDrawingsActive:o(84959),hideAllIndicators:o(42321),hideAllIndicatorsActive:o(75895),hideAllDrawingTools:o(93756),hideAllDrawingToolsActive:o(42650),hideAllPositionsTools:o(57313),hideAllPositionsToolsActive:o(65162),lockAllDrawings:o(91244),lockAllDrawingsActive:o(65186),magnet:o(68385),heart:o(10862),smile:o(7636),sticker:o(62567),strongMagnet:o(46049),measure:o(88518),removeAllDrawingTools:o(93544),showObjectsTree:o(36515),zoom:o(6894),"zoom-out":o(45360)}},59511:(e,t,o)=>{"use strict";o.d(t,{isLineToolsGroupWithSections:()=>r,lineTools:()=>a,lineToolsFlat:()=>c});var n=o(11542),i=(o(49483),o(56570)),l=o(37265);const s=i.enabled("image_drawingtool"),a=[{id:"linetool-group-cursors",title:n.t(null,void 0,o(81578)),sections:[{items:[{name:"cursor"},{name:"dot"},{name:"arrow"},{name:"demonstration"},null].filter(l.isExistent)},{items:[{name:"eraser"}]}],trackLabel:null},{id:"linetool-group-trend-line",title:n.t(null,void 0,o(48773)),sections:[{title:n.t(null,void 0,o(56982)),items:[{name:"LineToolTrendLine"},{name:"LineToolRay"},{name:"LineToolInfoLine"},{name:"LineToolExtended"},{name:"LineToolTrendAngle"},{name:"LineToolHorzLine"},{name:"LineToolHorzRay"},{name:"LineToolVertLine"},{name:"LineToolCrossLine"}]},{title:n.t(null,void 0,o(59934)),items:[{name:"LineToolParallelChannel"},{name:"LineToolRegressionTrend"},{name:"LineToolFlatBottom"},{name:"LineToolDisjointAngle"}]},{title:n.t(null,void 0,o(36167)),items:[{name:"LineToolPitchfork"},{name:"LineToolSchiffPitchfork2"},{name:"LineToolSchiffPitchfork"},{name:"LineToolInsidePitchfork"}]}],trackLabel:null},{id:"linetool-group-gann-and-fibonacci",title:n.t(null,void 0,o(2654)),sections:[{title:n.t(null,void 0,o(26578)),items:[{name:"LineToolFibRetracement"},{name:"LineToolTrendBasedFibExtension"},{name:"LineToolFibChannel"},{name:"LineToolFibTimeZone"},{name:"LineToolFibSpeedResistanceFan"},{name:"LineToolTrendBasedFibTime"},{name:"LineToolFibCircles"},{name:"LineToolFibSpiral"},{name:"LineToolFibSpeedResistanceArcs"},{name:"LineToolFibWedge"},{name:"LineToolPitchfan"}]},{title:n.t(null,void 0,o(51494)),items:[{name:"LineToolGannSquare"},{name:"LineToolGannFixed"},{
|
||||
name:"LineToolGannComplex"},{name:"LineToolGannFan"}]}],trackLabel:null},{id:"linetool-group-patterns",title:n.t(null,void 0,o(46417)),sections:[{title:n.t(null,void 0,o(46417)),items:[{name:"LineTool5PointsPattern"},{name:"LineToolCypherPattern"},{name:"LineToolHeadAndShoulders"},{name:"LineToolABCD"},{name:"LineToolTrianglePattern"},{name:"LineToolThreeDrivers"}]},{title:n.t(null,void 0,o(44255)),items:[{name:"LineToolElliottImpulse"},{name:"LineToolElliottCorrection"},{name:"LineToolElliottTriangle"},{name:"LineToolElliottDoubleCombo"},{name:"LineToolElliottTripleCombo"}]},{title:n.t(null,void 0,o(77915)),items:[{name:"LineToolCircleLines"},{name:"LineToolTimeCycles"},{name:"LineToolSineLine"}]}],trackLabel:null},{id:"linetool-group-prediction-and-measurement",title:n.t(null,void 0,o(1410)),sections:[{title:n.t(null,void 0,o(75747)),items:[{name:"LineToolRiskRewardLong"},{name:"LineToolRiskRewardShort"},{name:"LineToolPrediction"},{name:"LineToolBarsPattern"},{name:"LineToolGhostFeed"},{name:"LineToolProjection"}].filter(l.isExistent)},{title:n.t(null,void 0,o(69260)),items:[{name:"LineToolAnchoredVWAP"},{name:"LineToolFixedRangeVolumeProfile"},null].filter(l.isExistent)},{title:n.t(null,void 0,o(97050)),items:[{name:"LineToolPriceRange"},{name:"LineToolDateRange"},{name:"LineToolDateAndPriceRange"}]}],trackLabel:null},{id:"linetool-group-geometric-shapes",title:n.t(null,void 0,o(22145)),sections:[{title:n.t(null,void 0,o(65695)),items:[{name:"LineToolBrush"},{name:"LineToolHighlighter"}]},{title:n.t(null,void 0,o(19147)),items:[{name:"LineToolArrowMarker"},{name:"LineToolArrow"},{name:"LineToolArrowMarkUp"},{name:"LineToolArrowMarkDown"},{name:"LineToolArrowMarkLeft"},{name:"LineToolArrowMarkRight"}].filter(l.isExistent)},{title:n.t(null,void 0,o(65781)),items:[{name:"LineToolRectangle"},{name:"LineToolRotatedRectangle"},{name:"LineToolPath"},{name:"LineToolCircle"},{name:"LineToolEllipse"},{name:"LineToolPolyline"},{name:"LineToolTriangle"},{name:"LineToolArc"},{name:"LineToolBezierQuadro"},{name:"LineToolBezierCubic"}]}],trackLabel:null},{id:"linetool-group-annotation",title:n.t(null,void 0,o(32064)),sections:[{title:n.t(null,void 0,o(65831)),items:[{name:"LineToolText"},{name:"LineToolTextAbsolute"},{name:"LineToolTextNote"},{name:"LineToolPriceNote"},{name:"LineToolNote"},{name:"LineToolTable"},{name:"LineToolCallout"},{name:"LineToolComment"},{name:"LineToolPriceLabel"},{name:"LineToolSignpost"},{name:"LineToolFlagMark"}].filter(l.isExistent)},{title:n.t(null,void 0,o(93111)),items:[s?{name:"LineToolImage"}:null,null,null].filter(l.isExistent)}],trackLabel:null}];function r(e){return"sections"in e}const c=a.map((function(e){return r(e)?e.sections.map((e=>e.items)).flat():e.items})).flat()},27906:(e,t,o)=>{"use strict";o.d(t,{shouldShowFullscreen:()=>i});var n=o(56570);function i(){return n.enabled("header_fullscreen_button")}},2627:(e,t,o)=>{"use strict";o.d(t,{lineToolsInfo:()=>b});var n=o(50151),i=o(11542),l=o(61814),s=(o(21251),o(98626)),a=o(84243);const r={SyncDrawing:i.t(null,void 0,o(59377)),
|
||||
arrow:i.t(null,void 0,o(11858)),cursor:i.t(null,void 0,o(6969)),demonstration:i.t(null,void 0,o(14939)),dot:i.t(null,void 0,o(57157)),performance:i.t(null,void 0,o(35553)),drawginmode:i.t(null,void 0,o(62518)),eraser:i.t(null,void 0,o(8727)),group:i.t(null,void 0,o(3154)),hideAllDrawings:i.t(null,void 0,o(52563)),lockAllDrawings:i.t(null,void 0,o(79451)),magnet:i.t(null,void 0,o(81396)),measure:i.t(null,void 0,o(91563)),removeAllDrawingTools:i.t(null,void 0,o(57118)),showObjectsTree:i.t(null,void 0,o(85786)),zoom:i.t(null,void 0,o(55774)),"zoom-out":i.t(null,void 0,o(37310))};var c=o(98523),h=o(68335),d=o(17402);const u=(0,h.humanReadableModifiers)(h.Modifiers.Shift,!1).trim(),v=(0,h.humanReadableModifiers)(h.Modifiers.Alt,!1).trim(),g=(0,h.humanReadableModifiers)(h.Modifiers.Mod,!1).trim(),m={keys:[u],text:i.t(null,void 0,o(23369))},p={keys:[u],text:i.t(null,void 0,o(13798))},w={keys:[u],text:i.t(null,void 0,o(10539))},f={LineTool5PointsPattern:{},LineToolABCD:{},LineToolArc:{},LineToolArrow:{},LineToolArrowMarkDown:{},LineToolArrowMarkLeft:{},LineToolArrowMarkRight:{},LineToolArrowMarkUp:{},LineToolComment:{},LineToolBarsPattern:{},LineToolBezierCubic:{},LineToolBezierQuadro:{},LineToolBrush:{},LineToolCallout:{},LineToolCircleLines:{},LineToolCypherPattern:{},LineToolDateAndPriceRange:{},LineToolDateRange:{},LineToolDisjointAngle:{hotKey:(0,l.hotKeySerialize)(m)},LineToolElliottCorrection:{},LineToolElliottDoubleCombo:{},LineToolElliottImpulse:{},LineToolElliottTriangle:{},LineToolElliottTripleCombo:{},LineToolEllipse:{hotKey:(0,l.hotKeySerialize)(p)},LineToolExtended:{},LineToolFibChannel:{},LineToolFibCircles:{hotKey:(0,l.hotKeySerialize)(p)},LineToolFibRetracement:{},LineToolFibSpeedResistanceArcs:{},LineToolFibSpeedResistanceFan:{hotKey:(0,l.hotKeySerialize)(w)},LineToolFibSpiral:{},LineToolFibTimeZone:{},LineToolFibWedge:{},LineToolFlagMark:{},LineToolFlatBottom:{hotKey:(0,l.hotKeySerialize)(m)},LineToolAnchoredVWAP:{},LineToolGannComplex:{},LineToolGannFixed:{},LineToolGannFan:{},LineToolGannSquare:{hotKey:(0,l.hotKeySerialize)({keys:[u],text:i.t(null,void 0,o(83042))})},LineToolHeadAndShoulders:{},LineToolHorzLine:{hotKey:(0,l.hotKeySerialize)({keys:[v,"H"],text:"{0} + {1}"})},LineToolHorzRay:{},LineToolIcon:{},LineToolImage:{},LineToolEmoji:{},LineToolInsidePitchfork:{},LineToolNote:{},LineToolSignpost:{},LineToolParallelChannel:{hotKey:(0,l.hotKeySerialize)(m)},LineToolPitchfan:{},LineToolPitchfork:{},LineToolPolyline:{},LineToolPath:{},LineToolPrediction:{},LineToolPriceLabel:{},LineToolPriceNote:{hotKey:(0,l.hotKeySerialize)(m)},LineToolTextNote:{},LineToolArrowMarker:{},LineToolPriceRange:{},LineToolProjection:{},LineToolRay:{},LineToolRectangle:{hotKey:(0,l.hotKeySerialize)({keys:[u],text:i.t(null,void 0,o(10539))})},LineToolCircle:{},LineToolRegressionTrend:{},LineToolRiskRewardLong:{},LineToolRiskRewardShort:{},LineToolFixedRangeVolumeProfile:{},LineToolRotatedRectangle:{hotKey:(0,l.hotKeySerialize)(m)},LineToolSchiffPitchfork:{},LineToolSchiffPitchfork2:{},LineToolSineLine:{},LineToolText:{},
|
||||
LineToolTextAbsolute:{},LineToolThreeDrivers:{},LineToolTimeCycles:{},LineToolTrendAngle:{hotKey:(0,l.hotKeySerialize)(m)},LineToolTrendBasedFibExtension:{},LineToolTrendBasedFibTime:{},LineToolTrendLine:{hotKey:(0,l.hotKeySerialize)(m)},LineToolInfoLine:{},LineToolTriangle:{},LineToolTrianglePattern:{},LineToolVertLine:{hotKey:(0,l.hotKeySerialize)({keys:[v,"V"],text:"{0} + {1}"})},LineToolCrossLine:{},LineToolHighlighter:{},LineToolGhostFeed:{},LineToolTable:{},SyncDrawing:{iconActive:a.drawingToolsIcons.SyncDrawingActive},arrow:{},cursor:{},dot:{},demonstration:{hotKey:(0,l.hotKeySerialize)({keys:[v],text:i.t(null,void 0,o(42633))})},drawginmode:{iconActive:a.drawingToolsIcons.drawginmodeActive},eraser:{},group:{},hideAllDrawings:{iconActive:a.drawingToolsIcons.hideAllDrawingsActive,hotKey:(0,l.hotKeySerialize)({keys:[g,v,"H"],text:"{0} + {1} + {2}"})},lockAllDrawings:{iconActive:a.drawingToolsIcons.lockAllDrawingsActive},magnet:{hotKey:(0,l.hotKeySerialize)({keys:[g],text:"{0}"})},measure:{hotKey:(0,l.hotKeySerialize)({keys:[u],text:i.t(null,void 0,o(92949))})},removeAllDrawingTools:{},showObjectsTree:{},zoom:{},"zoom-out":{}};const b={};Object.entries(f).map((([e,t])=>{const o=s.lineToolsIcons[e]??a.drawingToolsIcons[e];(0,n.assert)(!!o,`Icon is not defined for drawing "${e}"`);const i=c.lineToolsLocalizedNames[e]??r[e];(0,n.assert)(!!i,`Localized name is not defined for drawing "${e}"`);return{...t,name:e,icon:o,localizedName:i,selectHotkey:d.lineToolsSelectHotkeys[e]}})).forEach((e=>{b[e.name]=e}))},23076:(e,t,o)=>{"use strict";o.r(t),o.d(t,{SERIES_ICONS:()=>m});var n=o(94670),i=o(32162),l=o(39956),s=o(14083),a=o(45504),r=o(52867),c=o(41473),h=o(31246),d=o(15726),u=o(24464),v=o(71705),g=o(9450);const m={3:n,16:i,0:l,1:s,8:a,9:r,2:c,14:h,15:d,10:u,12:v,13:g}},26744:(e,t,o)=>{"use strict";o.d(t,{LinetoolsFavoritesStore:()=>c});var n=o(52033),i=o(37265),l=o(56840);const s=["LineToolBalloon","LineToolNoteAbsolute",null,null].filter(i.isExistent),a=!1;var r,c;!function(e){function t(){e.favorites=[];let t=!1;const n=Boolean(void 0===(0,l.getValue)("chart.favoriteDrawings")),r=(0,l.getJSON)("chart.favoriteDrawings",[]);if(0===r.length&&n&&"undefined"!=typeof window){const e=JSON.parse(window.urlParams?.favorites??"{}").drawingTools;e&&Array.isArray(e)&&r.push(...e)}r.forEach(((n,i)=>{const l=n.tool||n;o(l)?s.includes(l)?t=!0:e.favorites.push(l):a&&a.includes(l)&&e.hiddenToolsPositions.set(l,i)})),t&&i(),e.favoritesSynced.fire()}function o(e){return"string"==typeof e&&""!==e&&!(a&&a.includes(e))}function i(t){const o=e.favorites.slice();e.hiddenToolsPositions.forEach(((e,t)=>{o.splice(e,0,t)})),(0,l.setJSON)("chart.favoriteDrawings",o,t)}e.favorites=[],e.favoritesSynced=new n.Delegate,e.hiddenToolsPositions=new Map,e.favoriteIndex=function(t){return e.favorites.indexOf(t)},e.isValidLineToolName=o,e.saveFavorites=i,t(),l.onSync.subscribe(null,t)}(r||(r={})),function(e){function t(e){return r.isValidLineToolName(e)}function o(){return r.favorites.length}function i(e){return-1!==r.favoriteIndex(e)}
|
||||
e.favoriteAdded=new n.Delegate,e.favoriteRemoved=new n.Delegate,e.favoriteMoved=new n.Delegate,e.favoritesSynced=r.favoritesSynced,e.favorites=function(){return r.favorites.slice()},e.isValidLineToolName=t,e.favoritesCount=o,e.favorite=function(e){return e<0||e>=o()?"":r.favorites[e]},e.addFavorite=function(o,n){return!(i(o)||!t(o)||"performance"===o)&&(r.favorites.push(o),r.saveFavorites(n),e.favoriteAdded.fire(o),!0)},e.removeFavorite=function(t,o){const n=r.favoriteIndex(t);if(-1===n)return!1;r.favorites.splice(n,1);const i=r.hiddenToolsPositions;return i.forEach(((e,t)=>{e>n&&i.set(t,e-1)})),r.saveFavorites(o),e.favoriteRemoved.fire(t),!0},e.isFavorite=i,e.moveFavorite=function(n,i,l){if(i<0||i>=o()||!t(n))return!1;const s=r.favoriteIndex(n);if(-1===s||i===s)return!1;const a=r.hiddenToolsPositions;return a.forEach(((e,t)=>{s<e&&i>e?e--:i<e&&s>e&&e++,a.set(t,e)})),r.favorites.splice(s,1),r.favorites.splice(i,0,n),r.saveFavorites(l),e.favoriteMoved.fire(n,s,i),!0}}(c||(c={}))},16792:(e,t,o)=>{"use strict";function n(e){return e.charAt(0).toUpperCase()+e.substring(1)}o.d(t,{capitalizeFirstLetter:()=>n})},54780:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="m11.26 21 3.65-4.78 6.09-.66L10 8zm3.09-5.71-2.33 3.05-.8-8.3 7.02 4.82z"/><path fill-rule="evenodd" d="M25 14a11 11 0 1 1-22 0 11 11 0 0 1 22 0m-1 0a10 10 0 1 1-20 0 10 10 0 0 1 20 0"/></svg>'},52459:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M17.27 4.56a2.5 2.5 0 0 0-3.54 0l-.58.59-9 9-1 1-.15.14V20h4.7l.15-.15 1-1 9-9 .59-.58a2.5 2.5 0 0 0 0-3.54l-1.17-1.17Zm-2.83.7a1.5 1.5 0 0 1 2.12 0l1.17 1.18a1.5 1.5 0 0 1 0 2.12l-.23.23-3.3-3.29.24-.23Zm-.94.95 3.3 3.29-8.3 8.3-3.3-3.3 8.3-8.3Zm-9 9 3.3 3.29-.5.5H4v-3.3l.5-.5Zm16.5.29a1.5 1.5 0 0 0-3 0V18h4.5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-4c0-.83.67-1.5 1.5-1.5h.5v-2.5a2.5 2.5 0 0 1 5 0v.5h-1v-.5ZM16.5 19a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-6Zm2.5 4v-2h1v2h-1Z"/></svg>'},63975:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M17.27 4.56a2.5 2.5 0 0 0-3.54 0l-.58.59-9 9-1 1-.15.14V20h4.7l.15-.15 1-1 9-9 .59-.58a2.5 2.5 0 0 0 0-3.54l-1.17-1.17Zm-2.83.7a1.5 1.5 0 0 1 2.12 0l1.17 1.18a1.5 1.5 0 0 1 0 2.12l-.23.23-3.3-3.29.24-.23Zm-.94.95 3.3 3.29-8.3 8.3-3.3-3.3 8.3-8.3Zm-9 9 3.3 3.29-.5.5H4v-3.3l.5-.5Zm16.5.29a1.5 1.5 0 0 0-3 0V18h3v-2.5Zm1 0V18h.5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-4c0-.83.67-1.5 1.5-1.5h.5v-2.5a2.5 2.5 0 0 1 5 0ZM16.5 19a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-6Zm2.5 4v-2h1v2h-1Z"/></svg>'},94670:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="m25.35 5.35-9.5 9.5-.35.36-.35-.36-4.65-4.64-8.15 8.14-.7-.7 8.5-8.5.35-.36.35.36 4.65 4.64 9.15-9.14.7.7ZM2 21h1v1H2v-1Zm2-1H3v1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1V9h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1H9v1H8v1H7v1H6v1H5v1H4v1Zm1 0v1H4v-1h1Zm1 0H5v-1h1v1Zm1 0v1H6v-1h1Zm0-1H6v-1h1v1Zm1 0H7v1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1H9v1H8v1H7v1h1v1Zm1 0v1H8v-1h1Zm0-1H8v-1h1v1Zm1 0H9v1h1v1h1v-1h1v1h1v-1h1v1h1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1H9v1h1v1Zm1 0v1h-1v-1h1Zm0-1v-1h-1v1h1Zm0 0v1h1v1h1v-1h-1v-1h-1Zm6 2v-1h1v1h-1Zm2 0v1h-1v-1h1Zm0-1h-1v-1h1v1Zm1 0h-1v1h1v1h1v-1h1v1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h1v1Zm1 0h-1v1h1v-1Zm0-1h1v1h-1v-1Zm0-1h1v-1h-1v1Zm0 0v1h-1v-1h1Zm-4 3v1h-1v-1h1Z"/></svg>'},39956:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M19 6h-1v7h-3v1h3v8h1v-3h3v-1h-3V6ZM11 7h-1v13H7v1h3v2h1V10h3V9h-3V7Z"/></svg>'},24464:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="m10.49 7.55-.42.7-2.1 3.5.86.5 1.68-2.8 1.8 2.82.84-.54-2.23-3.5-.43-.68Zm12.32 4.72-.84-.54 2.61-4 .84.54-2.61 4Zm-5.3 6.3 1.2-1.84.84.54-1.63 2.5-.43.65-.41-.65-1.6-2.5.85-.54 1.17 1.85ZM4.96 16.75l.86.52-2.4 4-.86-.52 2.4-4ZM3 14v1h1v-1H3Zm2 0h1v1H5v-1Zm2 0v1h1v-1H7Zm2 0h1v1H9v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Zm2 0v1h1v-1h-1Zm2 0h1v1h-1v-1Z"/></svg>'},14083:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17 11v6h3v-6h-3zm-.5-1h4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5z"/><path d="M18 7h1v3.5h-1zm0 10.5h1V21h-1z"/><path d="M9 8v12h3V8H9zm-.5-1h4a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 .5-.5z"/><path d="M10 4h1v3.5h-1zm0 16.5h1V24h-1z"/></svg>'},53707:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><g fill="none"><path stroke="currentColor" d="M11 20.5H7.5a5 5 0 1 1 .42-9.98 7.5 7.5 0 0 1 14.57 2.1 4 4 0 0 1-1 7.877H18"/><path stroke="currentColor" d="M14.5 24V12.5M11 16l3.5-3.5L18 16"/></g></svg>'},9450:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M12 7v14h5V7h-5Zm4 1h-3v12h3V8ZM19 15v6h5v-6h-5Zm4 1h-3v4h3v-4ZM5 12h5v9H5v-9Zm1 1h3v7H6v-7Z"/></svg>'},1393:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M13.5 6a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17zM4 14.5a9.5 9.5 0 1 1 19 0 9.5 9.5 0 0 1-19 0z"/><path fill="currentColor" d="M9 14h4v-4h1v4h4v1h-4v4h-1v-4H9v-1z"/></svg>'},49697:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path d="M21 7v4h1V6h-5v1z"/><path d="M16.854 11.854l5-5-.708-.708-5 5zM7 7v4H6V6h5v1z"/><path d="M11.146 11.854l-5-5 .708-.708 5 5zM21 21v-4h1v5h-5v-1z"/><path d="M16.854 16.146l5 5-.708.708-5-5z"/><g><path d="M7 21v-4H6v5h5v-1z"/><path d="M11.146 16.146l-5 5 .708.708 5-5z"/></g></g></svg>'},34059:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" width="30" height="30"><path fill="currentColor" d="M5.5 13A2.5 2.5 0 0 0 3 15.5 2.5 2.5 0 0 0 5.5 18 2.5 2.5 0 0 0 8 15.5 2.5 2.5 0 0 0 5.5 13zm9.5 0a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 15 18a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 15 13zm9.5 0a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5z"/></svg>'},45504:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M9 8v12h3V8H9zm-1-.502C8 7.223 8.215 7 8.498 7h4.004c.275 0 .498.22.498.498v13.004a.493.493 0 0 1-.498.498H8.498A.496.496 0 0 1 8 20.502V7.498z"/><path d="M10 4h1v3.5h-1z"/><path d="M17 6v6h3V6h-3zm-1-.5c0-.276.215-.5.498-.5h4.004c.275 0 .498.23.498.5v7c0 .276-.215.5-.498.5h-4.004a.503.503 0 0 1-.498-.5v-7z"/><path d="M18 2h1v3.5h-1z"/></svg>'},71705:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M7.5 7H7v14h5V7H7.5zM8 20V8h3v12H8zm7.5-11H15v10h5V9h-4.5zm.5 9v-8h3v8h-3z"/></svg>'},32162:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path fill-rule="evenodd" d="M22 3h1v1h-1V3Zm0 2V4h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1V9h-1V8h-1V7h-1V6h-1V5h-1v1H9v1H8v1H7v1H6v1H5v1H4v1h1v1H4v1h1v-1h1v-1h1v-1h1v-1h1V9h1V8h1v1h1v1h1v1h1v1h1v1h1v-1h1v-1h1v-1h1V9h1V8h1V7h1V6h1V5h-1Zm-1 1V5h1v1h-1Zm-1 1V6h1v1h-1Zm-1 1V7h1v1h-1Zm-1 1V8h1v1h-1Zm-1 1V9h1v1h-1Zm-1 1v-1h1v1h-1Zm-1 0v-1h-1V9h-1V8h-1V7h-1V6h-1v1H9v1H8v1H7v1H6v1H5v1h1v-1h1v-1h1V9h1V8h1V7h1v1h1v1h1v1h1v1h1Zm0 0h1v1h-1v-1Zm.84 6.37 7.5-7-.68-.74-7.15 6.67-4.66-4.65-.33-.34-.36.32-5.5 5 .68.74 5.14-4.68 4.67 4.66.34.35.35-.33ZM6 23H5v1h1v-1Zm0-1H5v-1h1v1Zm1 0v1H6v-1h1Zm0-1H6v-1h1v1Zm1 0v1H7v-1h1Zm0-1H7v-1h1v1Zm1 0v1H8v-1h1Zm0-1H8v-1h1v1Zm1 0v1H9v-1h1Zm0-1H9v-1h1v1Zm1 0h-1v1h1v1h1v1h1v1h1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h-1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1v-1h-1v-1h-1v-1h-1v1h1v1Zm0 0h1v1h-1v-1Zm2 2v1h1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v1h-1v-1h-1v-1h-1Zm0 0v-1h-1v1h1Z"/></svg>'},52867:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17 11v6h3v-6h-3zm-.5-1h4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5z"/><path d="M18 7h1v3.5h-1zm0 10.5h1V21h-1z"/><path d="M9 8v11h3V8H9zm-.5-1h4a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-12a.5.5 0 0 1 .5-.5z"/><path d="M10 4h1v5h-1zm0 14h1v5h-1zM8.5 9H10v1H8.5zM11 9h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11zm-1 1h1v1h-1zm-1.5 1H10v1H8.5zm2.5 0h1.5v1H11z"/></svg>'},39681:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M20 17l-5 5M15 17l5 5M9 11.5h7M17.5 8a2.5 2.5 0 0 0-5 0v11a2.5 2.5 0 0 1-5 0"/></svg>'},31246:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path fill-rule="evenodd" d="m18.43 15.91 6.96-8.6-.78-.62-6.96 8.6a2.49 2.49 0 0 0-2.63.2l-2.21-2.02A2.5 2.5 0 0 0 10.5 10a2.5 2.5 0 1 0 1.73 4.3l2.12 1.92a2.5 2.5 0 1 0 4.08-.31ZM10.5 14a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm7.5 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/><path d="M8.37 13.8c.17.3.4.54.68.74l-5.67 6.78-.76-.64 5.75-6.88Z"/></svg>'},41473:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="m25.39 7.31-8.83 10.92-6.02-5.47-7.16 8.56-.76-.64 7.82-9.36 6 5.45L24.61 6.7l.78.62Z"/></svg>'},96052:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M18.293 13l-2.647 2.646.707.708 3.854-3.854-3.854-3.854-.707.708L18.293 12H12.5A5.5 5.5 0 0 0 7 17.5V19h1v-1.5a4.5 4.5 0 0 1 4.5-4.5h5.793z"/></svg>'},72644:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.118 6a.5.5 0 0 0-.447.276L9.809 8H5.5A1.5 1.5 0 0 0 4 9.5v10A1.5 1.5 0 0 0 5.5 21h16a1.5 1.5 0 0 0 1.5-1.5v-10A1.5 1.5 0 0 0 21.5 8h-4.309l-.862-1.724A.5.5 0 0 0 15.882 6h-4.764zm-1.342-.17A1.5 1.5 0 0 1 11.118 5h4.764a1.5 1.5 0 0 1 1.342.83L17.809 7H21.5A2.5 2.5 0 0 1 24 9.5v10a2.5 2.5 0 0 1-2.5 2.5h-16A2.5 2.5 0 0 1 3 19.5v-10A2.5 2.5 0 0 1 5.5 7h3.691l.585-1.17z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 18a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9z"/></svg>'},15726:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M19 5h5v1h-4v13h-6v-7h-4v12H5v-1h4V11h6v7h4V5Z"/></svg>'},63743:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M11.682 16.09l3.504 6.068 1.732-1-3.497-6.057 3.595-2.1L8 7.74v10.512l3.682-2.163zm-.362 1.372L7 20V6l12 7-4.216 2.462 3.5 6.062-3.464 2-3.5-6.062z"/></svg>'},18953:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path d="M18 15h8v-1h-8z"/><path d="M14 18v8h1v-8zM14 3v8h1v-8zM3 15h8v-1h-8z"/></g></svg>'},72196:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><circle fill="currentColor" cx="14" cy="14" r="3"/></svg>'},27999:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 31" width="29" height="31"><g fill="currentColor" fill-rule="nonzero"><path d="M15.3 22l8.187-8.187c.394-.394.395-1.028.004-1.418l-4.243-4.243c-.394-.394-1.019-.395-1.407-.006l-11.325 11.325c-.383.383-.383 1.018.007 1.407l1.121 1.121h7.656zm-9.484-.414c-.781-.781-.779-2.049-.007-2.821l11.325-11.325c.777-.777 2.035-.78 2.821.006l4.243 4.243c.781.781.78 2.048-.004 2.832l-8.48 8.48h-8.484l-1.414-1.414z"/><path d="M13.011 22.999h7.999v-1h-7.999zM13.501 11.294l6.717 6.717.707-.707-6.717-6.717z"/></g></svg>'},10862:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M24.13 14.65a6.2 6.2 0 0 0-.46-9.28c-2.57-2.09-6.39-1.71-8.75.6l-.92.91-.92-.9c-2.36-2.32-6.18-2.7-8.75-.61a6.2 6.2 0 0 0-.46 9.28l9.07 8.92c.58.57 1.53.57 2.12 0l9.07-8.92Zm-9.77 8.2 9.07-8.91a5.2 5.2 0 0 0-.39-7.8c-2.13-1.73-5.38-1.45-7.42.55L14 8.29l-1.62-1.6c-2.03-2-5.29-2.28-7.42-.55a5.2 5.2 0 0 0-.4 7.8l9.08 8.91c.2.2.52.2.72 0Z"/></svg>'},68385:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor" fill-rule="evenodd"><path fill-rule="nonzero" d="M14 10a2 2 0 0 0-2 2v11H6V12c0-4.416 3.584-8 8-8s8 3.584 8 8v11h-6V12a2 2 0 0 0-2-2zm-3 2a3 3 0 0 1 6 0v10h4V12c0-3.864-3.136-7-7-7s-7 3.136-7 7v10h4V12z"/><path d="M6.5 18h5v1h-5zm10 0h5v1h-5z"/></g></svg>'},88518:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" d="M2 9.75a1.5 1.5 0 0 0-1.5 1.5v5.5a1.5 1.5 0 0 0 1.5 1.5h24a1.5 1.5 0 0 0 1.5-1.5v-5.5a1.5 1.5 0 0 0-1.5-1.5zm0 1h3v2.5h1v-2.5h3.25v3.9h1v-3.9h3.25v2.5h1v-2.5h3.25v3.9h1v-3.9H22v2.5h1v-2.5h3a.5.5 0 0 1 .5.5v5.5a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5v-5.5a.5.5 0 0 1 .5-.5z" transform="rotate(-45 14 14)"/></svg>'},36515:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path fill-rule="nonzero" d="M14 18.634l-.307-.239-7.37-5.73-2.137-1.665 9.814-7.633 9.816 7.634-.509.394-1.639 1.269-7.667 5.969zm7.054-6.759l1.131-.876-8.184-6.366-8.186 6.367 1.123.875 7.063 5.491 7.054-5.492z"/><path d="M7 14.5l-1 .57 8 6.43 8-6.5-1-.5-7 5.5z"/><path d="M7 17.5l-1 .57 8 6.43 8-6.5-1-.5-7 5.5z"/></g></svg>'},7636:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M4.05 14a9.95 9.95 0 1 1 19.9 0 9.95 9.95 0 0 1-19.9 0ZM14 3a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm-3 13.03a.5.5 0 0 1 .64.3 2.5 2.5 0 0 0 4.72 0 .5.5 0 0 1 .94.34 3.5 3.5 0 0 1-6.6 0 .5.5 0 0 1 .3-.64Zm.5-4.53a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>'},62567:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M7 4h14a3 3 0 0 1 3 3v11c0 .34-.03.67-.08 1H20.3c-1.28 0-2.31.97-2.31 2.24V24H7a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Zm12 19.92A6 6 0 0 0 23.66 20H20.3c-.77 0-1.31.48-1.31 1.24v2.68ZM3 7a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v11a7 7 0 0 1-7 7H7a4 4 0 0 1-4-4V7Zm8 9.03a.5.5 0 0 1 .64.3 2.5 2.5 0 0 0 4.72 0 .5.5 0 0 1 .94.34 3.5 3.5 0 0 1-6.6 0 .5.5 0 0 1 .3-.64Zm.5-4.53a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>'},46049:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="nonzero" d="M14 5a7 7 0 0 0-7 7v3h4v-3a3 3 0 1 1 6 0v3h4v-3a7 7 0 0 0-7-7zm7 11h-4v3h4v-3zm-10 0H7v3h4v-3zm-5-4a8 8 0 1 1 16 0v8h-6v-8a2 2 0 1 0-4 0v8H6v-8zm3.293 11.294l-1.222-2.037.858-.514 1.777 2.963-2 1 1.223 2.037-.858.514-1.778-2.963 2-1zm9.778-2.551l.858.514-1.223 2.037 2 1-1.777 2.963-.858-.514 1.223-2.037-2-1 1.777-2.963z"/></svg>'},99088:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><g fill="currentColor"><path fill-rule="nonzero" d="M15.039 5.969l-.019-.019-2.828 2.828.707.707 2.474-2.474c1.367-1.367 3.582-1.367 4.949 0s1.367 3.582 0 4.949l-2.474 2.474.707.707 2.828-2.828-.019-.019c1.415-1.767 1.304-4.352-.334-5.99-1.638-1.638-4.224-1.749-5.99-.334zM5.97 15.038l-.019-.019 2.828-2.828.707.707-2.475 2.475c-1.367 1.367-1.367 3.582 0 4.949s3.582 1.367 4.949 0l2.474-2.474.707.707-2.828 2.828-.019-.019c-1.767 1.415-4.352 1.304-5.99-.334-1.638-1.638-1.749-4.224-.334-5.99z"/><path d="M10.485 16.141l5.656-5.656.707.707-5.656 5.656z"/></g></svg>'},42650:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M19.76 6.07l-.7.7a13.4 13.4 0 011.93 2.47c.19.3.33.55.42.72l.03.04-.03.04a15 15 0 01-2.09 2.9c-1.47 1.6-3.6 3.12-6.32 3.12-.98 0-1.88-.2-2.7-.52l-.77.76c1.03.47 2.18.76 3.47.76 3.12 0 5.5-1.75 7.06-3.44a16 16 0 002.38-3.38v-.02h.01L22 10l.45.22.1-.22-.1-.22L22 10l.45-.22-.01-.02a5.1 5.1 0 00-.15-.28 16 16 0 00-2.53-3.41zM6.24 13.93l.7-.7-.27-.29a15 15 0 01-2.08-2.9L4.56 10l.03-.04a15 15 0 012.09-2.9c1.47-1.6 3.6-3.12 6.32-3.12.98 0 1.88.2 2.7.52l.77-.76A8.32 8.32 0 0013 2.94c-3.12 0-5.5 1.75-7.06 3.44a16 16 0 00-2.38 3.38v.02h-.01L4 10l-.45-.22-.1.22.1.22L4 10l-.45.22.01.02a5.5 5.5 0 00.15.28 16 16 0 002.53 3.41zm6.09-.43a3.6 3.6 0 004.24-4.24l-.93.93a2.6 2.6 0 01-2.36 2.36l-.95.95zm-1.97-3.69l-.93.93a3.6 3.6 0 014.24-4.24l-.95.95a2.6 2.6 0 00-2.36 2.36zm11.29 7.84l-.8.79a1.5 1.5 0 000 2.12l.59.59a1.5 1.5 0 002.12 0l1.8-1.8-.71-.7-1.8 1.79a.5.5 0 01-.7 0l-.59-.59a.5.5 0 010-.7l.8-.8-.71-.7zm-5.5 3.5l.35.35-.35-.35.01-.02.02-.02.02-.02a4.68 4.68 0 01.65-.5c.4-.27 1-.59 1.65-.59.66 0 1.28.33 1.73.77.44.45.77 1.07.77 1.73a2.5 2.5 0 01-.77 1.73 2.5 2.5 0 01-1.73.77h-4a.5.5 0 01-.42-.78l1-1.5 1-1.5a.5.5 0 01.07-.07zm.74.67a3.46 3.46 0 01.51-.4c.35-.24.75-.42 1.1-.42.34 0 .72.17 1.02.48.3.3.48.68.48 1.02 0 .34-.17.72-.48 1.02-.3.3-.68.48-1.02.48h-3.07l.49-.72.97-1.46zM21.2 2.5L5.5 18.2l-.7-.7L20.5 1.8l.7.7z"/></svg>'},75895:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" d="M16.47 3.7A8.32 8.32 0 0013 2.94c-3.12 0-5.5 1.75-7.06 3.44a16 16 0 00-2.38 3.38v.02h-.01L4 10l-.45-.22-.1.22.1.22L4 10l-.45.22.01.02a5.5 5.5 0 00.15.28 16 16 0 002.53 3.41l.7-.7-.27-.29a15 15 0 01-2.08-2.9L4.56 10l.03-.04a15 15 0 012.09-2.9c1.47-1.6 3.6-3.12 6.32-3.12.98 0 1.88.2 2.7.52l.77-.76zm-7.04 7.04l.93-.93a2.6 2.6 0 012.36-2.36l.95-.95a3.6 3.6 0 00-4.24 4.24zm.1 5.56c1.03.47 2.18.76 3.47.76 3.12 0 5.5-1.75 7.06-3.44a16 16 0 002.38-3.38v-.02h.01L22 10l.45.22.1-.22-.1-.22L22 10l.45-.22-.01-.02-.02-.03-.01-.03a9.5 9.5 0 00-.57-1 16 16 0 00-2.08-2.63l-.7.7.27.29a15.01 15.01 0 012.08 2.9l.03.04-.03.04a15 15 0 01-2.09 2.9c-1.47 1.6-3.6 3.12-6.32 3.12-.98 0-1.88-.2-2.7-.52l-.77.76zm2.8-2.8a3.6 3.6 0 004.24-4.24l-.93.93a2.6 2.6 0 01-2.36 2.36l-.95.95zm7.9 3.73c-.12.12-.23.35-.23.77v2h1v1h-1v2c0 .58-.14 1.1-.52 1.48-.38.38-.9.52-1.48.52s-1.1-.14-1.48-.52c-.38-.38-.52-.9-.52-1.48h1c0 .42.1.65.23.77.12.12.35.23.77.23.42 0 .65-.1.77-.23.12-.12.23-.35.23-.77v-2h-1v-1h1v-2c0-.58.14-1.1.52-1.48.38-.38.9-.52 1.48-.52s1.1.14 1.48.52c.38.38.52.9.52 1.48h-1c0-.42-.1-.65-.23-.77-.12-.12-.35-.23-.77-.23-.42 0-.65.1-.77.23zm2.56 6.27l-1.14-1.15.7-.7 1.15 1.14 1.15-1.14.7.7-1.14 1.15 1.14 1.15-.7.7-1.15-1.14-1.15 1.14-.7-.7 1.14-1.15zM21.2 2.5L5.5 18.2l-.7-.7L20.5 1.8l.7.7z"/></svg>'},65162:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M5.5 18.2L21.2 2.5l-.7-.7L4.8 17.5l.7.7zM19.05 6.78l.71-.7a14.26 14.26 0 0 1 2.08 2.64 14.26 14.26 0 0 1 .6 1.05v.02h.01L22 10l.45.22-.01.02a5.18 5.18 0 0 1-.15.28 16 16 0 0 1-2.23 3.1c-1.56 1.69-3.94 3.44-7.06 3.44-1.29 0-2.44-.3-3.47-.76l.76-.76c.83.32 1.73.52 2.71.52 2.73 0 4.85-1.53 6.33-3.12a15.01 15.01 0 0 0 2.08-2.9l.03-.04-.03-.04a15 15 0 0 0-2.36-3.18zM22 10l.45-.22.1.22-.1.22L22 10zM6.94 13.23l-.7.7a14.24 14.24 0 0 1-2.08-2.64 14.28 14.28 0 0 1-.6-1.05v-.02h-.01L4 10l-.45-.22.01-.02a5.55 5.55 0 0 1 .15-.28 16 16 0 0 1 2.23-3.1C7.5 4.69 9.88 2.94 13 2.94c1.29 0 2.44.3 3.47.76l-.76.76A7.27 7.27 0 0 0 13 3.94c-2.73 0-4.85 1.53-6.33 3.12a15 15 0 0 0-2.08 2.9l-.03.04.03.04a15.01 15.01 0 0 0 2.36 3.18zM4 10l-.45.22-.1-.22.1-.22L4 10zm9 3.56c-.23 0-.46-.02-.67-.06l.95-.95a2.6 2.6 0 0 0 2.36-2.36l.93-.93a3.6 3.6 0 0 1-3.57 4.3zm-3.57-2.82l.93-.93a2.6 2.6 0 0 1 2.36-2.36l.95-.95a3.6 3.6 0 0 0-4.24 4.24zM17.5 21.9l3.28 2.18a.5.5 0 1 1-.56.84L17.5 23.1l-2.72 1.82a.5.5 0 1 1-.56-.84l3.28-2.18zM18.58 19.22a.5.5 0 0 1 .7-.14L22 20.9l2.72-1.82a.5.5 0 0 1 .56.84L22 22.1l-3.28-2.18a.5.5 0 0 1-.14-.7z"/></svg>'},65186:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M14 6a3 3 0 0 0-3 3v3h6V9a3 3 0 0 0-3-3zm4 6V9a4 4 0 0 0-8 0v3H8.5A2.5 2.5 0 0 0 6 14.5v7A2.5 2.5 0 0 0 8.5 24h11a2.5 2.5 0 0 0 2.5-2.5v-7a2.5 2.5 0 0 0-2.5-2.5H18zm-5 5a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2zm-6-2.5c0-.83.67-1.5 1.5-1.5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 7 21.5v-7z"/></svg>'},91244:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M14 6a3 3 0 0 0-3 3v3h8.5a2.5 2.5 0 0 1 2.5 2.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 6 21.5v-7A2.5 2.5 0 0 1 8.5 12H10V9a4 4 0 0 1 8 0h-1a3 3 0 0 0-3-3zm-1 11a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2zm-6-2.5c0-.83.67-1.5 1.5-1.5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 7 21.5v-7z"/></svg>'},45820:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M4.56 14a10.05 10.05 0 00.52.91c.41.69 1.04 1.6 1.85 2.5C8.58 19.25 10.95 21 14 21c3.05 0 5.42-1.76 7.07-3.58A17.18 17.18 0 0023.44 14a9.47 9.47 0 00-.52-.91c-.41-.69-1.04-1.6-1.85-2.5C19.42 8.75 17.05 7 14 7c-3.05 0-5.42 1.76-7.07 3.58A17.18 17.18 0 004.56 14zM24 14l.45-.21-.01-.03a7.03 7.03 0 00-.16-.32c-.11-.2-.28-.51-.5-.87-.44-.72-1.1-1.69-1.97-2.65C20.08 7.99 17.45 6 14 6c-3.45 0-6.08 2-7.8 3.92a18.18 18.18 0 00-2.64 3.84v.02h-.01L4 14l-.45-.21-.1.21.1.21L4 14l-.45.21.01.03a5.85 5.85 0 00.16.32c.11.2.28.51.5.87.44.72 1.1 1.69 1.97 2.65C7.92 20.01 10.55 22 14 22c3.45 0 6.08-2 7.8-3.92a18.18 18.18 0 002.64-3.84v-.02h.01L24 14zm0 0l.45.21.1-.21-.1-.21L24 14zm-10-3a3 3 0 100 6 3 3 0 000-6zm-4 3a4 4 0 118 0 4 4 0 01-8 0z"/></svg>'},93756:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M5 10.76l-.41-.72-.03-.04.03-.04a15 15 0 012.09-2.9c1.47-1.6 3.6-3.12 6.32-3.12 2.73 0 4.85 1.53 6.33 3.12a15.01 15.01 0 012.08 2.9l.03.04-.03.04a15 15 0 01-2.09 2.9c-1.47 1.6-3.6 3.12-6.32 3.12-2.73 0-4.85-1.53-6.33-3.12a15 15 0 01-1.66-2.18zm17.45-.98L22 10l.45.22-.01.02a5.04 5.04 0 01-.15.28 16.01 16.01 0 01-2.23 3.1c-1.56 1.69-3.94 3.44-7.06 3.44-3.12 0-5.5-1.75-7.06-3.44a16 16 0 01-2.38-3.38v-.02h-.01L4 10l-.45-.22.01-.02a5.4 5.4 0 01.15-.28 16 16 0 012.23-3.1C7.5 4.69 9.88 2.94 13 2.94c3.12 0 5.5 1.75 7.06 3.44a16.01 16.01 0 012.38 3.38v.02h.01zM22 10l.45-.22.1.22-.1.22L22 10zM3.55 9.78L4 10l-.45.22-.1-.22.1-.22zm6.8.22A2.6 2.6 0 0113 7.44 2.6 2.6 0 0115.65 10 2.6 2.6 0 0113 12.56 2.6 2.6 0 0110.35 10zM13 6.44A3.6 3.6 0 009.35 10 3.6 3.6 0 0013 13.56c2 0 3.65-1.58 3.65-3.56A3.6 3.6 0 0013 6.44zm7.85 12l.8-.8.7.71-.79.8a.5.5 0 000 .7l.59.59c.2.2.5.2.7 0l1.8-1.8.7.71-1.79 1.8a1.5 1.5 0 01-2.12 0l-.59-.59a1.5 1.5 0 010-2.12zM16.5 21.5l-.35-.35a.5.5 0 00-.07.07l-1 1.5-1 1.5a.5.5 0 00.42.78h4a2.5 2.5 0 001.73-.77A2.5 2.5 0 0021 22.5a2.5 2.5 0 00-.77-1.73A2.5 2.5 0 0018.5 20a3.1 3.1 0 00-1.65.58 5.28 5.28 0 00-.69.55v.01h-.01l.35.36zm.39.32l-.97 1.46-.49.72h3.07c.34 0 .72-.17 1.02-.48.3-.3.48-.68.48-1.02 0-.34-.17-.72-.48-1.02-.3-.3-.68-.48-1.02-.48-.35 0-.75.18-1.1.42a4.27 4.27 0 00-.51.4z"/></svg>'},42321:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M5 10.76a13.27 13.27 0 01-.41-.72L4.56 10l.03-.04a15 15 0 012.08-2.9c1.48-1.6 3.6-3.12 6.33-3.12s4.85 1.53 6.33 3.12a15.01 15.01 0 012.08 2.9l.03.04-.03.04a15 15 0 01-2.08 2.9c-1.48 1.6-3.6 3.12-6.33 3.12s-4.85-1.53-6.33-3.12a15 15 0 01-1.66-2.18zm17.45-.98L22 10l.45.22-.01.02a14.3 14.3 0 01-.6 1.05c-.4.64-1 1.48-1.78 2.33-1.56 1.7-3.94 3.44-7.06 3.44s-5.5-1.75-7.06-3.44a16 16 0 01-2.23-3.1 9.39 9.39 0 01-.15-.28v-.02h-.01L4 10l-.45-.22.01-.02a5.59 5.59 0 01.15-.28 16 16 0 012.23-3.1C7.5 4.69 9.87 2.94 13 2.94c3.12 0 5.5 1.75 7.06 3.44a16 16 0 012.23 3.1 9.5 9.5 0 01.15.28v.01l.01.01zM22 10l.45-.22.1.22-.1.22L22 10zM3.55 9.78L4 10l-.45.22-.1-.22.1-.22zm6.8.22A2.6 2.6 0 0113 7.44 2.6 2.6 0 0115.65 10 2.6 2.6 0 0113 12.56 2.6 2.6 0 0110.35 10zM13 6.44A3.6 3.6 0 009.35 10c0 1.98 1.65 3.56 3.65 3.56s3.65-1.58 3.65-3.56A3.6 3.6 0 0013 6.44zM20 18c0-.42.1-.65.23-.77.12-.13.35-.23.77-.23.42 0 .65.1.77.23.13.12.23.35.23.77h1c0-.58-.14-1.1-.52-1.48-.38-.38-.9-.52-1.48-.52s-1.1.14-1.48.52c-.37.38-.52.9-.52 1.48v2h-1v1h1v2c0 .42-.1.65-.23.77-.12.13-.35.23-.77.23-.42 0-.65-.1-.77-.23-.13-.12-.23-.35-.23-.77h-1c0 .58.14 1.1.52 1.48.38.37.9.52 1.48.52s1.1-.14 1.48-.52c.37-.38.52-.9.52-1.48v-2h1v-1h-1v-2zm1.65 4.35l1.14 1.15-1.14 1.15.7.7 1.15-1.14 1.15 1.14.7-.7-1.14-1.15 1.14-1.15-.7-.7-1.15 1.14-1.15-1.14-.7.7z"/></svg>'},57313:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" fill-rule="evenodd" d="M4.5 10a8.46 8.46 0 0 0 .46.8c.38.6.94 1.4 1.68 2.19 1.48 1.6 3.62 3.13 6.36 3.13s4.88-1.53 6.36-3.13A15.07 15.07 0 0 0 21.5 10a7.41 7.41 0 0 0-.46-.8c-.38-.6-.94-1.4-1.68-2.19-1.48-1.6-3.62-3.13-6.36-3.13S8.12 5.4 6.64 7A15.07 15.07 0 0 0 4.5 10zM22 10l.41-.19-.4.19zm0 0l.41.19-.4-.19zm.41.19l.09-.19-.09-.19-.01-.02a6.86 6.86 0 0 0-.15-.28c-.1-.18-.25-.45-.45-.76-.4-.64-.99-1.48-1.77-2.32C18.47 4.74 16.11 3 13 3 9.89 3 7.53 4.74 5.97 6.43A15.94 15.94 0 0 0 3.6 9.79v.02h-.01L3.5 10l.09.19.01.02a6.59 6.59 0 0 0 .15.28c.1.18.25.45.45.76.4.64.99 1.48 1.77 2.32C7.53 15.26 9.89 17 13 17c3.11 0 5.47-1.74 7.03-3.43a15.94 15.94 0 0 0 2.37-3.36v-.02h.01zM4 10l-.41-.19.4.19zm9-2.63c-1.5 0-2.7 1.18-2.7 2.63s1.2 2.63 2.7 2.63c1.5 0 2.7-1.18 2.7-2.63S14.5 7.37 13 7.37zM9.4 10C9.4 8.07 11 6.5 13 6.5s3.6 1.57 3.6 3.5S15 13.5 13 13.5A3.55 3.55 0 0 1 9.4 10zm8.1 11.9l3.28 2.18a.5.5 0 1 1-.56.84L17.5 23.1l-2.72 1.82a.5.5 0 1 1-.56-.84l3.28-2.18zm1.78-2.82a.5.5 0 0 0-.56.84L22 22.1l3.28-2.18a.5.5 0 1 0-.56-.84L22 20.9l-2.72-1.82z"/></svg>'},6894:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17.646 18.354l4 4 .708-.708-4-4z"/><path d="M12.5 21a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17zm0-1a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15z"/><path d="M9 13h7v-1H9z"/><path d="M13 16V9h-1v7z"/></svg>'},45360:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="currentColor"><path d="M17.646 18.354l4 4 .708-.708-4-4z"/><path d="M12.5 21a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17zm0-1a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15z"/><path d="M9 13h7v-1H9z"/></svg>'},77665:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M8.707 13l2.647 2.646-.707.708L6.792 12.5l3.853-3.854.708.708L8.707 12H14.5a5.5 5.5 0 0 1 5.5 5.5V19h-1v-1.5a4.5 4.5 0 0 0-4.5-4.5H8.707z"/></svg>'},90752:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path stroke="currentColor" d="M5.5 13v-2.5m8.5 11h6.5a2 2 0 0 0 2-2v-9m-17 0v-2c0-1.1.9-2 2-2h13a2 2 0 0 1 2 2v2m-17 0h17"/><path fill="currentColor" d="M10 4h1v4h-1V4zM17 4h1v4h-1V4z"/><path stroke="currentColor" d="M4 18.5h7.5m0 0L8 22m3.5-3.5L8 15"/></svg>'},81111:e=>{
|
||||
e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28" fill="none"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M4 6.5C4 5.67 4.67 5 5.5 5h4.2l.15.15L11.71 7h8.79c.83 0 1.5.67 1.5 1.5V11H5V20.5c0 .28.22.5.5.5H9v1H5.5A1.5 1.5 0 0 1 4 20.5V6.5zM5 10h16V8.5a.5.5 0 0 0-.5-.5h-9.2l-.15-.15L9.29 6H5.5a.5.5 0 0 0-.5.5V10z"/><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M14.85 16.85l3.5-3.5-.7-.7-3.5 3.5a1.5 1.5 0 1 0 0 2.7l1.64 1.65-1.64 1.65a1.5 1.5 0 1 0 .7.7l1.65-1.64 1.65 1.64a1.5 1.5 0 1 0 2.7 0l3.5-3.5-.7-.7-3.5 3.5a1.5 1.5 0 0 0-1.3 0l-1.64-1.65 4.14-4.15-.7-.7-4.15 4.14-1.65-1.64a1.5 1.5 0 0 0 0-1.3zm-.85.65a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm6 6a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-6.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1z"/></svg>'},30192:e=>{e.exports='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" width="28" height="28"><path fill="currentColor" d="M13.39 3.84a1 1 0 0 1 1.22 0l8.19 6.37a1 1 0 0 1 0 1.58l-8.19 6.37a1 1 0 0 1-1.22 0L5.2 11.79a1 1 0 0 1 0-1.58l8.19-6.37zm.61.8L5.81 11 14 17.37 22.19 11 14 4.63zM5.3 13.6l8.7 6.76 8.7-6.76.6.78-8.69 6.77a1 1 0 0 1-1.22 0l-8.7-6.77.62-.78zm8.09 10.55l-8.7-6.77.62-.78L14 23.37l8.7-6.76.6.78-8.69 6.77a1 1 0 0 1-1.22 0z"/></svg>'},55883:(e,t,o)=>{"use strict";o.d(t,{default:()=>n});const n=function(){}}}]);
|
||||
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],he_IL:["# {count} (בר)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],he_IL:["#{count} (מחיר, נר)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],he_IL:["4/(פ+ג+נ+ס)"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],he_IL:["3/(ג+נ+ס)"]}},69303:e=>{e.exports={en:["(H + L)/2"],he_IL:["2/(ג+נ)"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],he_IL:["צבע הנר על בסיס הסגירה הקודמת"]}},78930:e=>{e.exports={en:["Coordinates"],he_IL:["קואורדינטות"]}},24197:e=>{e.exports={en:["Center"],he_IL:["מרכז"]}},84831:e=>{e.exports={en:["Close line"],he_IL:["קו סגירה"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],he_IL:["התאם נתונים לדיבידנדים"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},27567:e=>{e.exports={en:["Bottom"],he_IL:["תחתית"]}},3159:e=>{e.exports={en:["Bottom line"],he_IL:["קו תחתון"]}},74406:e=>{e.exports={en:["Body"],he_IL:["גוף"]}},333:e=>{e.exports={en:["Borders"],he_IL:["גבולות"]}},42398:e=>{e.exports={en:["Base"],he_IL:["בסיס"]}},28975:e=>{e.exports={en:["Base level"],he_IL:["רמת בסיס"]}},71776:e=>{e.exports={en:["Down"],he_IL:["למטה"]}},17611:e=>{e.exports={en:["Down bars"],he_IL:["נרות ירידה"]}},23743:e=>{e.exports={en:["Down color"],he_IL:["צבע תחתון"]}},48225:e=>{e.exports={en:["Data modification"],he_IL:["התאמת נתונים"]}},72942:e=>{e.exports={en:["Days"],he_IL:["ימים"]}},16564:e=>{e.exports={en:["Default"],he_IL:["ברירת מחדל"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],he_IL:["שינוי מיקום (מחיר, בר)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],he_IL:["רקע שעות מסחר אלקטרוני"]}},819:e=>{e.exports={en:["Extend lines"],he_IL:["הרחב קווים"]}},41129:e=>{e.exports={en:["Fill"],he_IL:["למלא"]}},61112:e=>{e.exports={en:["Fill top area"],he_IL:["מלא אזור עליון"]}},73185:e=>{e.exports={en:["Fill bottom area"],he_IL:["מלא אזור תחתון"]}},886:e=>{e.exports={en:["HLC bars"],he_IL:["נרות גנס"]}},56796:e=>{e.exports={en:["Hours"],he_IL:["שעות"]}},95406:e=>{e.exports={en:["Horizontal"],he_IL:["אופקי"]}},56359:e=>{e.exports={en:["High line"],he_IL:["קו גבוה"]}},47326:e=>{e.exports={en:["Integer"],he_IL:["מספר שלם"]}},21429:e=>{e.exports={en:["Inputs"],he_IL:["תשומות"]}},64075:e=>{e.exports={en:["Override min tick"],he_IL:["דריסת טיק מינימלי"]}},34579:e=>{e.exports={en:["Low line"],he_IL:["קו נמוך"]}},11626:e=>{e.exports={en:["Left"],he_IL:["שמאל"]}},43154:e=>{e.exports={en:["Months"],he_IL:["חודשים"]}},68833:e=>{e.exports={en:["Middle"],he_IL:["אמצע"]}},42562:e=>{e.exports={en:["Minutes"],he_IL:["דקות"]}},65188:e=>{e.exports={en:["Seconds"],he_IL:["שניות"]}},13350:e=>{e.exports={en:["Pearson's R"],he_IL:["מתאם פירסון R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],he_IL:["רקע שעות טרום/מסחר מאוחר"]}},59766:e=>{e.exports={en:["Precision"],he_IL:["דיוק"]}},84684:e=>{e.exports={en:["Price source"],he_IL:["מקור המחיר"]}},73466:e=>{e.exports={en:["Projection up bars"],
|
||||
he_IL:["הטלת עמודות עולות"]}},77430:e=>{e.exports={en:["Projection candles"],he_IL:["נרות הקרנה"]}},88367:e=>{e.exports={en:["Projection down bars"],he_IL:["הטלת עמודות יורדות"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],he_IL:["מחירים אמיתיים בסולם המחיר (במקום מחיר הייקין-אשי)"]}},50421:e=>{e.exports={en:["Right"],he_IL:["ימין"]}},835:e=>{e.exports={en:["Weeks"],he_IL:["שבועות"]}},32163:e=>{e.exports={en:["Wick"],he_IL:["פתיל"]}},97118:e=>{e.exports={en:["Top"],he_IL:["עליון"]}},89349:e=>{e.exports={en:["Top line"],he_IL:["קו עליון"]}},70320:e=>{e.exports={en:["Text"],he_IL:["טקסט"]}},25485:e=>{e.exports={en:["Text alignment"],he_IL:["יישור טקסט"]}},67781:e=>{e.exports={en:["Text orientation"],he_IL:["כיוון טקסט"]}},20215:e=>{e.exports={en:["Thin bars"],he_IL:["נרות דקים"]}},24821:e=>{e.exports={en:["Ticks"],he_IL:["טיקים"]}},77073:e=>{e.exports={en:["Timezone"],he_IL:["אזור זמן"]}},22691:e=>{e.exports={en:["Up"],he_IL:["למעלה"]}},23091:e=>{e.exports={en:["Up color"],he_IL:["צבע עליון"]}},36957:e=>{e.exports={en:["Up bars"],he_IL:["נרות עליה"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},69526:e=>{e.exports={en:["Vertical"],he_IL:["אנכי"]}},21105:e=>{e.exports={en:["candle"],he_IL:["נר"]}},27068:e=>{e.exports={en:["change HLC bars"],he_IL:["שנה ברי HLC"]}},86866:e=>{e.exports={en:["change area fill color"],he_IL:["שנה את צבע מילוי השטח"]}},89346:e=>{e.exports={en:["change area line width"],he_IL:["שנה את רוחב קו השטח"]}},29605:e=>{e.exports={en:["change area line color"],he_IL:["שנה את צבע קו השטח"]}},4640:e=>{e.exports={en:["change area price source"],he_IL:["שנה מקור אזור מחיר"]}},42190:e=>{e.exports={en:["change base level"],he_IL:["שנה את רמת הבסיס"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],he_IL:["שנה את צבע השורה התחתונה של קו הבסיס"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],he_IL:["שנה את רוחב השורה התחתונה של קו הבסיס"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],he_IL:["שנה את צבע השטח התחתון של מילוי קו הבסיס"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],he_IL:["שנה את צבע האזור העליון של מילוי קו הבסיס"]}},68609:e=>{e.exports={en:["change baseline price source"],he_IL:["שנה את מקור המחיר הבסיסי"]}},69044:e=>{e.exports={en:["change baseline top line color"],he_IL:["שנה את צבע הקו העליון של קו הבסיס"]}},68197:e=>{e.exports={en:["change baseline top line width"],he_IL:["שנה את רוחב הקו העליון של קו הבסיס"]}},33464:e=>{e.exports={en:["change bar up color"],he_IL:["שנה את צבע הבר למעלה"]}},2066:e=>{e.exports={en:["change bar X coordinate"],he_IL:["שנה בר של קואורדינטת X"]}},59622:e=>{e.exports={en:["change bar down color"],he_IL:["שנה את צבע הבר למטה"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],he_IL:["שנה ברי צבע בהתבסס על סגירה קודמת"]}},88324:e=>{e.exports={en:["change column up color"],he_IL:["שנה את צבע העמודה למעלה"]}},93890:e=>{e.exports={
|
||||
en:["change column down color"],he_IL:["שנה את צבע העמודה למטה"]}},4727:e=>{e.exports={en:["change column price source"],he_IL:["שנה מקור מחיר העמודה"]}},82063:e=>{e.exports={en:["change decimal places"],he_IL:["שנה מקומות עשרוניים"]}},44223:e=>{e.exports={en:["change extended hours color"],he_IL:["שנה את צבע השעות המורחבות"]}},47393:e=>{e.exports={en:["change electronic trading hours"],he_IL:["שינוי שעות המסחר האלקטרוניות"]}},6026:e=>{e.exports={en:["change high-low body color"],he_IL:["שנה צבע גבוה-נמוך של הגוף"]}},73021:e=>{e.exports={en:["change high-low body visibility"],he_IL:["שנה נראות גבוה-נמוך של הגוף"]}},46844:e=>{e.exports={en:["change high-low border color"],he_IL:["שנה צבע גבול גבוה-נמוך של הגוף"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],he_IL:["שנה נראות גבול גבוה-נמוך של הגוף"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],he_IL:["שנה נראות התוויות גבוה-נמוך"]}},56961:e=>{e.exports={en:["change high-low labels color"],he_IL:["שנה צבע התוויות גבוה-נמוך"]}},88640:e=>{e.exports={en:["change line color"],he_IL:["שנה צבע קו"]}},41837:e=>{e.exports={en:["change line price source"],he_IL:["שנה מקור מחיר קו"]}},48339:e=>{e.exports={en:["change line width"],he_IL:["שנה רוחב קו"]}},38730:e=>{e.exports={en:["change post market color"],he_IL:["שנה צבע מסחר מאוחר"]}},44371:e=>{e.exports={en:["change pre market color"],he_IL:["שנה צבע טרום מסחר"]}},11737:e=>{e.exports={en:["change price Y coordinate"],he_IL:["שנה מחיר של קואורדינטת Y"]}},16241:e=>{e.exports={en:["change range bars style"],he_IL:["שנה את סגנון ברי הטווח"]}},65821:e=>{e.exports={en:["change range thin bars"],he_IL:["שנה ברים דקים בטווח"]}},75487:e=>{e.exports={en:["change renko wick down color"],he_IL:["שנה צבע renko wick down"]}},92277:e=>{e.exports={en:["change renko wick up color"],he_IL:["שנה צבע wick up renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],he_IL:["שנה נראות של פתיל renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],he_IL:["שנה מינימום טיק של שכבת המחקר"]}},82924:e=>{e.exports={en:["change study overlay style"],he_IL:["שנה את סגנון שכבת המחקר"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],he_IL:["שנה הצגת המחירים האמיתיים בסולם המחירים (במקום מחיר הייקן-אשי)"]}},60834:e=>{e.exports={en:["change thin bars"],he_IL:["שנה ברים דקים"]}},78509:e=>{e.exports={en:["change {title} base line color"],he_IL:["שנה את צבע קו הבסיס של {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],he_IL:["שנה את סגנון קו הבסיס של {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],he_IL:["שנה את נראות קו הבסיס של {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],he_IL:["שנה את רוחב קו הבסיס של {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],he_IL:["שנה את צבע הקו התחתון של {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],he_IL:["שנה את סגנון הקו התחתון של {title}"]}},46410:e=>{e.exports={
|
||||
en:["change {title} down line visibility"],he_IL:["שנה נראות קו תחתון של {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],he_IL:["שנה את רוחב הקו התחתון של {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],he_IL:["שנה {title} ימים ל"]}},91201:e=>{e.exports={en:["change {title} days from"],he_IL:["שנה {title} ימים מ"]}},76295:e=>{e.exports={en:["change {title} extend lines"],he_IL:["שנה {title} קווים מורחבים"]}},8306:e=>{e.exports={en:["change {title} hours from"],he_IL:["שנה {title} שעות מ"]}},67233:e=>{e.exports={en:["change {title} hours to"],he_IL:["שנה את השעות של {title} ל"]}},99122:e=>{e.exports={en:["change {title} months from"],he_IL:["שנה {title} חודשים מ"]}},10518:e=>{e.exports={en:["change {title} months to"],he_IL:["שנה {title} חודשים ל"]}},38011:e=>{e.exports={en:["change {title} minutes to"],he_IL:["שנה {title} דקות ל"]}},59820:e=>{e.exports={en:["change {title} minutes from"],he_IL:["שנה {title} דקות מ"]}},6573:e=>{e.exports={en:["change {title} seconds to"],he_IL:["שנה {title} שניות ל"]}},86780:e=>{e.exports={en:["change {title} seconds from"],he_IL:["שנה {title} שניות מ"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],he_IL:["שנה {title} הצג את ה-r של פירסון"]}},32481:e=>{e.exports={en:["change {title} weeks from"],he_IL:["שנה {title} שבועות מ"]}},18678:e=>{e.exports={en:["change {title} weeks to"],he_IL:["שנה {title} שבועות ל"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],he_IL:["שנה את נראות הקו העליון של {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],he_IL:["שנה את רוחב הקו העליון של {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],he_IL:["שנה את צבע הקו העליון של {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],he_IL:["שנה את סגנון הקו העליון של {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],he_IL:["שנה את הנראות של {title} בטיקים"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],he_IL:["שנה נראות של {title} על שבועות"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],he_IL:["שנה את הנראות של {title} ב-{ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],he_IL:["שנה את הנראות של {title} בימים"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],he_IL:["שנה נראות של {title} בשעות"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],he_IL:["שנה נראות של {title} על דקות"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],he_IL:["שנה נראות של {title} על חודשים"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],he_IL:["שנה נראות של {title} בשניות"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],he_IL:["שנה את צבע הגבול העליון של {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],he_IL:["שנה צבע של {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],he_IL:["שנה את הצבע של {candleType} wick למטה"]}},47664:e=>{e.exports={
|
||||
en:["change {candleType} wick up color"],he_IL:["שנה את הצבע שלwick up {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],he_IL:["שנה את נראות הפתיל {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],he_IL:["שנה נראות הגוף של {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],he_IL:["שנה את נראות הגבול של {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],he_IL:["שנה את צבע הגבול התחתון של {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],he_IL:["שנה את הצבע התחתון של {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],he_IL:["שנה את צבע בר הגבול של {chartType} התחתון"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],he_IL:["שנה את צבע בר הגבול {chartType} העליון"]}},5012:e=>{e.exports={en:["change {chartType} down color"],he_IL:["שנה את הצבע התחתון של {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],he_IL:["שנה את צבע בר הגבול להקרנה {chartType} העליון"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],he_IL:["שנה את הצבע של בר ההקרנה {chartType} התחתון"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],he_IL:["שנה את צבע בר ההקרנה {chartType} העליון"]}},6970:e=>{e.exports={en:["change {chartType} up color"],he_IL:["שנה את הצבע העליון של {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],he_IL:["שנה מאפיין {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],he_IL:["שנה את המאפיין {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],he_IL:["להתאים נתונים לדיבידנדים"]}},1433:e=>{e.exports={en:["adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},35813:e=>{e.exports={en:["days"],he_IL:["ימים"]}},89919:e=>{e.exports={en:["days to"],he_IL:["ימים ל"]}},59215:e=>{e.exports={en:["days from"],he_IL:["ימים מ"]}},2359:e=>{e.exports={en:["hours"],he_IL:["שעות"]}},82267:e=>{e.exports={en:["hours from"],he_IL:["שעות מ"]}},15600:e=>{e.exports={en:["hours to"],he_IL:["שעות ל"]}},92598:e=>{e.exports={en:["hollow candles"],he_IL:["נרות חלולים"]}},76261:e=>{e.exports={en:["move drawings"],he_IL:["העבר שרטוטים"]}},95300:e=>{e.exports={en:["months"],he_IL:["חודשים"]}},17250:e=>{e.exports={en:["months from"],he_IL:["חודשים מ"]}},2828:e=>{e.exports={en:["months to"],he_IL:["חודשים ל"]}},18726:e=>{e.exports={en:["minutes"],he_IL:["דקות"]}},67649:e=>{e.exports={en:["minutes to"],he_IL:["דקות ל"]}},22476:e=>{e.exports={en:["minutes from"],he_IL:["דקות מ"]}},751:e=>{e.exports={en:["seconds"],he_IL:["שניות"]}},73419:e=>{e.exports={en:["seconds to"],he_IL:["שניות ל"]}},35801:e=>{e.exports={en:["seconds from"],he_IL:["שניות מ"]}},57243:e=>{e.exports={en:["range","ranges"],he_IL:["טווח","טווחים","טווחים","טווחים"]}},70282:e=>{e.exports={en:["renko"],he_IL:["גרף ראנקו"]}},45537:e=>{e.exports={en:["weeks"],he_IL:["שבועות"]}},92859:e=>{e.exports={en:["weeks from"],he_IL:["שבועות מ"]
|
||||
}},44127:e=>{e.exports={en:["weeks to"],he_IL:["שבועות ל"]}},3539:e=>{e.exports={en:["ticks"],he_IL:["טיקים"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],he_IL:["{value} עשרוני","{value} עשרונים","{value} עשרונים","{value} עשרונים"]}}}]);
|
||||
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],he_IL:["# {count} (בר)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],he_IL:["#{count} (מחיר, נר)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],he_IL:["4/(פ+ג+נ+ס)"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],he_IL:["3/(ג+נ+ס)"]}},69303:e=>{e.exports={en:["(H + L)/2"],he_IL:["2/(ג+נ)"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],he_IL:["צבע הנר על בסיס הסגירה הקודמת"]}},78930:e=>{e.exports={en:["Coordinates"],he_IL:["קואורדינטות"]}},24197:e=>{e.exports={en:["Center"],he_IL:["מרכז"]}},84831:e=>{e.exports={en:["Close line"],he_IL:["קו סגירה"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],he_IL:["התאם נתונים לדיבידנדים"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},27567:e=>{e.exports={en:["Bottom"],he_IL:["תחתית"]}},3159:e=>{e.exports={en:["Bottom line"],he_IL:["קו תחתון"]}},74406:e=>{e.exports={en:["Body"],he_IL:["גוף"]}},333:e=>{e.exports={en:["Borders"],he_IL:["גבולות"]}},42398:e=>{e.exports={en:["Base"],he_IL:["בסיס"]}},28975:e=>{e.exports={en:["Base level"],he_IL:["רמת בסיס"]}},71776:e=>{e.exports={en:["Down"],he_IL:["למטה"]}},17611:e=>{e.exports={en:["Down bars"],he_IL:["נרות ירידה"]}},23743:e=>{e.exports={en:["Down color"],he_IL:["צבע תחתון"]}},48225:e=>{e.exports={en:["Data modification"],he_IL:["התאמת נתונים"]}},72942:e=>{e.exports={en:["Days"],he_IL:["ימים"]}},16564:e=>{e.exports={en:["Default"],he_IL:["ברירת מחדל"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],he_IL:["שינוי מיקום (מחיר, בר)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],he_IL:["רקע שעות מסחר אלקטרוני"]}},819:e=>{e.exports={en:["Extend lines"],he_IL:["הרחב קווים"]}},41129:e=>{e.exports={en:["Fill"],he_IL:["למלא"]}},61112:e=>{e.exports={en:["Fill top area"],he_IL:["מלא אזור עליון"]}},73185:e=>{e.exports={en:["Fill bottom area"],he_IL:["מלא אזור תחתון"]}},56796:e=>{e.exports={en:["Hours"],he_IL:["שעות"]}},95406:e=>{e.exports={en:["Horizontal"],he_IL:["אופקי"]}},56359:e=>{e.exports={en:["High line"],he_IL:["קו גבוה"]}},47326:e=>{e.exports={en:["Integer"],he_IL:["מספר שלם"]}},21429:e=>{e.exports={en:["Inputs"],he_IL:["תשומות"]}},64075:e=>{e.exports={en:["Override min tick"],he_IL:["דריסת טיק מינימלי"]}},34579:e=>{e.exports={en:["Low line"],he_IL:["קו נמוך"]}},11626:e=>{e.exports={en:["Left"],he_IL:["שמאל"]}},43154:e=>{e.exports={en:["Months"],he_IL:["חודשים"]}},68833:e=>{e.exports={en:["Middle"],he_IL:["אמצע"]}},42562:e=>{e.exports={en:["Minutes"],he_IL:["דקות"]}},65188:e=>{e.exports={en:["Seconds"],he_IL:["שניות"]}},13350:e=>{e.exports={en:["Pearson's R"],he_IL:["מתאם פירסון R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],he_IL:["רקע שעות טרום/מסחר מאוחר"]}},59766:e=>{e.exports={en:["Precision"],he_IL:["דיוק"]}},84684:e=>{e.exports={en:["Price source"],he_IL:["מקור המחיר"]}},73466:e=>{e.exports={
|
||||
en:["Projection up bars"],he_IL:["הטלת עמודות עולות"]}},77430:e=>{e.exports={en:["Projection candles"],he_IL:["נרות הקרנה"]}},88367:e=>{e.exports={en:["Projection down bars"],he_IL:["הטלת עמודות יורדות"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],he_IL:["מחירים אמיתיים בסולם המחיר (במקום מחיר הייקין-אשי)"]}},50421:e=>{e.exports={en:["Right"],he_IL:["ימין"]}},835:e=>{e.exports={en:["Weeks"],he_IL:["שבועות"]}},32163:e=>{e.exports={en:["Wick"],he_IL:["פתיל"]}},97118:e=>{e.exports={en:["Top"],he_IL:["עליון"]}},89349:e=>{e.exports={en:["Top line"],he_IL:["קו עליון"]}},70320:e=>{e.exports={en:["Text"],he_IL:["טקסט"]}},25485:e=>{e.exports={en:["Text alignment"],he_IL:["יישור טקסט"]}},67781:e=>{e.exports={en:["Text orientation"],he_IL:["כיוון טקסט"]}},20215:e=>{e.exports={en:["Thin bars"],he_IL:["נרות דקים"]}},24821:e=>{e.exports={en:["Ticks"],he_IL:["טיקים"]}},77073:e=>{e.exports={en:["Timezone"],he_IL:["אזור זמן"]}},22691:e=>{e.exports={en:["Up"],he_IL:["למעלה"]}},23091:e=>{e.exports={en:["Up color"],he_IL:["צבע עליון"]}},36957:e=>{e.exports={en:["Up bars"],he_IL:["נרות עליה"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},69526:e=>{e.exports={en:["Vertical"],he_IL:["אנכי"]}},21105:e=>{e.exports={en:["candle"],he_IL:["נר"]}},27068:e=>{e.exports={en:["change HLC bars"],he_IL:["שנה ברי HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],he_IL:["שנה את צבע מילוי השטח"]}},89346:e=>{e.exports={en:["change area line width"],he_IL:["שנה את רוחב קו השטח"]}},29605:e=>{e.exports={en:["change area line color"],he_IL:["שנה את צבע קו השטח"]}},4640:e=>{e.exports={en:["change area price source"],he_IL:["שנה מקור אזור מחיר"]}},42190:e=>{e.exports={en:["change base level"],he_IL:["שנה את רמת הבסיס"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],he_IL:["שנה את צבע השורה התחתונה של קו הבסיס"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],he_IL:["שנה את רוחב השורה התחתונה של קו הבסיס"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],he_IL:["שנה את צבע השטח התחתון של מילוי קו הבסיס"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],he_IL:["שנה את צבע האזור העליון של מילוי קו הבסיס"]}},68609:e=>{e.exports={en:["change baseline price source"],he_IL:["שנה את מקור המחיר הבסיסי"]}},69044:e=>{e.exports={en:["change baseline top line color"],he_IL:["שנה את צבע הקו העליון של קו הבסיס"]}},68197:e=>{e.exports={en:["change baseline top line width"],he_IL:["שנה את רוחב הקו העליון של קו הבסיס"]}},33464:e=>{e.exports={en:["change bar up color"],he_IL:["שנה את צבע הבר למעלה"]}},2066:e=>{e.exports={en:["change bar X coordinate"],he_IL:["שנה בר של קואורדינטת X"]}},59622:e=>{e.exports={en:["change bar down color"],he_IL:["שנה את צבע הבר למטה"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],he_IL:["שנה ברי צבע בהתבסס על סגירה קודמת"]}},88324:e=>{e.exports={en:["change column up color"],
|
||||
he_IL:["שנה את צבע העמודה למעלה"]}},93890:e=>{e.exports={en:["change column down color"],he_IL:["שנה את צבע העמודה למטה"]}},4727:e=>{e.exports={en:["change column price source"],he_IL:["שנה מקור מחיר העמודה"]}},82063:e=>{e.exports={en:["change decimal places"],he_IL:["שנה מקומות עשרוניים"]}},44223:e=>{e.exports={en:["change extended hours color"],he_IL:["שנה את צבע השעות המורחבות"]}},47393:e=>{e.exports={en:["change electronic trading hours"],he_IL:["שינוי שעות המסחר האלקטרוניות"]}},6026:e=>{e.exports={en:["change high-low body color"],he_IL:["שנה צבע גבוה-נמוך של הגוף"]}},73021:e=>{e.exports={en:["change high-low body visibility"],he_IL:["שנה נראות גבוה-נמוך של הגוף"]}},46844:e=>{e.exports={en:["change high-low border color"],he_IL:["שנה צבע גבול גבוה-נמוך של הגוף"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],he_IL:["שנה נראות גבול גבוה-נמוך של הגוף"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],he_IL:["שנה נראות התוויות גבוה-נמוך"]}},56961:e=>{e.exports={en:["change high-low labels color"],he_IL:["שנה צבע התוויות גבוה-נמוך"]}},88640:e=>{e.exports={en:["change line color"],he_IL:["שנה צבע קו"]}},41837:e=>{e.exports={en:["change line price source"],he_IL:["שנה מקור מחיר קו"]}},48339:e=>{e.exports={en:["change line width"],he_IL:["שנה רוחב קו"]}},38730:e=>{e.exports={en:["change post market color"],he_IL:["שנה צבע מסחר מאוחר"]}},44371:e=>{e.exports={en:["change pre market color"],he_IL:["שנה צבע טרום מסחר"]}},11737:e=>{e.exports={en:["change price Y coordinate"],he_IL:["שנה מחיר של קואורדינטת Y"]}},16241:e=>{e.exports={en:["change range bars style"],he_IL:["שנה את סגנון ברי הטווח"]}},65821:e=>{e.exports={en:["change range thin bars"],he_IL:["שנה ברים דקים בטווח"]}},75487:e=>{e.exports={en:["change renko wick down color"],he_IL:["שנה צבע renko wick down"]}},92277:e=>{e.exports={en:["change renko wick up color"],he_IL:["שנה צבע wick up renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],he_IL:["שנה נראות של פתיל renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],he_IL:["שנה מינימום טיק של שכבת המחקר"]}},82924:e=>{e.exports={en:["change study overlay style"],he_IL:["שנה את סגנון שכבת המחקר"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],he_IL:["שנה הצגת המחירים האמיתיים בסולם המחירים (במקום מחיר הייקן-אשי)"]}},60834:e=>{e.exports={en:["change thin bars"],he_IL:["שנה ברים דקים"]}},78509:e=>{e.exports={en:["change {title} base line color"],he_IL:["שנה את צבע קו הבסיס של {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],he_IL:["שנה את סגנון קו הבסיס של {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],he_IL:["שנה את נראות קו הבסיס של {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],he_IL:["שנה את רוחב קו הבסיס של {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],he_IL:["שנה את צבע הקו התחתון של {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],
|
||||
he_IL:["שנה את סגנון הקו התחתון של {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],he_IL:["שנה נראות קו תחתון של {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],he_IL:["שנה את רוחב הקו התחתון של {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],he_IL:["שנה {title} ימים ל"]}},91201:e=>{e.exports={en:["change {title} days from"],he_IL:["שנה {title} ימים מ"]}},76295:e=>{e.exports={en:["change {title} extend lines"],he_IL:["שנה {title} קווים מורחבים"]}},8306:e=>{e.exports={en:["change {title} hours from"],he_IL:["שנה {title} שעות מ"]}},67233:e=>{e.exports={en:["change {title} hours to"],he_IL:["שנה את השעות של {title} ל"]}},99122:e=>{e.exports={en:["change {title} months from"],he_IL:["שנה {title} חודשים מ"]}},10518:e=>{e.exports={en:["change {title} months to"],he_IL:["שנה {title} חודשים ל"]}},38011:e=>{e.exports={en:["change {title} minutes to"],he_IL:["שנה {title} דקות ל"]}},59820:e=>{e.exports={en:["change {title} minutes from"],he_IL:["שנה {title} דקות מ"]}},6573:e=>{e.exports={en:["change {title} seconds to"],he_IL:["שנה {title} שניות ל"]}},86780:e=>{e.exports={en:["change {title} seconds from"],he_IL:["שנה {title} שניות מ"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],he_IL:["שנה {title} הצג את ה-r של פירסון"]}},32481:e=>{e.exports={en:["change {title} weeks from"],he_IL:["שנה {title} שבועות מ"]}},18678:e=>{e.exports={en:["change {title} weeks to"],he_IL:["שנה {title} שבועות ל"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],he_IL:["שנה את נראות הקו העליון של {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],he_IL:["שנה את רוחב הקו העליון של {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],he_IL:["שנה את צבע הקו העליון של {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],he_IL:["שנה את סגנון הקו העליון של {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],he_IL:["שנה את הנראות של {title} בטיקים"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],he_IL:["שנה נראות של {title} על שבועות"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],he_IL:["שנה את הנראות של {title} ב-{ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],he_IL:["שנה את הנראות של {title} בימים"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],he_IL:["שנה נראות של {title} בשעות"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],he_IL:["שנה נראות של {title} על דקות"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],he_IL:["שנה נראות של {title} על חודשים"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],he_IL:["שנה נראות של {title} בשניות"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],he_IL:["שנה את צבע הגבול העליון של {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],he_IL:["שנה צבע של {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],
|
||||
he_IL:["שנה את הצבע של {candleType} wick למטה"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],he_IL:["שנה את הצבע שלwick up {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],he_IL:["שנה את נראות הפתיל {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],he_IL:["שנה נראות הגוף של {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],he_IL:["שנה את נראות הגבול של {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],he_IL:["שנה את צבע הגבול התחתון של {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],he_IL:["שנה את הצבע התחתון של {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],he_IL:["שנה את צבע בר הגבול של {chartType} התחתון"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],he_IL:["שנה את צבע בר הגבול {chartType} העליון"]}},5012:e=>{e.exports={en:["change {chartType} down color"],he_IL:["שנה את הצבע התחתון של {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],he_IL:["שנה את צבע בר הגבול להקרנה {chartType} העליון"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],he_IL:["שנה את הצבע של בר ההקרנה {chartType} התחתון"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],he_IL:["שנה את צבע בר ההקרנה {chartType} העליון"]}},6970:e=>{e.exports={en:["change {chartType} up color"],he_IL:["שנה את הצבע העליון של {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],he_IL:["שנה מאפיין {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],he_IL:["שנה את המאפיין {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],he_IL:["להתאים נתונים לדיבידנדים"]}},1433:e=>{e.exports={en:["adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},35813:e=>{e.exports={en:["days"],he_IL:["ימים"]}},89919:e=>{e.exports={en:["days to"],he_IL:["ימים ל"]}},59215:e=>{e.exports={en:["days from"],he_IL:["ימים מ"]}},2359:e=>{e.exports={en:["hours"],he_IL:["שעות"]}},82267:e=>{e.exports={en:["hours from"],he_IL:["שעות מ"]}},15600:e=>{e.exports={en:["hours to"],he_IL:["שעות ל"]}},92598:e=>{e.exports={en:["hollow candles"],he_IL:["נרות חלולים"]}},76261:e=>{e.exports={en:["move drawings"],he_IL:["העבר שרטוטים"]}},95300:e=>{e.exports={en:["months"],he_IL:["חודשים"]}},17250:e=>{e.exports={en:["months from"],he_IL:["חודשים מ"]}},2828:e=>{e.exports={en:["months to"],he_IL:["חודשים ל"]}},18726:e=>{e.exports={en:["minutes"],he_IL:["דקות"]}},67649:e=>{e.exports={en:["minutes to"],he_IL:["דקות ל"]}},22476:e=>{e.exports={en:["minutes from"],he_IL:["דקות מ"]}},751:e=>{e.exports={en:["seconds"],he_IL:["שניות"]}},73419:e=>{e.exports={en:["seconds to"],he_IL:["שניות ל"]}},35801:e=>{e.exports={en:["seconds from"],he_IL:["שניות מ"]}},57243:e=>{e.exports={en:["range","ranges"],he_IL:["טווח","טווחים","טווחים","טווחים"]}},70282:e=>{e.exports={en:["renko"],he_IL:["גרף ראנקו"]}},45537:e=>{e.exports={en:["weeks"],
|
||||
he_IL:["שבועות"]}},92859:e=>{e.exports={en:["weeks from"],he_IL:["שבועות מ"]}},44127:e=>{e.exports={en:["weeks to"],he_IL:["שבועות ל"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],he_IL:["טיקים"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],he_IL:["{value} עשרוני","{value} עשרונים","{value} עשרונים","{value} עשרונים"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],he_IL:["נְקוּדָה"]}},41256:e=>{e.exports={en:["Back"],he_IL:["חזור"]}},53174:e=>{e.exports={en:["Right"],he_IL:["זכות Right"]}},57e3:e=>{e.exports={en:["Compare"],he_IL:["השוואה"]}},93111:e=>{e.exports={en:["Content"],he_IL:["תוכן"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],he_IL:["העתק קישור לתמונת הגרף"]}},4543:e=>{e.exports={en:["Cancel"],he_IL:["ביטול"]}},59934:e=>{e.exports={en:["Channels"],he_IL:["ערוצים"]}},63245:e=>{e.exports={en:["Change symbol"],he_IL:["שנה סימול"]}},56281:e=>{e.exports={en:["Chart style Columns"],he_IL:["סגנון גרף עמודות"]}},64526:e=>{e.exports={en:["Chart style Candles"],he_IL:["סגנון גרף נרות"]}},9537:e=>{e.exports={en:["Chart style Area"],he_IL:["סגנון גרף איזור"]}},19265:e=>{e.exports={en:["Chart style Bars"],he_IL:["סגנון גרף ברים"]}},19579:e=>{e.exports={en:["Chart style Baseline"],he_IL:["סגנון גרף קו בסיס"]}},47189:e=>{e.exports={en:["Chart style Kagi"],he_IL:["סגנון גרף קאגי"]}},39883:e=>{e.exports={en:["Chart style HLC area"],he_IL:["סגנון גרף אזור HLC"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],he_IL:["סגנון גרף נרות חלולים"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],he_IL:["סגנון גרף הייקין אשי"]}},70405:e=>{e.exports={en:["Chart style High-low"],he_IL:["סגנון גרף גבוה-נמוך"]}},92911:e=>{e.exports={en:["Chart style Line"],he_IL:["סגנון גרף קו"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],he_IL:["סגנון גרף קו עם סמנים"]}},11604:e=>{e.exports={en:["Chart style Line break"],he_IL:["סגנון גרף קו שבור"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],he_IL:["סגנון גרף של סשן פרופיל"]}},40447:e=>{e.exports={en:["Chart style Step line"],he_IL:["סגנון גרף קו צעד"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],he_IL:["סגנון גרף Point & Figure"]}},49942:e=>{e.exports={en:["Chart style Range"],he_IL:["סגנון גרף טווח"]}},80082:e=>{e.exports={en:["Chart style Renko"],he_IL:["סגנון גרף בנקו"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],he_IL:["סגנון גרף זמן מחיר הזדמנות"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],he_IL:["סגנון גרף נרות ווליום"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],he_IL:["סגנון גרף ווליום Footprint"]}},53438:e=>{e.exports={en:["Chart template"],he_IL:["תבנית גרף"]}},47742:e=>{e.exports={en:["Close menu"],he_IL:["סגור תפריט"]}},81578:e=>{e.exports={en:["Cursors"],he_IL:["סמנים"]}},77915:e=>{e.exports={en:["Cycles"],he_IL:["מחזורים"]}},32064:e=>{e.exports={en:["Annotation tools"],he_IL:["כלי ביאור"]}},69207:e=>{e.exports={en:["Add to favorites"],he_IL:["הוסף למועדפים"]}},34040:e=>{e.exports={en:["All sources"],he_IL:["כל המקורות"]}},19147:e=>{e.exports={en:["Arrows"],he_IL:["חצים"]}},42358:e=>{e.exports={en:["Bond"],he_IL:["אגרת חוב"]}},65695:e=>{e.exports={en:["Brushes"],he_IL:["מברשות"]}},51494:e=>{e.exports={en:["Gann"],he_IL:["גאן"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],
|
||||
he_IL:["כלי גאן ופיבונאצ'י"]}},22145:e=>{e.exports={en:["Geometric shapes"],he_IL:["צורות גאומטריות"]}},57157:e=>{e.exports={en:["Dot"],he_IL:["נקודה"]}},25848:e=>{e.exports={en:["Dark theme"],he_IL:["מצב כהה"]}},14939:e=>{e.exports={en:["Demonstration"],he_IL:["הדגמה"]}},78734:e=>{e.exports={en:["Description"],he_IL:["תיאור"]}},74385:e=>{e.exports={en:["Drawings"],he_IL:["שרטוטים"]}},44255:e=>{e.exports={en:["Elliott waves"],he_IL:["גלי אליוט"]}},8727:e=>{e.exports={en:["Eraser"],he_IL:["מחק"]}},93308:e=>{e.exports={en:["Extended session"],he_IL:["שעות מסחר מורחבות"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],he_IL:["כלי חיזוי ומדידה"]}},26578:e=>{e.exports={en:["Fibonacci"],he_IL:["פיבונאצ'י"]}},67092:e=>{e.exports={en:["Fullscreen mode"],he_IL:["מצב מסך מלא"]}},83576:e=>{e.exports={en:["Function"],he_IL:["פונקציה"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],he_IL:["החזק את {hotKey_0} לשרטוט זמני"]}},27077:e=>{e.exports={en:["Open Object Tree"],he_IL:["פתח את עץ האובייקטים"]}},7386:e=>{e.exports={en:["Open chart layout"],he_IL:["פתח את פריסת הגרף"]}},79451:e=>{e.exports={en:["Lock all drawings"],he_IL:["נעל כלי שרטוט"]}},35112:e=>{e.exports={en:["Move chart back"],he_IL:["העבר את הגרף אחורה"]}},12754:e=>{e.exports={en:["Move chart forward"],he_IL:["העבר את הגרף קדימה"]}},37117:e=>{e.exports={en:["More"],he_IL:["עוד"]}},35553:e=>{e.exports={en:["Magic"],he_IL:["קסם"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],he_IL:["מצב מגנט מצמיד שרטוטים ליד עמודות מחיר לערך OHLC הקרוב"]}},81031:e=>{e.exports={en:["Manage layout drawings"],he_IL:["נהל שרטוטי פריסה"]}},91563:e=>{e.exports={en:["Measure"],he_IL:["מדידה"]}},97050:e=>{e.exports={en:["Measurer"],he_IL:["מודד"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],he_IL:["מזג את כל הסקאלות לשמאל"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],he_IL:["מזג את כל הסקאלות לימין"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],he_IL:["אין בורסות התואמות את הקריטריונים שלך"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],he_IL:["אין סימולים תואמים את הקריטריונים שלך"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],he_IL:["שום דבר לא תואם את הקריטריונים שלך"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],he_IL:["שרטוטים חדשים מועתקים לכל הגרפים בפריסה ומוצגים כאשר אותו הטיקר נבחר"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],he_IL:["שרטוטים חדשים יסונכרנו ברחבי העולם"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],he_IL:["שרטוטים חדשים יסונכרנו בפריסה"]}},28628:e=>{e.exports={en:["Sources"],he_IL:["מקורות"]}},41569:e=>{e.exports={en:["Save chart layout"],he_IL:["שמור פריסת גרף"]}},8573:e=>{e.exports={en:["Search"],he_IL:["חפש"]}},79354:e=>{e.exports={en:["Search tool or function"],he_IL:["חפש כלי או פונקציה"]}},57640:e=>{e.exports={en:["Select source"],he_IL:["בחר מקור"]}},65781:e=>{e.exports={
|
||||
en:["Shapes"],he_IL:["צורות"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],he_IL:["הצג כלים מוסתרים"]}},85786:e=>{e.exports={en:["Show Object Tree"],he_IL:["הצג עץ אובייקטים"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],he_IL:["הישאר במצב שרטוט"]}},94593:e=>{e.exports={en:["Strong Magnet"],he_IL:["מגנט חזק"]}},95481:e=>{e.exports={en:["Symbol"],he_IL:["סימול"]}},74007:e=>{e.exports={en:["Symbol & description"],he_IL:["סימול ותיאור"]}},51165:e=>{e.exports={en:["Symbol Search"],he_IL:["חיפוש סימולים"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],he_IL:["סנכרן שרטוטים לכל הגרפים..."]}},46417:e=>{e.exports={en:["Patterns"],he_IL:["תבניות"]}},36167:e=>{e.exports={en:["Pitchforks"],he_IL:["קלשונים"]}},79366:e=>{e.exports={en:["Previous day close price line"],he_IL:["סגירת קו מחיר יום קודם"]}},76753:e=>{e.exports={en:["Recent search"],he_IL:["חיפוש אחרון"]}},28051:e=>{e.exports={en:["Regular session"],he_IL:["סשן רגיל"]}},57118:e=>{e.exports={en:["Remove Drawings"],he_IL:["הסר שרטוטים"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],he_IL:["הסר את כל המתנדים וכלי השרטוט"]}},96374:e=>{e.exports={en:["Remove drawings"],he_IL:["הסר שרטוטים"]}},85106:e=>{e.exports={en:["Remove from favorites"],he_IL:["הסר ממועדפים"]}},99984:e=>{e.exports={en:["Remove indicators"],he_IL:["הסר מחוונים"]}},38206:e=>{e.exports={en:["Rename chart layout"],he_IL:["בחר שם חדש לפריסת הגרף"]}},31789:e=>{e.exports={en:["Reset chart"],he_IL:["אפס גרף"]}},3519:e=>{e.exports={en:["Weak Magnet"],he_IL:["מגנט חלש"]}},65831:e=>{e.exports={en:["Text & Notes"],he_IL:["טקסט והערות"]}},48773:e=>{e.exports={en:["Trend line tools"],he_IL:["קווי מגמה - כלים"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],he_IL:["הקלד כדי לחפש שרטוטים, פונקציות והגדרות"]}},69260:e=>{e.exports={en:["Volume-based"],he_IL:["מבוסס נפח"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],he_IL:["אתה משנה את ממשק המשתמש לנושא {name}. האם ברצונך להחליף גם את ערכת הנושא של תבנית הגרף?"]}},55774:e=>{e.exports={en:["Zoom In"],he_IL:["הגדל"]}},37310:e=>{e.exports={en:["Zoom Out"],he_IL:["הקטן"]}},70932:e=>{e.exports={en:["commodity"],he_IL:["סחורה"]}},79599:e=>{e.exports={en:["cfd"],he_IL:["חוזה הפרשים cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],he_IL:["לשנות את נראות הרעיונות בגרף"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],he_IL:["שנה נראות של שם תוויות אינדיקטורים ופיננסיות"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],he_IL:["שנה נראות של אינדיקטורים ותוויות ערך פיננסיות"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],he_IL:["שנה נראות של קווי המחירים פרה/פוסט מארקט"]}},46128:e=>{e.exports={en:["crypto"],he_IL:["קריפטו"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],he_IL:["כַּלְכָּלָה"]}},17770:e=>{e.exports={en:["forex"],he_IL:['מט"ח']}},4723:e=>{
|
||||
e.exports={en:["futures"],he_IL:["חוזים עתידיים"]}},87464:e=>{e.exports={en:["index"],he_IL:["מדד"]}},90250:e=>{e.exports={en:["indices"],he_IL:["מדדים"]}},76752:e=>{e.exports={en:["stock"],he_IL:["מניה"]}},94521:e=>{e.exports={en:["sync drawings"],he_IL:["סנכרן שרטוטים"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],he_IL:["{hotKey_0} + לחיצה על הגרף"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],he_IL:["{hotKey_0} — עיגול"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],he_IL:["{hotKey_0} - צייר קו ישר בזוויות של 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],he_IL:["{hotKey_0} — מרווחים קבועים"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],he_IL:["{hotKey_0} — ריבוע"]}}}]);
|
||||
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],he_IL:["נְקוּדָה"]}},41256:e=>{e.exports={en:["Back"],he_IL:["חזור"]}},53174:e=>{e.exports={en:["Right"],he_IL:["זכות Right"]}},57e3:e=>{e.exports={en:["Compare"],he_IL:["השוואה"]}},93111:e=>{e.exports={en:["Content"],he_IL:["תוכן"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],he_IL:["העתק קישור לתמונת הגרף"]}},4543:e=>{e.exports={en:["Cancel"],he_IL:["ביטול"]}},59934:e=>{e.exports={en:["Channels"],he_IL:["ערוצים"]}},63245:e=>{e.exports={en:["Change symbol"],he_IL:["שנה סימול"]}},56281:e=>{e.exports={en:["Chart style Columns"],he_IL:["סגנון גרף עמודות"]}},64526:e=>{e.exports={en:["Chart style Candles"],he_IL:["סגנון גרף נרות"]}},9537:e=>{e.exports={en:["Chart style Area"],he_IL:["סגנון גרף איזור"]}},19265:e=>{e.exports={en:["Chart style Bars"],he_IL:["סגנון גרף ברים"]}},19579:e=>{e.exports={en:["Chart style Baseline"],he_IL:["סגנון גרף קו בסיס"]}},47189:e=>{e.exports={en:["Chart style Kagi"],he_IL:["סגנון גרף קאגי"]}},39883:e=>{e.exports={en:["Chart style HLC area"],he_IL:["סגנון גרף אזור HLC"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],he_IL:["סגנון גרף נרות חלולים"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],he_IL:["סגנון גרף הייקין אשי"]}},70405:e=>{e.exports={en:["Chart style High-low"],he_IL:["סגנון גרף גבוה-נמוך"]}},92911:e=>{e.exports={en:["Chart style Line"],he_IL:["סגנון גרף קו"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],he_IL:["סגנון גרף קו עם סמנים"]}},11604:e=>{e.exports={en:["Chart style Line break"],he_IL:["סגנון גרף קו שבור"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],he_IL:["סגנון גרף של סשן פרופיל"]}},40447:e=>{e.exports={en:["Chart style Step line"],he_IL:["סגנון גרף קו צעד"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],he_IL:["סגנון גרף Point & Figure"]}},49942:e=>{e.exports={en:["Chart style Range"],he_IL:["סגנון גרף טווח"]}},80082:e=>{e.exports={en:["Chart style Renko"],he_IL:["סגנון גרף בנקו"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],he_IL:["סגנון גרף זמן מחיר הזדמנות"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],he_IL:["סגנון גרף נרות ווליום"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],he_IL:["סגנון גרף ווליום Footprint"]}},53438:e=>{e.exports={en:["Chart template"],he_IL:["תבנית גרף"]}},47742:e=>{e.exports={en:["Close menu"],he_IL:["סגור תפריט"]}},81578:e=>{e.exports={en:["Cursors"],he_IL:["סמנים"]}},77915:e=>{e.exports={en:["Cycles"],he_IL:["מחזורים"]}},32064:e=>{e.exports={en:["Annotation tools"],he_IL:["כלי ביאור"]}},69207:e=>{e.exports={en:["Add to favorites"],he_IL:["הוסף למועדפים"]}},34040:e=>{e.exports={en:["All sources"],he_IL:["כל המקורות"]}},19147:e=>{e.exports={en:["Arrows"],he_IL:["חצים"]}},42358:e=>{e.exports={en:["Bond"],he_IL:["אגרת חוב"]}},65695:e=>{e.exports={en:["Brushes"],he_IL:["מברשות"]}},51494:e=>{e.exports={en:["Gann"],he_IL:["גאן"]}},2654:e=>{
|
||||
e.exports={en:["Gann and Fibonacci tools"],he_IL:["כלי גאן ופיבונאצ'י"]}},22145:e=>{e.exports={en:["Geometric shapes"],he_IL:["צורות גאומטריות"]}},57157:e=>{e.exports={en:["Dot"],he_IL:["נקודה"]}},25848:e=>{e.exports={en:["Dark theme"],he_IL:["מצב כהה"]}},14939:e=>{e.exports={en:["Demonstration"],he_IL:["הדגמה"]}},78734:e=>{e.exports={en:["Description"],he_IL:["תיאור"]}},74385:e=>{e.exports={en:["Drawings"],he_IL:["שרטוטים"]}},44255:e=>{e.exports={en:["Elliott waves"],he_IL:["גלי אליוט"]}},8727:e=>{e.exports={en:["Eraser"],he_IL:["מחק"]}},93308:e=>{e.exports={en:["Extended session"],he_IL:["שעות מסחר מורחבות"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],he_IL:["כלי חיזוי ומדידה"]}},26578:e=>{e.exports={en:["Fibonacci"],he_IL:["פיבונאצ'י"]}},67092:e=>{e.exports={en:["Fullscreen mode"],he_IL:["מצב מסך מלא"]}},83576:e=>{e.exports={en:["Function"],he_IL:["פונקציה"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],he_IL:["החזק את {hotKey_0} לשרטוט זמני"]}},27077:e=>{e.exports={en:["Open Object Tree"],he_IL:["פתח את עץ האובייקטים"]}},7386:e=>{e.exports={en:["Open chart layout"],he_IL:["פתח את פריסת הגרף"]}},79451:e=>{e.exports={en:["Lock all drawings"],he_IL:["נעל כלי שרטוט"]}},35112:e=>{e.exports={en:["Move chart back"],he_IL:["העבר את הגרף אחורה"]}},12754:e=>{e.exports={en:["Move chart forward"],he_IL:["העבר את הגרף קדימה"]}},37117:e=>{e.exports={en:["More"],he_IL:["עוד"]}},35553:e=>{e.exports={en:["Magic"],he_IL:["קסם"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],he_IL:["מצב מגנט מצמיד שרטוטים ליד עמודות מחיר לערך OHLC הקרוב"]}},81031:e=>{e.exports={en:["Manage layout drawings"],he_IL:["נהל שרטוטי פריסה"]}},91563:e=>{e.exports={en:["Measure"],he_IL:["מדידה"]}},97050:e=>{e.exports={en:["Measurer"],he_IL:["מודד"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],he_IL:["מזג את כל הסקאלות לשמאל"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],he_IL:["מזג את כל הסקאלות לימין"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],he_IL:["אין בורסות התואמות את הקריטריונים שלך"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],he_IL:["אין סימולים תואמים את הקריטריונים שלך"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],he_IL:["שום דבר לא תואם את הקריטריונים שלך"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],he_IL:["שרטוטים חדשים מועתקים לכל הגרפים בפריסה ומוצגים כאשר אותו הטיקר נבחר"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],he_IL:["שרטוטים חדשים יסונכרנו ברחבי העולם"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],he_IL:["שרטוטים חדשים יסונכרנו בפריסה"]}},28628:e=>{e.exports={en:["Sources"],he_IL:["מקורות"]}},41569:e=>{e.exports={en:["Save chart layout"],he_IL:["שמור פריסת גרף"]}},8573:e=>{e.exports={en:["Search"],he_IL:["חפש"]}},79354:e=>{e.exports={en:["Search tool or function"],he_IL:["חפש כלי או פונקציה"]}},57640:e=>{e.exports={en:["Select source"],
|
||||
he_IL:["בחר מקור"]}},65781:e=>{e.exports={en:["Shapes"],he_IL:["צורות"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],he_IL:["הצג כלים מוסתרים"]}},85786:e=>{e.exports={en:["Show Object Tree"],he_IL:["הצג עץ אובייקטים"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],he_IL:["הישאר במצב שרטוט"]}},94593:e=>{e.exports={en:["Strong Magnet"],he_IL:["מגנט חזק"]}},95481:e=>{e.exports={en:["Symbol"],he_IL:["סימול"]}},74007:e=>{e.exports={en:["Symbol & description"],he_IL:["סימול ותיאור"]}},51165:e=>{e.exports={en:["Symbol Search"],he_IL:["חיפוש סימולים"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],he_IL:["סנכרן שרטוטים לכל הגרפים..."]}},46417:e=>{e.exports={en:["Patterns"],he_IL:["תבניות"]}},36167:e=>{e.exports={en:["Pitchforks"],he_IL:["קלשונים"]}},79366:e=>{e.exports={en:["Previous day close price line"],he_IL:["סגירת קו מחיר יום קודם"]}},76753:e=>{e.exports={en:["Recent search"],he_IL:["חיפוש אחרון"]}},28051:e=>{e.exports={en:["Regular session"],he_IL:["סשן רגיל"]}},57118:e=>{e.exports={en:["Remove Drawings"],he_IL:["הסר שרטוטים"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],he_IL:["הסר את כל המתנדים וכלי השרטוט"]}},96374:e=>{e.exports={en:["Remove drawings"],he_IL:["הסר שרטוטים"]}},85106:e=>{e.exports={en:["Remove from favorites"],he_IL:["הסר ממועדפים"]}},99984:e=>{e.exports={en:["Remove indicators"],he_IL:["הסר מחוונים"]}},38206:e=>{e.exports={en:["Rename chart layout"],he_IL:["בחר שם חדש לפריסת הגרף"]}},31789:e=>{e.exports={en:["Reset chart"],he_IL:["אפס גרף"]}},3519:e=>{e.exports={en:["Weak Magnet"],he_IL:["מגנט חלש"]}},65831:e=>{e.exports={en:["Text & Notes"],he_IL:["טקסט והערות"]}},48773:e=>{e.exports={en:["Trend line tools"],he_IL:["קווי מגמה - כלים"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],he_IL:["הקלד כדי לחפש שרטוטים, פונקציות והגדרות"]}},69260:e=>{e.exports={en:["Volume-based"],he_IL:["מבוסס נפח"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],he_IL:["אתה משנה את ממשק המשתמש לנושא {name}. האם ברצונך להחליף גם את ערכת הנושא של תבנית הגרף?"]}},55774:e=>{e.exports={en:["Zoom In"],he_IL:["הגדל"]}},37310:e=>{e.exports={en:["Zoom Out"],he_IL:["הקטן"]}},70932:e=>{e.exports={en:["commodity"],he_IL:["סחורה"]}},79599:e=>{e.exports={en:["cfd"],he_IL:["חוזה הפרשים cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],he_IL:["לשנות את נראות הרעיונות בגרף"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],he_IL:["שנה נראות של שם תוויות אינדיקטורים ופיננסיות"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],he_IL:["שנה נראות של אינדיקטורים ותוויות ערך פיננסיות"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],he_IL:["שנה נראות של קווי המחירים פרה/פוסט מארקט"]}},46128:e=>{e.exports={en:["crypto"],he_IL:["קריפטו"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],he_IL:["כַּלְכָּלָה"]}},17770:e=>{e.exports={
|
||||
en:["forex"],he_IL:['מט"ח']}},4723:e=>{e.exports={en:["futures"],he_IL:["חוזים עתידיים"]}},87464:e=>{e.exports={en:["index"],he_IL:["מדד"]}},90250:e=>{e.exports={en:["indices"],he_IL:["מדדים"]}},76752:e=>{e.exports={en:["stock"],he_IL:["מניה"]}},94521:e=>{e.exports={en:["sync drawings"],he_IL:["סנכרן שרטוטים"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],he_IL:["{hotKey_0} + לחיצה על הגרף"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],he_IL:["{hotKey_0} — עיגול"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],he_IL:["{hotKey_0} - צייר קו ישר בזוויות של 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],he_IL:["{hotKey_0} — מרווחים קבועים"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],he_IL:["{hotKey_0} — ריבוע"]}}}]);
|
||||
@@ -1,7 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],he_IL:["ברים"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],he_IL:["4/(פ+ג+נ+ס)"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],he_IL:["3/(ג+נ+ס)"]}},69303:e=>{e.exports={en:["(H + L)/2"],he_IL:["2/(ג+נ)"]}},31882:e=>{e.exports={en:["12-hours"],he_IL:["12 שעות"]}},5797:e=>{e.exports={en:["24-hours"],he_IL:["24 שעות"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],he_IL:["צבע הנר על בסיס הסגירה הקודמת"]}},23739:e=>{e.exports={en:["Canvas"],he_IL:["קנבס"]}},24197:e=>{e.exports={en:["Center"],he_IL:["מרכז"]}},15153:e=>{e.exports={en:["Chart basic styles"],he_IL:["גרף סגנונות בסיסי"]}},45639:e=>{e.exports={en:["Chart values"],he_IL:["ערכי גרף"]}},84831:e=>{e.exports={en:["Close line"],he_IL:["קו סגירה"]}},74622:e=>{e.exports={en:["Crosshair"],he_IL:["צלב"]}},81849:e=>{e.exports={en:["Currency"],he_IL:["מַטְבֵּעַ"]}},3015:e=>{e.exports={en:["Currency and Unit"],he_IL:["מטבע ויחידה"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],he_IL:["התאם נתונים לדיבידנדים"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},36620:e=>{e.exports={en:["Alerts"],he_IL:["התראות"]}},14119:e=>{e.exports={en:["Arguments"],he_IL:["טיעונים"]}},68650:e=>{e.exports={en:["Average close"],he_IL:["ממוצע סגירה"]}},27567:e=>{e.exports={en:["Bottom"],he_IL:["תחתית"]}},3159:e=>{e.exports={en:["Bottom line"],he_IL:["קו תחתון"]}},74406:e=>{e.exports={en:["Body"],he_IL:["גוף"]}},333:e=>{e.exports={en:["Borders"],he_IL:["גבולות"]}},79468:e=>{e.exports={en:["Background"],he_IL:["רקע"]}},10842:e=>{e.exports={en:["Bar change values"],he_IL:["ערכי שינוי הנר"]}},28975:e=>{e.exports={en:["Base level"],he_IL:["רמת בסיס"]}},76473:e=>{e.exports={en:["Bid and ask"],he_IL:["ביקוש והיצע"]}},32744:e=>{e.exports={en:["Buttons"],he_IL:["כפתורים"]}},68662:e=>{e.exports={en:["Grid lines"],he_IL:["קווי רשת"]}},17611:e=>{e.exports={en:["Down bars"],he_IL:["נרות ירידה"]}},23743:e=>{e.exports={en:["Down color"],he_IL:["צבע תחתון"]}},48225:e=>{e.exports={en:["Data modification"],he_IL:["התאמת נתונים"]}},84838:e=>{e.exports={en:["Date format"],he_IL:["פורמט תאריך"]}},42357:e=>{e.exports={en:["Day of week on labels"],he_IL:["יום בשבוע על תוויות"]}},16564:e=>{e.exports={en:["Default"],he_IL:["ברירת מחדל"]}},78734:e=>{e.exports={en:["Description"],he_IL:["תיאור"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],he_IL:["רקע שעות מסחר אלקטרוני"]}},69808:e=>{e.exports={en:["Events"],he_IL:["אירועים"]}},41129:e=>{e.exports={en:["Fill"],he_IL:["למלא"]}},61112:e=>{e.exports={en:["Fill top area"],he_IL:["מלא אזור עליון"]}},73185:e=>{e.exports={en:["Fill bottom area"],he_IL:["מלא אזור תחתון"]}},886:e=>{e.exports={en:["HLC bars"],he_IL:["נרות גנס"]}},95406:e=>{e.exports={en:["Horizontal"],he_IL:["אופקי"]}},61900:e=>{e.exports={en:["Horz only"],he_IL:["רק אופקי"]}},14180:e=>{e.exports={en:["High and low"],he_IL:["גבוה ונמוך"]}},56359:e=>{e.exports={en:["High line"],he_IL:["קו גבוה"]}},47326:e=>{
|
||||
e.exports={en:["Integer"],he_IL:["מספר שלם"]}},84549:e=>{e.exports={en:["Indicators"],he_IL:["אינדיקטורים"]}},78082:e=>{e.exports={en:["Indicators and financials"],he_IL:["אינדיקטורים ופיננסיים"]}},25765:e=>{e.exports={en:["Open market status"],he_IL:["מצב שוק פתוח"]}},34579:e=>{e.exports={en:["Low line"],he_IL:["קו נמוך"]}},14876:e=>{e.exports={en:["Logo"],he_IL:["לוגו"]}},89315:e=>{e.exports={en:["Long Description"],he_IL:["תיאור ארוך"]}},72423:e=>{e.exports={en:["Last day change values"],he_IL:["ערכי שינוי היום האחרון"]}},11626:e=>{e.exports={en:["Left"],he_IL:["שמאל"]}},8249:e=>{e.exports={en:["Money"],he_IL:["כסף"]}},70937:e=>{e.exports={en:["Margins"],he_IL:["מינוף"]}},68833:e=>{e.exports={en:["Middle"],he_IL:["אמצע"]}},58589:e=>{e.exports={en:["No overlapping labels"],he_IL:["ללא תוויות חופפות"]}},60798:e=>{e.exports={en:["None"],he_IL:["אף אחד"]}},51019:e=>{e.exports={en:["Navigation"],he_IL:["ניווט"]}},99709:e=>{e.exports={en:["Name"],he_IL:["שם"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],he_IL:["שמור מיקום הקצה השמאלי של הגרף בעת שינוי אינטרוול"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],he_IL:["מצבי קנה מידה (A ו-L)"]}},93968:e=>{e.exports={en:["Scales"],he_IL:["סולם מחיר"]}},90275:e=>{e.exports={en:["Scales and lines"],he_IL:["סולמות וקווים"]}},30042:e=>{e.exports={en:["Scales placement"],he_IL:["מיקום קנה מידה"]}},28715:e=>{e.exports={en:["Status line"],he_IL:["שורת סטטוס"]}},95481:e=>{e.exports={en:["Symbol"],he_IL:["סימול"]}},53263:e=>{e.exports={en:["Pane"],he_IL:["פאנל"]}},82894:e=>{e.exports={en:["Pane separators"],he_IL:["מפרידי חלוניות"]}},16207:e=>{e.exports={en:["Percentage"],he_IL:["אחוז"]}},94408:e=>{e.exports={en:["Pips"],he_IL:["פיפס"]}},60904:e=>{e.exports={en:["Pre/post market"],he_IL:["פרה/פוסט מרקט"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],he_IL:["רקע שעות טרום/מסחר מאוחר"]}},59766:e=>{e.exports={en:["Precision"],he_IL:["דיוק"]}},83811:e=>{e.exports={en:["Previous day close"],he_IL:["הסגירה של היום הקודם"]}},35082:e=>{e.exports={en:["Price Scale"],he_IL:["סולם מחירים"]}},27632:e=>{e.exports={en:["Price and percentage value"],he_IL:["מחיר אחרון וערך האחוז"]}},62142:e=>{e.exports={en:["Price labels & lines"],he_IL:["תוויות מחירים וקווים"]}},84684:e=>{e.exports={en:["Price source"],he_IL:["מקור המחיר"]}},73466:e=>{e.exports={en:["Projection up bars"],he_IL:["הטלת עמודות עולות"]}},77430:e=>{e.exports={en:["Projection candles"],he_IL:["נרות הקרנה"]}},88367:e=>{e.exports={en:["Projection down bars"],he_IL:["הטלת עמודות יורדות"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],he_IL:["מחירים אמיתיים בסולם המחיר (במקום מחיר הייקין-אשי)"]}},50421:e=>{e.exports={en:["Right"],he_IL:["ימין"]}},62532:e=>{e.exports={en:["Right Margin"],he_IL:["שוליים ימניים"]}},41571:e=>{e.exports={en:["Watermark"],he_IL:["סימן מים"]}},32163:e=>{e.exports={en:["Wick"],he_IL:["פתיל"]}},97118:e=>{e.exports={en:["Top"],he_IL:["עליון"]}},89349:e=>{e.exports={en:["Top line"],he_IL:["קו עליון"]}},70320:e=>{
|
||||
e.exports={en:["Text"],he_IL:["טקסט"]}},25485:e=>{e.exports={en:["Text alignment"],he_IL:["יישור טקסט"]}},67781:e=>{e.exports={en:["Text orientation"],he_IL:["כיוון טקסט"]}},20215:e=>{e.exports={en:["Thin bars"],he_IL:["נרות דקים"]}},70198:e=>{e.exports={en:["Title"],he_IL:["כותרת"]}},29854:e=>{e.exports={en:["Titles"],he_IL:["כותרות"]}},5791:e=>{e.exports={en:["Ticker"],he_IL:["טיקר"]}},16816:e=>{e.exports={en:["Ticker and description"],he_IL:["טיקר ותיאור"]}},24821:e=>{e.exports={en:["Ticks"],he_IL:["טיקים"]}},93965:e=>{e.exports={en:["Time Scale"],he_IL:["סולם זמן"]}},5591:e=>{e.exports={en:["Time hours format"],he_IL:["זמן שעות פורמט"]}},77073:e=>{e.exports={en:["Timezone"],he_IL:["אזור זמן"]}},76495:e=>{e.exports={en:["Trading"],he_IL:["מסחר"]}},33564:e=>{e.exports={en:["Unit"],he_IL:["יחידה"]}},23091:e=>{e.exports={en:["Up color"],he_IL:["צבע עליון"]}},36957:e=>{e.exports={en:["Up bars"],he_IL:["נרות עליה"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},37644:e=>{e.exports={en:["Volume"],he_IL:["ווליום/נפח מסחר"]}},51514:e=>{e.exports={en:["Value"],he_IL:["ערך"]}},31218:e=>{e.exports={en:["Value according to scale"],he_IL:["ערך אחרון לפי קנה מידה"]}},60092:e=>{e.exports={en:["Values"],he_IL:["ערכים"]}},83594:e=>{e.exports={en:["Vert and horz"],he_IL:["אנכי ואופקי"]}},8402:e=>{e.exports={en:["Vert only"],he_IL:["רק אנכי"]}},69526:e=>{e.exports={en:["Vertical"],he_IL:["אנכי"]}},21105:e=>{e.exports={en:["candle"],he_IL:["נר"]}},27068:e=>{e.exports={en:["change HLC bars"],he_IL:["שנה ברי HLC"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],he_IL:["שנה נראות של לחצני הניווט"]}},96227:e=>{e.exports={en:["change open market status visibility"],he_IL:["שנה את נראות מצב השוק הפתוח"]}},43231:e=>{e.exports={en:["change average close price line width"],he_IL:["שנה את רוחב קו מחיר סגור ממוצע"]}},47026:e=>{e.exports={en:["change average close price line color"],he_IL:["שנה את צבע קו המחיר הממוצע"]}},86866:e=>{e.exports={en:["change area fill color"],he_IL:["שנה את צבע מילוי השטח"]}},89346:e=>{e.exports={en:["change area line width"],he_IL:["שנה את רוחב קו השטח"]}},29605:e=>{e.exports={en:["change area line color"],he_IL:["שנה את צבע קו השטח"]}},4640:e=>{e.exports={en:["change area price source"],he_IL:["שנה מקור אזור מחיר"]}},98407:e=>{e.exports={en:["change ask line color"],he_IL:["שנה את צבע שורת הביקוש ask"]}},42190:e=>{e.exports={en:["change base level"],he_IL:["שנה את רמת הבסיס"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],he_IL:["שנה את צבע השורה התחתונה של קו הבסיס"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],he_IL:["שנה את רוחב השורה התחתונה של קו הבסיס"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],he_IL:["שנה את צבע השטח התחתון של מילוי קו הבסיס"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],he_IL:["שנה את צבע האזור העליון של מילוי קו הבסיס"]}},68609:e=>{e.exports={en:["change baseline price source"],he_IL:["שנה את מקור המחיר הבסיסי"]}},
|
||||
69044:e=>{e.exports={en:["change baseline top line color"],he_IL:["שנה את צבע הקו העליון של קו הבסיס"]}},68197:e=>{e.exports={en:["change baseline top line width"],he_IL:["שנה את רוחב הקו העליון של קו הבסיס"]}},33464:e=>{e.exports={en:["change bar up color"],he_IL:["שנה את צבע הבר למעלה"]}},27426:e=>{e.exports={en:["change bar change visibility"],he_IL:["שנה נראות של בר שינוי"]}},59622:e=>{e.exports={en:["change bar down color"],he_IL:["שנה את צבע הבר למטה"]}},17919:e=>{e.exports={en:["change bid line color"],he_IL:["שנה את צבע שורת ההיצע bid"]}},32094:e=>{e.exports={en:["change bottom margin"],he_IL:["שנה שוליים תחתוניים"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],he_IL:["שנה את נראות תוויות המטבע והיחידה"]}},64003:e=>{e.exports={en:["change currency label visibility"],he_IL:["שנה את נראות תווית המטבע"]}},42803:e=>{e.exports={en:["change chart background color"],he_IL:["שנה את צבע הרקע של הגרף"]}},41382:e=>{e.exports={en:["change chart background type"],he_IL:["שנה את סוג הרקע של הגרף"]}},79637:e=>{e.exports={en:["change chart values visibility"],he_IL:["שינוי נראות ערכי הגרף"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],he_IL:["שנה ברי צבע בהתבסס על סגירה קודמת"]}},88324:e=>{e.exports={en:["change column up color"],he_IL:["שנה את צבע העמודה למעלה"]}},93890:e=>{e.exports={en:["change column down color"],he_IL:["שנה את צבע העמודה למטה"]}},4727:e=>{e.exports={en:["change column price source"],he_IL:["שנה מקור מחיר העמודה"]}},50544:e=>{e.exports={en:["change crosshair width"],he_IL:["שנה רוחב צלב"]}},92885:e=>{e.exports={en:["change crosshair color"],he_IL:["שנה את צבע הצלב"]}},68418:e=>{e.exports={en:["change crosshair style"],he_IL:["שנה סגנון צלב"]}},43109:e=>{e.exports={en:["change date format"],he_IL:["שנה פורמט תאריך"]}},30418:e=>{e.exports={en:["change day of week on labels"],he_IL:["שנה את יום השבוע על התוויות"]}},82063:e=>{e.exports={en:["change decimal places"],he_IL:["שנה מקומות עשרוניים"]}},44223:e=>{e.exports={en:["change extended hours color"],he_IL:["שנה את צבע השעות המורחבות"]}},47393:e=>{e.exports={en:["change electronic trading hours"],he_IL:["שינוי שעות המסחר האלקטרוניות"]}},73844:e=>{e.exports={en:["change grid lines visibility"],he_IL:["שינוי נראות קווי הרשת"]}},61407:e=>{e.exports={en:["change high and low price line color"],he_IL:["לשנות את צבע קווי המחיר הגבוה והנמוך"]}},39581:e=>{e.exports={en:["change high and low price line width"],he_IL:["לשנות את רוחב קווי המחיר הגבוה והנמוך"]}},6026:e=>{e.exports={en:["change high-low body color"],he_IL:["שנה צבע גבוה-נמוך של הגוף"]}},73021:e=>{e.exports={en:["change high-low body visibility"],he_IL:["שנה נראות גבוה-נמוך של הגוף"]}},46844:e=>{e.exports={en:["change high-low border color"],he_IL:["שנה צבע גבול גבוה-נמוך של הגוף"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],he_IL:["שנה נראות גבול גבוה-נמוך של הגוף"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],he_IL:["שנה נראות התוויות גבוה-נמוך"]}},56961:e=>{e.exports={en:["change high-low labels color"],
|
||||
he_IL:["שנה צבע התוויות גבוה-נמוך"]}},21133:e=>{e.exports={en:["change horz grid lines color"],he_IL:["שנה את צבע קווי הרשת האופקיים"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],he_IL:["שנה את נראות של כותרות אינדיקטור"]}},49583:e=>{e.exports={en:["change indicator values visibility"],he_IL:["שינוי נראות ערכי אינדיקטור"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],he_IL:["שינוי נראות ארגומנטים של אינדיקטור"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],he_IL:["שנה נראות של שם תוויות אינדיקטורים ופיננסיות"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],he_IL:["שנה נראות של אינדיקטורים ותוויות ערך פיננסיות"]}},66307:e=>{e.exports={en:["change last day change visibility"],he_IL:["שנה את הנראות של השינוי ביום האחרון"]}},91873:e=>{e.exports={en:["change legend background transparency"],he_IL:["שנה את שקיפות הרקע של מקרא"]}},14246:e=>{e.exports={en:["change legend background visibility"],he_IL:["שנה נראות הרקע של מקרא"]}},88640:e=>{e.exports={en:["change line color"],he_IL:["שנה צבע קו"]}},41837:e=>{e.exports={en:["change line price source"],he_IL:["שנה מקור מחיר קו"]}},48339:e=>{e.exports={en:["change line width"],he_IL:["שנה רוחב קו"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],he_IL:["שנה נראות לחצני החלונית"]}},52203:e=>{e.exports={en:["change pane separators color"],he_IL:["שנה את צבע מפריד החלונות"]}},38730:e=>{e.exports={en:["change post market color"],he_IL:["שנה צבע מסחר מאוחר"]}},28075:e=>{e.exports={en:["change post market line color"],he_IL:["שנה צבע קו מסחר מאוחר"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],he_IL:["שנה נראות של קווי המחירים פרה/פוסט מארקט"]}},44371:e=>{e.exports={en:["change pre market color"],he_IL:["שנה צבע טרום מסחר"]}},96114:e=>{e.exports={en:["change pre market line color"],he_IL:["שנה צבע קו טרום מסחר"]}},69814:e=>{e.exports={en:["change previous close price line color"],he_IL:["שנה את צבע קו המחיר סגירה הקודם"]}},13660:e=>{e.exports={en:["change previous close price line width"],he_IL:["שנה את רוחב קו סגירת המחיר הקודם"]}},87861:e=>{e.exports={en:["change price line color"],he_IL:["לשנות את צבע קו המחיר"]}},29353:e=>{e.exports={en:["change price line width"],he_IL:["שנה את רוחב קו המחיר"]}},16241:e=>{e.exports={en:["change range bars style"],he_IL:["שנה את סגנון ברי הטווח"]}},65821:e=>{e.exports={en:["change range thin bars"],he_IL:["שנה ברים דקים בטווח"]}},75487:e=>{e.exports={en:["change renko wick down color"],he_IL:["שנה צבע renko wick down"]}},92277:e=>{e.exports={en:["change renko wick up color"],he_IL:["שנה צבע wick up renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],he_IL:["שנה נראות של פתיל renko"]}},82946:e=>{e.exports={en:["change right margin"],he_IL:["שנה שוליים ימניים"]}},79545:e=>{e.exports={en:["change right margin percentage"],he_IL:["שנה את אחוז השוליים הימניים"]}},78995:e=>{e.exports={en:["change symbol watermark color"],he_IL:["שנה צבע סימן מים של הסימול"]}},73227:e=>{
|
||||
e.exports={en:["change symbol watermark visibility"],he_IL:["שנה נראות סימן מים של הסימול"]}},88167:e=>{e.exports={en:["change symbol description visibility"],he_IL:["שנה את נראות תיאור הסימול"]}},12050:e=>{e.exports={en:["change symbol field visibility"],he_IL:["שינוי נראות שדה הסימול"]}},46066:e=>{e.exports={en:["change symbol last value mode"],he_IL:["שינוי מצב ערך אחרון של סימול"]}},902:e=>{e.exports={en:["change symbol legend format"],he_IL:["שנה פורמט מקרא סימולים"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],he_IL:["שנה שמירת מיקום הקצה השמאלי של הגרף בעת שינוי אינטרוול"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],he_IL:["שנה את נראות לחצני קנה המידה"]}},76131:e=>{e.exports={en:["change scales text color"],he_IL:["שנה צבע טקסט של סולמות"]}},27792:e=>{e.exports={en:["change scales font size"],he_IL:["שנה גודל גופן בקנה מידה"]}},94997:e=>{e.exports={en:["change scales lines color"],he_IL:["שנה צבע קווים של סולמות"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],he_IL:["שנה נראות של הפסקות סשנים"]}},28175:e=>{e.exports={en:["change sessions breaks width"],he_IL:["שנה רוחב קווי הפרדה של סשנים sessions breaks"]}},33895:e=>{e.exports={en:["change sessions breaks color"],he_IL:["שנה צבע קווי הפרדה של סשנים sessions breaks"]}},21641:e=>{e.exports={en:["change sessions breaks style"],he_IL:["שנה סגנון הפסקות סשן sessions breaks"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],he_IL:["שנה הצגת המחירים האמיתיים בסולם המחירים (במקום מחיר הייקן-אשי)"]}},60834:e=>{e.exports={en:["change thin bars"],he_IL:["שנה ברים דקים"]}},39754:e=>{e.exports={en:["change time hours format"],he_IL:["שינוי זמן שעות פורמט"]}},74883:e=>{e.exports={en:["change top margin"],he_IL:["שנה שוליים עליוניים"]}},51250:e=>{e.exports={en:["change unit label visibility"],he_IL:["שנה את נראות תווית היחידה"]}},71805:e=>{e.exports={en:["change vert grid lines color"],he_IL:["שנה את צבע קווי הרשת האנכיים"]}},96201:e=>{e.exports={en:["change volume values visibility"],he_IL:["שינוי נראות ערכי ווליום"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],he_IL:["שנה את צבע הגבול העליון של {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],he_IL:["שנה צבע של {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],he_IL:["שנה את הצבע של {candleType} wick למטה"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],he_IL:["שנה את הצבע שלwick up {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],he_IL:["שנה את נראות הפתיל {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],he_IL:["שנה נראות הגוף של {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],he_IL:["שנה את נראות הגבול של {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],he_IL:["שנה את צבע הגבול התחתון של {candleType}"]}},64571:e=>{e.exports={
|
||||
en:["change {candleType} down color"],he_IL:["שנה את הצבע התחתון של {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],he_IL:["שנה את צבע בר הגבול של {chartType} התחתון"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],he_IL:["שנה את צבע בר הגבול {chartType} העליון"]}},5012:e=>{e.exports={en:["change {chartType} down color"],he_IL:["שנה את הצבע התחתון של {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],he_IL:["שנה את צבע בר הגבול להקרנה {chartType} העליון"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],he_IL:["שנה את הצבע של בר ההקרנה {chartType} התחתון"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],he_IL:["שנה את צבע בר ההקרנה {chartType} העליון"]}},6970:e=>{e.exports={en:["change {chartType} up color"],he_IL:["שנה את הצבע העליון של {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],he_IL:["שנה מאפיין {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],he_IL:["להתאים נתונים לדיבידנדים"]}},1433:e=>{e.exports={en:["adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},92598:e=>{e.exports={en:["hollow candles"],he_IL:["נרות חלולים"]}},57243:e=>{e.exports={en:["range","ranges"],he_IL:["טווח","טווחים","טווחים","טווחים"]}},70282:e=>{e.exports={en:["renko"],he_IL:["גרף ראנקו"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],he_IL:["{value} עשרוני","{value} עשרונים","{value} עשרונים","{value} עשרונים"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"],he_IL:["מחדש"]}},85119:e=>{e.exports={en:["Dark"],he_IL:["כהה"]}},96870:e=>{e.exports={en:["Light"],he_IL:["בהיר"]}},85886:e=>{e.exports={en:["d"],he_IL:["תאריך"]}},44634:e=>{e.exports={en:["h"],he_IL:["שעות"]}},5977:e=>{e.exports={en:["m"],he_IL:["דקות"]}},21492:e=>{e.exports={en:["s"],he_IL:["שניות"]}},97559:e=>{e.exports={en:["{title} copy"],he_IL:["{title} העתק"]}},38691:e=>{e.exports={en:["D"],he_IL:["יום"]}},77995:e=>{e.exports={en:["M"],he_IL:["חודש"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],he_IL:["שבוע"]}},38048:e=>{e.exports={en:["h"],he_IL:["שעה"]}},68430:e=>{e.exports={en:["m"],he_IL:["דקה"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],he_IL:["ס"]}},43253:e=>{e.exports={en:["H"],he_IL:["ג"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],he_IL:["נ"]}},46728:e=>{e.exports={en:["O"],he_IL:["פ"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],he_IL:["רמת צבע 0.236-"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],he_IL:["רמת צבע 0.382-"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],he_IL:["רמת צבע 0.618-"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],he_IL:["רמת צבע 0.65-"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],he_IL:["רמת צבע 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],he_IL:["רמת צבע 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],he_IL:["רמת צבע 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],he_IL:["רמת צבע 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],he_IL:["רמת צבע 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],he_IL:["רמת צבע 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],he_IL:["רמת צבע 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],he_IL:["רמת צבע 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],he_IL:["רמת צבע 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],he_IL:["רמת צבע 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],he_IL:["רמת צבע 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],he_IL:["רמת צבע 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],he_IL:["התקופה הראשונה"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],he_IL:["רמת צבע 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],he_IL:["רמת צבע 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],he_IL:["התקופה השנייה"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"],he_IL:["מחדש"]}},85119:e=>{e.exports={en:["Dark"],he_IL:["כהה"]}},96870:e=>{e.exports={en:["Light"],he_IL:["בהיר"]}},85886:e=>{e.exports={en:["d"],he_IL:["תאריך"]}},44634:e=>{e.exports={en:["h"],he_IL:["שעות"]}},5977:e=>{e.exports={en:["m"],he_IL:["דקות"]}},21492:e=>{e.exports={en:["s"],he_IL:["שניות"]}},97559:e=>{e.exports={en:["{title} copy"],he_IL:["{title} העתק"]}},38691:e=>{e.exports={en:["D"],he_IL:["יום"]}},77995:e=>{e.exports={en:["M"],he_IL:["חודש"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"],he_IL:["שבוע"]}},38048:e=>{e.exports={en:["h"],he_IL:["שעה"]}},68430:e=>{e.exports={en:["m"],he_IL:["דקה"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],he_IL:["ס"]}},43253:e=>{e.exports={en:["H"],he_IL:["ג"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],he_IL:["נ"]}},46728:e=>{e.exports={en:["O"],he_IL:["פ"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],he_IL:["רמת צבע 0.236-"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],he_IL:["רמת צבע 0.382-"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],he_IL:["רמת צבע 0.618-"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],he_IL:["רמת צבע 0.65-"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],he_IL:["רמת צבע 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],he_IL:["רמת צבע 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],he_IL:["רמת צבע 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],he_IL:["רמת צבע 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],he_IL:["רמת צבע 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],he_IL:["רמת צבע 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],he_IL:["רמת צבע 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],he_IL:["רמת צבע 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],he_IL:["רמת צבע 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],he_IL:["רמת צבע 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],he_IL:["רמת צבע 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],he_IL:["רמת צבע 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],he_IL:["התקופה הראשונה"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],he_IL:["רמת צבע 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],he_IL:["רמת צבע 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],he_IL:["התקופה השנייה"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],
|
||||
he_IL:["רמת צבע 3.618"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],he_IL:["רמת צבע 3.65"]},e.exports["3rd Period_input"]={en:["3rd Period"],he_IL:["התקופה השלישית"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],he_IL:["רמת צבע 4.236"]},e.exports["4th Period_input"]={en:["4th Period"],he_IL:["התקופה הרביעית"]},e.exports["5th Period_input"]={en:["5th Period"],he_IL:["התקופה החמישית"]},e.exports["6th Period_input"]={en:["6th Period"],he_IL:["התקופה השישית"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],he_IL:["החלקת ADX"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],he_IL:["החלקת ADX"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"],he_IL:["ממוצע טווח אמיתי מרובה"]},e.exports["ATR length_input"]={en:["ATR length"],he_IL:["אורך ATR"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"],he_IL:["ממוצע טווח אמיתי"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],he_IL:["איסוף והפצה"]},e.exports["All items_combobox_input"]={en:["All items"],he_IL:["כל הפריטים"]},e.exports.All_input={en:["All"],he_IL:["הכל"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],he_IL:["תקופת הפניה"]},e.exports["Another symbol_input"]={en:["Another symbol"],he_IL:["סימול נוסף"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"],he_IL:["ממוצע"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],he_IL:["תקופות ממוצעות"]},e.exports.Back_input={en:["Back"],he_IL:["חזור"]},e.exports["Bands style_input"]={en:["Bands style"],he_IL:["סגנון רצועות"]},e.exports.Bar_input={en:["Bar"],he_IL:["בר"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],he_IL:["תקופות קו הבסיס"]},e.exports["Base Line_input"]={en:["Base Line"],he_IL:["קו בסיס"]},e.exports.Basis_input={en:["Basis"],he_IL:["בּסיס"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],he_IL:["רצועות בולינג'ר %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],he_IL:["רוחב רצועות בולינג'ר"]},e.exports.Borders_input={en:["Borders"],he_IL:["גבולות"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],he_IL:["שיטת הקצאת גודל תיבה"]},e.exports["Box size_input"]={en:["Box size"],he_IL:["גודל התיבה"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"],he_IL:["לְבַטֵל"]},e.exports.Candles_input={en:["Candles"],he_IL:["נרות"]},e.exports.Centered_input={en:["Centered"],he_IL:["מְרוּכָּז"]},e.exports.Century_input={en:["Century"],he_IL:["מאה"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],he_IL:["מתנד חייקין"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"],he_IL:["סגירה"]},e.exports["Color 0_input"]={en:["Color 0"],he_IL:["צבע 0"]},e.exports["Color 1_input"]={en:["Color 1"],he_IL:["צבע 1"]},e.exports["Color 2_input"]={
|
||||
en:["Color 2"],he_IL:["צבע 2"]},e.exports["Color 3_input"]={en:["Color 3"],he_IL:["צבע 3"]},e.exports["Color 4_input"]={en:["Color 4"],he_IL:["צבע 4"]},e.exports["Color 5_input"]={en:["Color 5"],he_IL:["צבע 5"]},e.exports["Color 6_input"]={en:["Color 6"],he_IL:["צבע 6"]},e.exports["Color 7_input"]={en:["Color 7"],he_IL:["צבע 7"]},e.exports["Color 8_input"]={en:["Color 8"],he_IL:["צבע 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],he_IL:["צבע הנר על בסיס הסגירה הקודמת"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],he_IL:["צבע מבוסס על סגירה קודמת"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],he_IL:["תקופות קו המרה"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],he_IL:["קו המרה"]},e.exports.Correlation_input={en:["Correlation"],he_IL:["קורלציה"]},e.exports.Count_input={en:["Count"],he_IL:["לספור"]},e.exports.Crosses_input={en:["Crosses"],he_IL:["חוצה"]},e.exports.Custom_input={en:["Custom"],he_IL:["התאם אישית"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],he_IL:["אורך DI"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],he_IL:["יום"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],he_IL:["ימים בשנה"]},e.exports.Decade_input={en:["Decade"],he_IL:["עשור"]},e.exports.Delta_input={en:["Delta"],he_IL:["דלתא"]},e.exports.Depth_input={en:["Depth"],he_IL:["עומק"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],he_IL:["פיתוח POC"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],he_IL:["סטייה (%)"]},e.exports.Deviation_input={en:["Deviation"],he_IL:["סטייה"]},e.exports.Divisor_input={en:["Divisor"],he_IL:["מחלק"]},e.exports["Down Volume_input"]={en:["Down Volume"],he_IL:["ווליום יורד"]},e.exports["Down bars_input"]={en:["Down bars"],he_IL:["ברים יורדים"]},e.exports["Down color_input"]={en:["Down color"],he_IL:["צבע תחתון"]},e.exports["Down fractals_input"]={en:["Down fractals"],he_IL:["פרקטלי ירידה"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],he_IL:["כל (טרום מסחר, מרקט, מסחר מאוחר)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"]},e.exports["Equality Line_input"]={en:["Equality Line"],he_IL:["קו שוויון"]},e.exports.Exponential_input={en:["Exponential"],he_IL:["אקספוננציאלי"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"]},e.exports["Extend Right_input"]={en:["Extend Right"],he_IL:["הרחב ימינה"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],he_IL:["הרחב VAH ימינה"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],he_IL:["הרחב VAL ימינה"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"],he_IL:["הרחב לנר האחרון"]},e.exports.Falling_input={en:["Falling"],he_IL:["יורד"]},e.exports["Fast Length_input"]={en:["Fast Length"],
|
||||
he_IL:["אורך מהיר"]},e.exports["Fast length_input"]={en:["Fast length"],he_IL:["אורך מהיר"]},e.exports.Fill_input={en:["Fill"],he_IL:["למלא"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],he_IL:["עולה"]},e.exports["HLC bars_input"]={en:["HLC bars"],he_IL:["נרות HLC"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],he_IL:["קופסת היסטוגרמה"]},e.exports.Histogram_input={en:["Histogram"],he_IL:["היסטוגרמה"]},e.exports["Hull MA_input"]={en:["Hull MA"],he_IL:["ממוצע נע Hull"]},e.exports.Increment_input={en:["Increment"]},e.exports.Indicator_input={en:["Indicator"],he_IL:["אינדיקטור"]},e.exports["Instrument 1_input"]={en:["Instrument 1"],he_IL:["כלי 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"],he_IL:["כלי 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],he_IL:["משקיע אורך EMA 1"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],he_IL:["משקיע אורך EMA 2"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],he_IL:["משקיע אורך EMA 3"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],he_IL:["משקיע אורך EMA 4"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],he_IL:["משקיע אורך EMA 5"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],he_IL:["משקיע אורך EMA 6"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],he_IL:["אורך הלסת"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"],he_IL:["לסת"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],he_IL:["מיקום תוויות"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],he_IL:["תוויות בסולם מחירים"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],he_IL:["תקופות בפיגור"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],he_IL:["מוביל משמעותי"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],he_IL:["מוביל 1"]},e.exports["Leading Span B_input"]={en:["Leading Span B"],he_IL:["מוביל טווח B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],he_IL:["Lagging Span 2 Periods"]},e.exports["Length EMA_input"]={en:["Length EMA"],he_IL:["אורך ממוצע נע אקספוננציאלי"]},e.exports["Length MA_input"]={en:["Length MA"],he_IL:["אורך ממוצע נע"]},e.exports.Length1_input={en:["Length1"],he_IL:["אורך1"]},e.exports.Length2_input={en:["Length2"],he_IL:["אורך2"]},e.exports.Length3_input={en:["Length3"],he_IL:["אורך3"]},e.exports.Length_input={en:["Length"],he_IL:["אורך"]},e.exports.Level_input={en:["Level"],he_IL:["רָמָה"]},e.exports["Levels Format_input"]={en:["Levels Format"],he_IL:["פורמט רמות"]},e.exports.Limit_input={en:["Limit"],he_IL:["לימיט"]},e.exports.Line_input={en:["Line"],he_IL:["קו"]},e.exports["Lips Length_input"]={en:["Lips Length"],he_IL:["אורך השפתיים"]},e.exports["Lips Offset_input"]={en:["Lips Offset"]},
|
||||
@@ -28,30 +28,30 @@ e.exports["Williams Percent Range_study"]={en:["Williams Percent Range"],he_IL:[
|
||||
he_IL:["תמונת הגרף הועתקה ללוח {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"],he_IL:["קוד הטמעת תמונת גרף הועתק ללוח {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"],he_IL:["איי צ'טהאם"]}},72452:e=>{e.exports={en:["Chicago"],he_IL:["שיקגו"]}},50349:e=>{e.exports={en:["Chongqing"],he_IL:["צ'ונגצ'ינג"]}},91944:e=>{e.exports={en:["Circle"],he_IL:["מעגל"]}},14985:e=>{e.exports={en:["Click to set a point"],he_IL:["לחץ על מנת לקבוע נקודה"]}},12537:e=>{e.exports={en:["Clone"],he_IL:["שכפל"]}},62578:e=>{e.exports={en:["Close"],he_IL:["סגירה"]}},264:e=>{e.exports={en:["Create limit order"],he_IL:["צור פקודת לימיט"]}},6969:e=>{e.exports={en:["Cross"],he_IL:["צלב"]}},74334:e=>{e.exports={en:["Cross Line"],he_IL:["קו חוצה"]}},59396:e=>{e.exports={en:["Currencies"],he_IL:['מט"ח']}},20177:e=>{e.exports={en:["Current interval and above"],he_IL:["אינטרוול נוכחי ומעלה"]}},494:e=>{e.exports={en:["Current interval and below"],he_IL:["אינטרוול נוכחי ומטה"]}},60668:e=>{e.exports={en:["Current interval only"],he_IL:["אינטרוול נוכחי בלבד"]}},78609:e=>{e.exports={en:["Curve"],he_IL:["עיקול"]}},87380:e=>{e.exports={en:["Cycle"],he_IL:["מחזור"]}},84031:e=>{e.exports={en:["Cyclic Lines"],he_IL:["קווים מחזוריים"]}},93191:e=>{e.exports={en:["Cypher Pattern"],he_IL:["תבנית סייפר"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],he_IL:["פריסה בשם זה כבר קיימת"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],he_IL:["פריסה בשם זה כבר קיימת. האם אתה רוצה להחליף אותו?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],he_IL:["דפוס ABCD"]}},36485:e=>{e.exports={en:["Amsterdam"],he_IL:["אמסטרדם"]}},24185:e=>{e.exports={en:["Anchor"],he_IL:["עוגן"]}},42630:e=>{e.exports={en:["Anchorage"],he_IL:["מעגן"]}},42669:e=>{e.exports={en:["Anchored Text"],he_IL:["טקסט מעוגן"]}},84541:e=>{e.exports={en:["Anchored VWAP"],he_IL:["VWAP מעוגן"]}},77401:e=>{e.exports={en:["Access error"],he_IL:["שגיאת גישה"]}},46501:e=>{e.exports={en:["Add Symbol"],he_IL:["הוסף סימול"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],he_IL:["הוסף ערך פיננסי עבור {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],he_IL:["הוסף אינדיקטור/אסטרטגיה ב- {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],he_IL:["הוסף מדד פיננסי זה לפריסה שלמה"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],he_IL:["הוסף את המדד הפיננסי הזה למועדפים"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],he_IL:["הוסף אינדיקטור זה לפריסה שלמה"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],he_IL:["הוסף אינדיקטור זה למועדפים"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],he_IL:["הוסף אסטרטגיה זו לפריסה שלמה"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],he_IL:["הוסף סימול זה לפריסה שלמה"]}},426:e=>{e.exports={en:["Adelaide"],he_IL:["אדלייד"]}},40452:e=>{e.exports={en:["Always invisible"],he_IL:["תמיד בלתי נראה"]}},
|
||||
36299:e=>{e.exports={en:["Always visible"],he_IL:["תמיד גלוי"]}},58026:e=>{e.exports={en:["All intervals"],he_IL:["כל האינטרוולים"]}},78358:e=>{e.exports={en:["Apply default"],he_IL:["החל ברירת מחדל"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],he_IL:["החל אינדיקטורים אלה על כל הפריסה"]}},27072:e=>{e.exports={en:["Apr"],he_IL:["אפר'"]}},59324:e=>{e.exports={en:["Arc"],he_IL:["קשת"]}},34456:e=>{e.exports={en:["Area"],he_IL:["אזור"]}},11858:e=>{e.exports={en:["Arrow"],he_IL:["חץ"]}},34247:e=>{e.exports={en:["Arrow Down"],he_IL:["חץ למטה"]}},36352:e=>{e.exports={en:["Arrow Marker"],he_IL:["סמן חץ"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],he_IL:["חץ למטה"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],he_IL:["חץ שמאלה"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],he_IL:["חץ ימינה"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],he_IL:["חץ למעלה"]}},77231:e=>{e.exports={en:["Arrow Up"],he_IL:["חץ למעלה"]}},98128:e=>{e.exports={en:["Astana"],he_IL:["אסטנה"]}},63627:e=>{e.exports={en:["Ashgabat"],he_IL:["אשחבד"]}},72445:e=>{e.exports={en:["At close"],he_IL:["מקרוב"]}},73702:e=>{e.exports={en:["Athens"],he_IL:["אתונה"]}},21469:e=>{e.exports={en:["Auto"],he_IL:["אוטו'"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],he_IL:["אוטו' (מתאים נתונים למסך)"]}},46450:e=>{e.exports={en:["Aug"],he_IL:["אוג'"]}},21841:e=>{e.exports={en:["Average close price label"],he_IL:["תווית מחיר ממוצעת קרובה"]}},16138:e=>{e.exports={en:["Average close price line"],he_IL:["קו מחיר סגירה ממוצע"]}},73025:e=>{e.exports={en:["Avg"],he_IL:["Avg ממוצע"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"],he_IL:["בוגוטה"]}},90594:e=>{e.exports={en:["Bahrain"],he_IL:["בחריין"]}},70540:e=>{e.exports={en:["Balloon"],he_IL:["בלון"]}},47045:e=>{e.exports={en:["Bangkok"],he_IL:["בנגקוק"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],he_IL:["הפעלה חוזרת אינה זמינה לסוג גרף זה. רוצה לצאת מהפעלה חוזרת?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],he_IL:["הפעלה חוזרת אינה זמינה לסימול זה. רוצה לצאת מהפעלה חוזרת?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],he_IL:["הפעלה חוזרת של בר אינה זמינה לאינטרוול הזמן הזה. רוצה לצאת מהפעלה חוזרת?"]}},27377:e=>{e.exports={en:["Bars"],he_IL:["גרף עמודות"]}},81994:e=>{e.exports={en:["Bars Pattern"],he_IL:["תבנית נרות"]}},59213:e=>{e.exports={en:["Baseline"],he_IL:["קו -בסיס"]}},71797:e=>{e.exports={en:["Belgrade"],he_IL:["בלגרד"]}},64313:e=>{e.exports={en:["Berlin"],he_IL:["ברלין"]}},43539:e=>{e.exports={en:["Brush"],he_IL:["מברשת"]}},91499:e=>{e.exports={en:["Brussels"],he_IL:["בריסל"]}},70876:e=>{e.exports={en:["Bratislava"],he_IL:["ברטיסלבה"]}},55481:e=>{e.exports={en:["Bring forward"],he_IL:["הצג מקדימה"]}},17293:e=>{e.exports={en:["Bring to front"],he_IL:["הבא לחזית"]}},79336:e=>{e.exports={en:["Brisbane"],he_IL:["בריסביין"]}},33672:e=>{e.exports={en:["Bucharest"],he_IL:["בוקרשט"]}},
|
||||
20313:e=>{e.exports={en:["Budapest"],he_IL:["בודפשט"]}},25282:e=>{e.exports={en:["Buenos Aires"],he_IL:["בואנוס איירס"]}},46768:e=>{e.exports={en:["By TradingView"],he_IL:["מאת TradingView"]}},54280:e=>{e.exports={en:["Go to date"],he_IL:["עבור לתאריך"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],he_IL:["עבור אל {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],he_IL:["הבנתי"]}},47460:e=>{e.exports={en:["Gann Box"],he_IL:["קופסת גאן"]}},48683:e=>{e.exports={en:["Gann Fan"],he_IL:["מניפת גאן"]}},44763:e=>{e.exports={en:["Gann Square"],he_IL:["מרובע גאן"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],he_IL:["רבוע Gann קבוע"]}},46808:e=>{e.exports={en:["Ghost Feed"],he_IL:["הזנת צל"]}},57726:e=>{e.exports={en:["Grand supercycle"],he_IL:["סופר גל גדול"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"],he_IL:["האם אתה באמת רוצה למחוק את תבנית האינדיקטור '{name}'?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],he_IL:["האם אתה באמת רוצה למחוק את המחקר ואת כל הבנים שלו?"]}},77125:e=>{e.exports={en:["Double Curve"],he_IL:["עיקול כפול"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],he_IL:["לחץ פעמיים על קצה כלשהו כדי לאפס את רשת הפריסה"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],he_IL:["לחץ פעמיים כדי לסיים את הנתיב"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],he_IL:["לחץ פעמיים כדי לסיים את Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"],he_IL:["הקש פעמיים על קצה כלשהו כדי לאפס את רשת הפריסה"]}},57131:e=>{e.exports={en:["Data Provided by"],he_IL:["הנתונים מסופקים על ידי"]}},22677:e=>{e.exports={en:["Date"],he_IL:["תאריך"]}},85444:e=>{e.exports={en:["Date Range"],he_IL:["טווח תאריכים"]}},47017:e=>{e.exports={en:["Date and Price Range"],he_IL:["תאריך וטווח מחירים"]}},32084:e=>{e.exports={en:["Dec"],he_IL:["דצמ'"]}},23403:e=>{e.exports={en:["Degree"],he_IL:["מידה"]}},27358:e=>{e.exports={en:["Denver"],he_IL:["דנוור"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],he_IL:["יהלום"]}},91544:e=>{e.exports={en:["Disjoint Channel"],he_IL:["ערוץ מנותק"]}},70132:e=>{e.exports={en:["Displacement"],he_IL:["שינוי מיקום"]}},93864:e=>{e.exports={en:["Drawings toolbar"],he_IL:["סרגל כלי ציור"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],he_IL:["שרטט קו אופקי ב-{price}"]}},23650:e=>{e.exports={en:["Dubai"],he_IL:["דובאי"]}},79716:e=>{e.exports={en:["Dublin"],he_IL:["דבלין"]}},73456:e=>{e.exports={en:["Emoji"],he_IL:["אימוג'י"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],he_IL:["הכנס שם חדש לפריסת הגרף"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],he_IL:["תיקון גל אליוט (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],he_IL:["גלי אליוט קומבו כפול (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],he_IL:["גלי אליוט אימפולס (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],he_IL:["משולש גלי אליוט (ABCDE)"]}},76129:e=>{
|
||||
e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],he_IL:["גל אליוט קומבו-משולש (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],he_IL:["אליפסה"]}},52788:e=>{e.exports={en:["Extended Line"],he_IL:["קו מורחב"]}},86905:e=>{e.exports={en:["Exchange"],he_IL:["בורסה"]}},19271:e=>{e.exports={en:["Existing pane above"],he_IL:["חלון הנמצא מעל"]}},46545:e=>{e.exports={en:["Existing pane below"],he_IL:["חלון הנמצא מתחת"]}},20138:e=>{e.exports={en:["Forecast"],he_IL:["תחזית"]}},2507:e=>{e.exports={en:["Feb"],he_IL:["פבר'"]}},59005:e=>{e.exports={en:["Fib Channel"],he_IL:["ערוץ פיבונאצ'י"]}},82330:e=>{e.exports={en:["Fib Circles"],he_IL:["מעגלי פיבונאצ'י"]}},55986:e=>{e.exports={en:["Fib Retracement"],he_IL:["תיקוני פיבונאצ'י"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],he_IL:["קשתות התנגדות מהירות פיבונאצ'י"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],he_IL:["מניפת התנגדות למהירות פיבונאצ'י"]}},39014:e=>{e.exports={en:["Fib Spiral"],he_IL:["ספירלת פיבונאצ'י"]}},30622:e=>{e.exports={en:["Fib Time Zone"],he_IL:["אזור זמן פיבונאצ'י"]}},85042:e=>{e.exports={en:["Fib Wedge"],he_IL:["טריז פיבונאצ'י"]}},33885:e=>{e.exports={en:["Flag"],he_IL:["דגל"]}},14600:e=>{e.exports={en:["Flag Mark"],he_IL:["סמן בדגל"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],he_IL:["שיא/שפל חלק"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],he_IL:["חלק שבור אינו חוקי"]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],he_IL:["מחקרים פונדמנטאליים אינם זמינים עוד על הגרף"]}},31561:e=>{e.exports={en:["Kolkata"],he_IL:["כלכותה"]}},54533:e=>{e.exports={en:["Kathmandu"],he_IL:["קטמנדו"]}},83490:e=>{e.exports={en:["Kagi"],he_IL:["גרף קאגי"]}},70913:e=>{e.exports={en:["Karachi"],he_IL:["קראצ'י"]}},76614:e=>{e.exports={en:["Kuwait"],he_IL:["כווית"]}},38561:e=>{e.exports={en:["Kuala Lumpur"],he_IL:["קואלה לומפור"]}},99906:e=>{e.exports={en:["HLC area"],he_IL:["איזור HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"],he_IL:["הו צ'י מין"]}},13459:e=>{e.exports={en:["Hollow candles"],he_IL:["נרות חלולים"]}},48861:e=>{e.exports={en:["Hong Kong"],he_IL:["הונג קונג"]}},79668:e=>{e.exports={en:["Honolulu"],he_IL:["הונולולו"]}},21795:e=>{e.exports={en:["Horizontal Line"],he_IL:["קו אופקי"]}},25487:e=>{e.exports={en:["Horizontal Ray"],he_IL:["קרן אופקית"]}},21928:e=>{e.exports={en:["Head and Shoulders"],he_IL:["ראש וכתפיים"]}},63876:e=>{e.exports={en:["Heikin Ashi"],he_IL:["הייקין אשי"]}},48203:e=>{e.exports={en:["Helsinki"],he_IL:["הלסינקי"]}},27298:e=>{e.exports={en:["Hide"],he_IL:["הסתר"]}},47074:e=>{e.exports={en:["Hide all"],he_IL:["הסתר הכל"]}},52563:e=>{e.exports={en:["Hide all drawings"],he_IL:["הסתר את כל כלי השרטוט"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],he_IL:["הסתר את כל השרטוטים והאינדיקטורים"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],he_IL:["הסתר את כל השרטוטים, האינדיקטורים, הפוזיציות והפקודות"]}},78525:e=>{e.exports={en:["Hide all indicators"],he_IL:["הסתר את כל האינדיקטורים"]}},42164:e=>{e.exports={
|
||||
en:["Hide all positions & orders"],he_IL:["הסתר את כל הפוזיציות והפקודות"]}},3217:e=>{e.exports={en:["Hide drawings"],he_IL:["הסתר שרטוטים"]}},97878:e=>{e.exports={en:["Hide events on chart"],he_IL:["הסתר אירועים על הגרף"]}},72351:e=>{e.exports={en:["Hide indicators"],he_IL:["הסתר אינדיקטורים"]}},28345:e=>{e.exports={en:["Hide marks on bars"],he_IL:["הסתר סימנים על הנרות"]}},92226:e=>{e.exports={en:["Hide positions & orders"],he_IL:["הסתר פוזיציות ופקודות"]}},78254:e=>{e.exports={en:["High"],he_IL:["גבוה"]}},98236:e=>{e.exports={en:["High-low"],he_IL:["גבוה-נמוך"]}},99479:e=>{e.exports={en:["High and low price labels"],he_IL:["תוויות מחיר גבוה ונמוך"]}},33766:e=>{e.exports={en:["High and low price lines"],he_IL:["קווי מחיר גבוה ונמוך"]}},69476:e=>{e.exports={en:["Highlighter"],he_IL:["מרקר מדגיש"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],he_IL:["ההיסטוגרמה גדולה מדי, בבקשה הגדל את {boldHighlightStart}גודל שורה{boldHighlightEnd} בחלון ההגדרות."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],he_IL:["ההיסטוגרמה גדולה מדי, נא הגדל את {boldHighlightStart}טיקים לשורה{boldHighlightEnd} בחלון ההגדרות."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],he_IL:["ההיסטוגרמה גדולה מדי, נא הקטן את {boldHighlightStart}גודל שורה{boldHighlightEnd} בחלון ההגדרות."]}},68065:e=>{e.exports={en:["Image"],he_IL:["תמונה"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],he_IL:["אינטרוולים הנמוכים מ-{resolution} לא נתמכים עבור {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],he_IL:["ביניים"]}},14285:e=>{e.exports={en:["Invalid Symbol"],he_IL:["סימול לא קיים"]}},52969:e=>{e.exports={en:["Invalid symbol"],he_IL:["סימול שגוי"]}},37189:e=>{e.exports={en:["Invert scale"],he_IL:["הפוך גרף"]}},89999:e=>{e.exports={en:["Indexed to 100"],he_IL:["צמוד ל-100"]}},46850:e=>{e.exports={en:["Indicators value labels"],he_IL:["תוויות ערך של אינדיקטורים"]}},54418:e=>{e.exports={en:["Indicators name labels"],he_IL:["שמות תוויות של אינדיקטורים"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],he_IL:["אינדיקטורים, מדדים ואסטרטגיות. הקש על קו נטוי"]}},15992:e=>{e.exports={en:["Info Line"],he_IL:["קו מידע"]}},87829:e=>{e.exports={en:["Insert indicator"],he_IL:["הוסף אינדיקטור"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],he_IL:["קילשון פנימי"]}},37913:e=>{e.exports={en:["Icon"],he_IL:["אייקון"]}},78326:e=>{e.exports={en:["Istanbul"],he_IL:["איסטנבול"]}},39585:e=>{e.exports={en:["Johannesburg"],he_IL:["יוהנסבורג"]}},14995:e=>{e.exports={en:["Jakarta"],he_IL:["ג'קרטה"]}},62310:e=>{e.exports={en:["Jan"],he_IL:["ינו'"]}},36057:e=>{e.exports={en:["Jerusalem"],he_IL:["ירושלים"]}},53786:e=>{e.exports={en:["Jul"],he_IL:["יול'"]}},429:e=>{e.exports={en:["Jun"],he_IL:["יונ'"]}},67560:e=>{e.exports={
|
||||
en:["Juneau"],he_IL:["ג'ונו"]}},62329:e=>{e.exports={en:["On the left"],he_IL:["משמאל"]}},55813:e=>{e.exports={en:["On the right"],he_IL:["מימין"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],he_IL:["רק אינטרוולי זמן של {availableResolutions} נתמכים עבור {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],he_IL:["אופס!"]}},51221:e=>{e.exports={en:["Object Tree"],he_IL:["עץ אובייקטים"]}},12179:e=>{e.exports={en:["Oct"],he_IL:["אוק'"]}},16610:e=>{e.exports={en:["Open"],he_IL:["פתיחה"]}},27884:e=>{e.exports={en:["Open layout. Press period"],he_IL:["פתח פריסה. פרק זמן לחיצה"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],he_IL:["נמוך"]}},51077:e=>{e.exports={en:["Lock"],he_IL:["נעל"]}},79777:e=>{e.exports={en:["Lock/unlock"],he_IL:["פתח/סגור"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],he_IL:["נעל קו סמן אנכי לפי זמן"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],he_IL:["נעל יחס מחיר לנר"]}},16170:e=>{e.exports={en:["Logarithmic"],he_IL:["לוגריתמי"]}},19439:e=>{e.exports={en:["London"],he_IL:["לונדון"]}},74832:e=>{e.exports={en:["Long Position"],he_IL:["עסקת לונג"]}},28733:e=>{e.exports={en:["Los Angeles"],he_IL:["לוס אנג'לס"]}},85924:e=>{e.exports={en:["Label Down"],he_IL:["תווית למטה"]}},52402:e=>{e.exports={en:["Label Up"],he_IL:["תווית למעלה"]}},5119:e=>{e.exports={en:["Labels"],he_IL:["תוויות"]}},19931:e=>{e.exports={en:["Lagos"],he_IL:["לאגוס"]}},63815:e=>{e.exports={en:["Last day change"],he_IL:["שינוי יום אחרון"]}},59444:e=>{e.exports={en:["Lima"],he_IL:["לימה"]}},3554:e=>{e.exports={en:["Line"],he_IL:["קו"]}},9394:e=>{e.exports={en:["Line with markers"],he_IL:["קו עם סמנים"]}},43588:e=>{e.exports={en:["Line break"],he_IL:["מקטע קו"]}},56982:e=>{e.exports={en:["Lines"],he_IL:["קווים"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],he_IL:["קישור לתמונת הגרף שהועתק ללוח {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],he_IL:["ליסבון"]}},81038:e=>{e.exports={en:["Luxembourg"],he_IL:["לוקסמבורג"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],he_IL:["הזז את הנקודה למיקום העוגן ולאחר מכן הקש כדי למקם"]}},35049:e=>{e.exports={en:["Move to"],he_IL:["הזז ל.."]}},26493:e=>{e.exports={en:["Move scale to left"],he_IL:["הזז קנה מידה לשמאל"]}},40789:e=>{e.exports={en:["Move scale to right"],he_IL:["הזז קנה מידה לימין"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],he_IL:["קילשון שיף מותאם"]}},93907:e=>{e.exports={en:["More settings"],he_IL:["הגדרות נוספות"]}},64039:e=>{e.exports={en:["Moscow"],he_IL:["מוסקבה"]}},52066:e=>{e.exports={en:["Madrid"],he_IL:["מדריד"]}},38365:e=>{e.exports={en:["Malta"],he_IL:["מלטה"]}},48991:e=>{e.exports={en:["Manila"],he_IL:["מנילה"]}},92767:e=>{e.exports={en:["Mar"],he_IL:["מרץ"]}},73332:e=>{e.exports={en:["Mexico City"],he_IL:["מקסיקו סיטי"]}},88314:e=>{e.exports={en:["Merge all scales into one"],he_IL:["מזג את כל סולמות המחיר לאחד"]}},54215:e=>{e.exports={en:["Mixed"],he_IL:["מעורב"]}},24866:e=>{e.exports={
|
||||
en:["Micro"],he_IL:["מיקרו"]}},87957:e=>{e.exports={en:["Millennium"],he_IL:["מילניום"]}},14724:e=>{e.exports={en:["Minuette"],he_IL:["מינוט (Minuette)"]}},78273:e=>{e.exports={en:["Minuscule"],he_IL:["זעיר"]}},9865:e=>{e.exports={en:["Muscat"],he_IL:["מוסקט"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"],he_IL:["אין כאן נתונים"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],he_IL:["ללא קנה מידה (מסך-מלא)"]}},9140:e=>{e.exports={en:["No sync"],he_IL:["אין סנכרון"]}},50910:e=>{e.exports={en:["No volume data"],he_IL:["אין נתוני נפח"]}},99024:e=>{e.exports={en:["No, keep them"],he_IL:["לא, השאר אותם"]}},94389:e=>{e.exports={en:["Note"],he_IL:["הערה"]}},26899:e=>{e.exports={en:["Nov"],he_IL:["נוב'"]}},67891:e=>{e.exports={en:["Norfolk Island"],he_IL:["אי נורפולק"]}},40977:e=>{e.exports={en:["Nairobi"],he_IL:["ניירובי"]}},40544:e=>{e.exports={en:["New York"],he_IL:["ניו יורק"]}},66103:e=>{e.exports={en:["New Zealand"],he_IL:["ניו זילנד"]}},15512:e=>{e.exports={en:["New pane above"],he_IL:["חלון חדש מעל"]}},52160:e=>{e.exports={en:["New pane below"],he_IL:["חלון חדש מתחת"]}},94600:e=>{e.exports={en:["Nicosia"],he_IL:["ניקוסיה"]}},73013:e=>{e.exports={en:["Something went wrong"],he_IL:["משהו השתבש"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],he_IL:["משהו השתבש בעת יצירת האינדיקטור."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],he_IL:["משהו השתבש. בבקשה נסה שוב מאוחר יותר."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],he_IL:["שמור פריסת גרף חדשה"]}},76266:e=>{e.exports={en:["Save as"],he_IL:["שמור בשם"]}},55502:e=>{e.exports={en:["San Salvador"],he_IL:["סן סלבדור"]}},30231:e=>{e.exports={en:["Santiago"],he_IL:["סנטיאגו"]}},91912:e=>{e.exports={en:["Sao Paulo"],he_IL:["סאו פאולו"]}},43931:e=>{e.exports={en:["Scale currency"],he_IL:["קנה מידה של מטבע"]}},43758:e=>{e.exports={en:["Scale price chart only"],he_IL:["הרחב סולם מחיר בלבד"]}},40012:e=>{e.exports={en:["Scale unit"],he_IL:["יחידת קנה מידה"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],he_IL:["קילשון שיף"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],he_IL:["הסקריפט לט יתעדכן אם תעזוב את הדף."]}},32514:e=>{e.exports={en:["Settings"],he_IL:["הגדרות"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],he_IL:["הפיסקה של החלק השני אינו חוקי."]}},75594:e=>{e.exports={en:["Security info"],he_IL:["מידע על הסימול"]}},21973:e=>{e.exports={en:["Send to back"],he_IL:["שלח לאחור"]}},71179:e=>{e.exports={en:["Send backward"],he_IL:["שלח אחורה"]}},26820:e=>{e.exports={en:["Seoul"],he_IL:["סיאול"]}},6816:e=>{e.exports={en:["Sep"],he_IL:["ספט'"]}},94031:e=>{e.exports={en:["Session"],he_IL:["שעות מסחר"]}},83298:e=>{e.exports={en:["Session volume profile"],he_IL:["פרופיל סשן ווליום"]}},66707:e=>{e.exports={en:["Session breaks"],he_IL:["הפרד ימי מסחר"]}},1852:e=>{e.exports={en:["Shanghai"],he_IL:["שנחאי"]}},8075:e=>{e.exports={en:["Short Position"],he_IL:["עסקת שורט"]}},98334:e=>{e.exports={en:["Show"],he_IL:["הצג"]}},85891:e=>{
|
||||
e.exports={en:["Show all drawings"],he_IL:["הצג את כל השרטוטים"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],he_IL:["הצג את כל השרטוטים והאינדיקטורים"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],he_IL:["הצג את כל השרטוטים, האינדיקטורים, הפוזיציות והפקודות"]}},98753:e=>{e.exports={en:["Show all indicators"],he_IL:["הצג את כל האינדיקטורים"]}},55418:e=>{e.exports={en:["Show all ideas"],he_IL:["הצג את כל הרעיונות"]}},20506:e=>{e.exports={en:["Show all positions & orders"],he_IL:["הצג את כל הפוזיציות והפקודות"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],he_IL:["הצג לחצן חוזה רציף"]}},81465:e=>{e.exports={en:["Show contract expiration"],he_IL:["הצג את תפוגת החוזה"]}},29449:e=>{e.exports={en:["Show dividends"],he_IL:["הצג דיבידנדים"]}},37113:e=>{e.exports={en:["Show earnings"],he_IL:['הצג דו"חות רווחים']}},10261:e=>{e.exports={en:["Show ideas of followed users"],he_IL:["הצג רעיונות של משתמשים עוקבים"]}},62986:e=>{e.exports={en:["Show latest news"],he_IL:["הצג את החדשות העדכניות ביותר"]}},44020:e=>{e.exports={en:["Show my ideas only"],he_IL:["הצג את הרעיונות שלי בלבד"]}},50849:e=>{e.exports={en:["Show splits"],he_IL:["הצג פיצולי מניות"]}},67751:e=>{e.exports={en:["Signpost"],he_IL:["סימן דרך"]}},77377:e=>{e.exports={en:["Singapore"],he_IL:["סינגפור"]}},39090:e=>{e.exports={en:["Sine Line"],he_IL:["קו סינוס"]}},66205:e=>{e.exports={en:["Square"],he_IL:["רבוע"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],he_IL:["חריגה ממגבלת המחקר: {number} מחקרים בכל פריסה.\nבבקשה, הסר מס' מחקרים."]}},92516:e=>{e.exports={en:["Style"],he_IL:["עיצוב"]}},61507:e=>{e.exports={en:["Stack on the left"],he_IL:["תאגד לשמאל"]}},97800:e=>{e.exports={en:["Stack on the right"],he_IL:["תאגד לימין"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],he_IL:["התחל להשתמש במצב ניווט מקלדת. הקש על {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],he_IL:["הישאר במצב ציור"]}},69217:e=>{e.exports={en:["Step line"],he_IL:["קו צעד"]}},43114:e=>{e.exports={en:["Sticker"],he_IL:["סטיקר"]}},86716:e=>{e.exports={en:["Stockholm"],he_IL:["שטוקהולם"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"],he_IL:["סאבמינוט (Subminuette)"]}},67948:e=>{e.exports={en:["Supercycle"],he_IL:["סופר גל"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],he_IL:["עבור אל {resolution}"]}},31622:e=>{e.exports={en:["Sydney"],he_IL:["סינדי"]}},70963:e=>{e.exports={en:["Symbol Error"],he_IL:["שגיאת סימול"]}},32390:e=>{e.exports={en:["Symbol name label"],he_IL:["תווית שם הסימול"]}},10127:e=>{e.exports={en:["Symbol last price label"],he_IL:["תווית ערך אחרון לסימול"]}},39079:e=>{e.exports={en:["Sync globally"],he_IL:["סנכרון גלובלי"]}},46607:e=>{e.exports={en:["Sync in layout"],he_IL:["סנכרון בפריסה"]}},76519:e=>{e.exports={en:["Point & figure"],he_IL:["גרף Point & Figure"]}},39949:e=>{
|
||||
e.exports={en:["Polyline"],he_IL:["קווים מחוברים"]}},371:e=>{e.exports={en:["Path"],he_IL:["נָתִיב"]}},59256:e=>{e.exports={en:["Parallel Channel"],he_IL:["ערוץ מקביל"]}},61879:e=>{e.exports={en:["Paris"],he_IL:["פריז"]}},35140:e=>{e.exports={en:["Paste"],he_IL:["הדבק"]}},6919:e=>{e.exports={en:["Percent"],he_IL:["אחוז"]}},24436:e=>{e.exports={en:["Perth"],he_IL:["פרת'"]}},14055:e=>{e.exports={en:["Phoenix"],he_IL:["פניקס"]}},34156:e=>{e.exports={en:["Pitchfan"],he_IL:["מניפת מחירים"]}},19634:e=>{e.exports={en:["Pitchfork"],he_IL:["קילשון"]}},86631:e=>{e.exports={en:["Pin"],he_IL:["הצמד"]}},33110:e=>{e.exports={en:["Pin to new left scale"],he_IL:["הצמד לסולם חדש משמאל"]}},28280:e=>{e.exports={en:["Pin to new right scale"],he_IL:["הצמד לסולם חדש מימין"]}},14115:e=>{e.exports={en:["Pin to left scale"],he_IL:["הצמד לסולם השמאלי"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],he_IL:["הצמד לסולם השמאלי (מוסתר)"]}},81054:e=>{e.exports={en:["Pin to right scale"],he_IL:["הצמד לסולם הימני"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],he_IL:["הצמד לסולם השמאלי (מוסתר)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],he_IL:["הצמד לסולם (עכשיו שמאל)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],he_IL:["הצמד לסולם (כעת ללא קנה מידה)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],he_IL:["הצמד לסולם (עכשיו ימין)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],he_IL:["הצמד לסולם מחיר (כעת {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],he_IL:["הצמד לסולם {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],he_IL:["הצמד לסולם {label} (מוסתר)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],he_IL:["צמוד לסולם השמאלי"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],he_IL:["צמוד לסולם השמאלי (מוסתר)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],he_IL:["צמוד לסולם מחיר ימין"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],he_IL:["הצמד לסולם השמאלי (מוסתר)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],he_IL:["צמוד לסולם {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],he_IL:["צמוד לסולם {label} (מוסתר)"]}},71566:e=>{e.exports={en:["Plus button"],he_IL:["כפתור פלוס"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],he_IL:["אנא תן לנו הרשאת כתיבה ללוח בדפדפן שלך או הקש על {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],he_IL:["פראג"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],he_IL:["לחץ לחיצה ממושכת על {key} תוך כדי הגדלה כדי לשמור על מיקום הגרף"]}},91282:e=>{e.exports={en:["Price Label"],he_IL:["תווית מחיר"]}},97512:e=>{e.exports={en:["Price Note"],he_IL:["הערת מחיר"]}},68941:e=>{e.exports={en:["Price Range"],he_IL:["טווח מחירים"]}},66123:e=>{e.exports={en:["Price format is invalid."],he_IL:["פורמט המחיר אינו חוקי."]}},72926:e=>{e.exports={en:["Price line"],he_IL:["קו מחיר"]}},59189:e=>{e.exports={en:["Primary"],he_IL:["ראשי"]}},75747:e=>{
|
||||
e.exports={en:["Projection"],he_IL:["הקרנה"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],he_IL:["פורסם בתאריך {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"],he_IL:["קטאר"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],he_IL:["חיפוש מהיר. הקש על {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],he_IL:["מלבן מסובב"]}},52961:e=>{e.exports={en:["Rome"],he_IL:["רומא"]}},50318:e=>{e.exports={en:["Ray"],he_IL:["קרן"]}},55169:e=>{e.exports={en:["Range"],he_IL:["טווח"]}},13386:e=>{e.exports={en:["Reykjavik"],he_IL:["רייקיאוויק"]}},26001:e=>{e.exports={en:["Rectangle"],he_IL:["מלבן"]}},48236:e=>{e.exports={en:["Redo"],he_IL:["בצע שוב"]}},2460:e=>{e.exports={en:["Regression Trend"],he_IL:["מגמת רגרסיה"]}},67410:e=>{e.exports={en:["Remove"],he_IL:["הסר"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],he_IL:["הסר את המדד הפיננסי הזה מהמועדפים"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],he_IL:["הסר אינדיקטור זה מהמועדפים"]}},86285:e=>{e.exports={en:["Remove {drawings}"],he_IL:["הסר {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],he_IL:["הסר {drawings} ו{indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],he_IL:["הסר {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],he_IL:["בחר שם חדש לפריסת הגרף"]}},88130:e=>{e.exports={en:["Renko"],he_IL:["גרף ראנקו"]}},75246:e=>{e.exports={en:["Reset chart view"],he_IL:["אפס תצוגת גרף"]}},88853:e=>{e.exports={en:["Reset points"],he_IL:["איפוס נקודות"]}},15332:e=>{e.exports={en:["Reset price scale"],he_IL:["אפס סקלת מחיר"]}},54170:e=>{e.exports={en:["Reset time scale"],he_IL:["אפס סולם זמן"]}},37974:e=>{e.exports={en:["Riyadh"],he_IL:["ריאד"]}},94022:e=>{e.exports={en:["Riga"],he_IL:["ריגה"]}},60630:e=>{e.exports={en:["Runtime error"],he_IL:["שגיאת זמן ריצה"]}},66719:e=>{e.exports={en:["Warning"],he_IL:["אזהרה"]}},5959:e=>{e.exports={en:["Warsaw"],he_IL:["ורשה"]}},98549:e=>{e.exports={en:["Tokelau"],he_IL:["טוקלאו"]}},69122:e=>{e.exports={en:["Tokyo"],he_IL:["טוקיו"]}},10095:e=>{e.exports={en:["Toronto"],he_IL:["טורונטו"]}},17981:e=>{e.exports={en:["Table"],he_IL:["טבלה"]}},11034:e=>{e.exports={en:["Taipei"],he_IL:["טייפה"]}},79995:e=>{e.exports={en:["Tallinn"],he_IL:["טאלין"]}},6686:e=>{e.exports={en:["Tehran"],he_IL:["טהרן"]}},93553:e=>{e.exports={en:["Template"],he_IL:["תבנית"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],he_IL:["ספק הנתונים אינו מספק נתוני נפח עבור סימול זה"]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],he_IL:["לא ניתן לטעון את התצוגה המקדימה של הפרסום. השבת את תוספי הדפדפן ונסה שוב."]}},99274:e=>{e.exports={
|
||||
en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],he_IL:["עיבוד הבקשה ארך יותר מדי זמן. ודא שיש לך חיבור אינטרנט יציב. אם הבעיה נמשכת, נסה להקטין את אינטרוול הזמן המבוקש."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],he_IL:["אין נתונים עבור התקופה ומסגרת הזמן שבחרת בגרף."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],he_IL:["קובץ זה גדול מדי. הגודל המקסימלי הוא {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],he_IL:["מתנד זה אינו יכול להיות מיושם על מתנד נוסף"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],he_IL:["סקריפט זה מכיל שגיאה. אנא צור קשר עם המחבר שלו."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],he_IL:["הסקריפט הזה מיועד להזמנה בלבד. כדי לבקש גישה, אנא צור קשר עם המחבר."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],he_IL:["סימול זה זמין רק ב {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],he_IL:["תבנית Three Drives"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],he_IL:["אינטרוולים מבוססי סימון אינם זמינים עבור {ticker}."]}},12806:e=>{e.exports={en:["Time"],he_IL:["זמן"]}},20909:e=>{e.exports={en:["Time zone"],he_IL:["אזור זמן"]}},46852:e=>{e.exports={en:["Time Cycles"],he_IL:["מחזורי זמן"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],he_IL:["הזדמנות מחיר זמן"]}},66823:e=>{e.exports={en:["Trade"],he_IL:["מסחר"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],he_IL:["Tradingview היא פלטפורמה אינטראקטיבית ויש לה פקודות לשימוש עם קורא מסך. להלן רשימה של פקודות מקלדת הזמינות לאינטראקציה בפלטפורמה"]}},35757:e=>{e.exports={en:["Trend Angle"],he_IL:["זוית מגמה"]}},97339:e=>{e.exports={en:["Trend Line"],he_IL:["קו מגמה"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],he_IL:["שלוחת פיבונאצ'י מבוססת מגמה"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],he_IL:["זמן פיבונאצ'י מבוסס מגמה"]}},1671:e=>{e.exports={en:["Triangle"],he_IL:["משולש"]}},76152:e=>{e.exports={en:["Triangle Down"],he_IL:["משולש למטה"]}},90148:e=>{e.exports={en:["Triangle Pattern"],he_IL:["תבנית משולש"]}},21236:e=>{e.exports={en:["Triangle Up"],he_IL:["משולש למעלה"]}},21007:e=>{e.exports={en:["Tunis"],he_IL:["תוניס"]}},1833:e=>{e.exports={en:["UTC"],he_IL:["אזור זמן"]}},14804:e=>{e.exports={en:["Undo"],he_IL:["בטל"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],he_IL:["שגיאה בלתי צפויה במצב בקטסטינג עמוק. צור קשר עם התמיכה למידע נוסף."]}},15432:e=>{e.exports={en:["Units"],he_IL:["יחידות"]}},11768:e=>{e.exports={en:["Unknown error"],he_IL:["שגיאה לא ידועה"]}},
|
||||
99894:e=>{e.exports={en:["Unlock"],he_IL:["בטל נעילה"]}},75546:e=>{e.exports={en:["Unsupported interval"],he_IL:["אינטרוול לא נתמך"]}},8580:e=>{e.exports={en:["User-defined error"],he_IL:["שגיאה בהגדרת משתמש"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],he_IL:["טווח קבוע של פרופיל ווליום"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],he_IL:["אינדיקטור פרופיל ווליום זמין רק בתוכניות המשודרגות שלנו."]}},93722:e=>{e.exports={en:["Volume candles"],he_IL:["נרות ווליום"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],he_IL:["נתוני נפח אינם מסופקים בתוכנית הנתונים BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],he_IL:["ווליום footprint"]}},32838:e=>{e.exports={en:["Vancouver"],he_IL:["ונקובר"]}},29535:e=>{e.exports={en:["Vertical Line"],he_IL:["קו אנכי"]}},23160:e=>{e.exports={en:["Vienna"],he_IL:["וינה"]}},60534:e=>{e.exports={en:["Vilnius"],he_IL:["וילנה"]}},40091:e=>{e.exports={en:["Visibility"],he_IL:["ניראות"]}},54853:e=>{e.exports={en:["Visibility on intervals"],he_IL:["נראות אינטרוולים"]}},58302:e=>{e.exports={en:["Visible on tap"],he_IL:["מוצג בהקשה"]}},10309:e=>{e.exports={en:["Visible on mouse over"],he_IL:["הצג כשהעכבר מעל"]}},4077:e=>{e.exports={en:["Visual order"],he_IL:["סדר ויזואלי"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],he_IL:["תבנית XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],he_IL:["לא ניתן להציג את מסגרת הזמן של פיבוט זה ברזולוציה הזו"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],he_IL:["יש לך שרטוטים נעולים על הסימול הזה. האם אתה רוצה להסיר גם את השרטוטים הנעולים?"]}},53168:e=>{e.exports={en:["Yangon"],he_IL:["יאנגון"]}},93123:e=>{e.exports={en:["Yes, remove them"],he_IL:["כן, הסר אותם"]}},62859:e=>{e.exports={en:["Zurich"],he_IL:["ציריך"]}},47977:e=>{e.exports={en:["change Elliott degree"],he_IL:["שנה את רמת אליוט"]}},61557:e=>{e.exports={en:["change no overlapping labels"],he_IL:["אין לשנות תוויות חופפות"]}},76852:e=>{e.exports={en:["change average close price label visibility"],he_IL:["שנה את נראות תווית המחיר הממוצעת"]}},1022:e=>{e.exports={en:["change average close price line visibility"],he_IL:["שנה את הנראות הממוצעת של קו מחיר קרוב"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],he_IL:["שנה נראות של תוויות ביקוש והיצע bid/ask"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],he_IL:["שנה נראות שורות היצע וביקוש bid/ask"]}},32302:e=>{e.exports={en:["change currency"],he_IL:["שנה מטבע"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],he_IL:["שנה פריסת גרף ל-{title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],he_IL:["שנה נראות מתג החלפה לחוזה רציף"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],he_IL:["שנה את נראות הספירה לאחור לסגירת הבר"]}},16979:e=>{e.exports={en:["change date range"],he_IL:["שנה טווח תאריכים"]}},
|
||||
53929:e=>{e.exports={en:["change dividends visibility"],he_IL:["שנה את נראות הדיבידנדים"]}},6119:e=>{e.exports={en:["change events visibility on chart"],he_IL:["שנה את נראות האירועים בגרף"]}},6819:e=>{e.exports={en:["change earnings visibility"],he_IL:["שנה את נראות הרווחים"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],he_IL:["שינוי נראות תפוגה של חוזה עתידי"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],he_IL:["לשנות את הנראות של תוויות מחיר גבוה ונמוך"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],he_IL:["לשנות את נראות קווי המחירים הגבוהים והנמוכים"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],he_IL:["שנה נראות של אינדיקטורים ושם תוויות"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],he_IL:["שנה נראות תוויות ערך של אינדיקטורים"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],he_IL:["שנה את נראות העדכונים האחרונים"]}},88849:e=>{e.exports={en:["change linking group"],he_IL:["שנה קבוצת קישור"]}},14691:e=>{e.exports={en:["change pane height"],he_IL:["לשנות את גובה החלונית"]}},96379:e=>{e.exports={en:["change plus button visibility"],he_IL:["שנה נראות של לחצן הפלוס"]}},76660:e=>{e.exports={en:["change point"],he_IL:["שנה נקודה"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],he_IL:["שנה את נראות תווית מחיר פרה/פןסט מארקט"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],he_IL:["שנה את נראות קווי מחיר פרה/פןסט מארקט"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],he_IL:["שנה את הנראות של קו סגירת מחיר הקודם"]}},8662:e=>{e.exports={en:["change price line visibility"],he_IL:["שנה את קו המחיר"]}},2509:e=>{e.exports={en:["change price to bar ratio"],he_IL:["שנה את יחס המחיר לבר"]}},32829:e=>{e.exports={en:["change resolution"],he_IL:["שנה רזולוציה"]}},35400:e=>{e.exports={en:["change symbol"],he_IL:["שנה סימול"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],he_IL:["שנה את נראות תוויות הסימולים"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],he_IL:["שנה את נראות סימול הערך האחרון"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],he_IL:["שנה נראות ערך קרוב של סימול קודם"]}},87041:e=>{e.exports={en:["change session"],he_IL:["שנה סשן"]}},38413:e=>{e.exports={en:["change session breaks visibility"],he_IL:["שנה את נראות הפסקות הסשן"]}},49965:e=>{e.exports={en:["change series style"],he_IL:["שנה את סגנון הסדרה"]}},47474:e=>{e.exports={en:["change splits visibility"],he_IL:["שנה את נראות הפיצולים/ספליט"]}},20137:e=>{e.exports={en:["change timezone"],he_IL:["שנה אזור זמן"]}},85975:e=>{e.exports={en:["change unit"],he_IL:["שנה יחידה"]}},1924:e=>{e.exports={en:["change visibility"],he_IL:["שנה את הנראות"]}},84331:e=>{e.exports={en:["change visibility at current interval"],he_IL:["לשנות את הנראות באינטרוול הנוכחי"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],
|
||||
he_IL:["לשנות את הנראות באינטרוול הנוכחי ומעלה"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],he_IL:["שנה נראות באינטרוול הנוכחי ומטה"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],he_IL:["לשנות את הנראות בכל האינטרוולים"]}},94566:e=>{e.exports={en:["charts by TradingView"],he_IL:["הגרפים באדיבות TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],he_IL:["העתק כלי-קו"]}},46219:e=>{e.exports={en:["create line tools group"],he_IL:["צור קבוצת כלים לקווים"]}},95394:e=>{e.exports={en:["create line tools group from selection"],he_IL:["צור קבוצת כלי שורה מהבחירה"]}},12898:e=>{e.exports={en:["create {tool}"],he_IL:["צור {tool}"]}},94227:e=>{e.exports={en:["cut sources"],he_IL:["חתוך מקורות"]}},11500:e=>{e.exports={en:["cut {title}"],he_IL:["חתוך {title}"]}},63869:e=>{e.exports={en:["anchor objects"],he_IL:["אובייקטים מעוגנים"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],he_IL:["הוסף כלי קו {lineTool} לקבוצה {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],he_IL:["הוסף כלי(ם) קו לקבוצה {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],he_IL:["הוסף מדד פיננסי זה לפריסה שלמה"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],he_IL:["הוסף אינדיקטור זה לפריסה שלמה"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],he_IL:["הוסף אסטרטגיה זו לפריסה שלמה"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],he_IL:["הוסף סימול זה לפריסה שלמה"]}},4128:e=>{e.exports={en:["align to 45 degrees"],he_IL:["יישר ל-45 מעלות"]}},68231:e=>{e.exports={en:["apply chart theme"],he_IL:["החל את נושא הגרף"]}},99551:e=>{e.exports={en:["apply all chart properties"],he_IL:["החל את כל מאפייני הגרף"]}},89720:e=>{e.exports={en:["apply drawing template"],he_IL:["החל תבנית שרטוט"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],he_IL:["החל את ברירת המחדל של היצרן על מקורות נבחרים"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],he_IL:["להחיל אינדיקטורים על כל הפריסה"]}},69604:e=>{e.exports={en:["apply study template {template}"],he_IL:["החל תבנית לימודית {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],he_IL:["להחיל נושא של סרגלי כלים"]}},1979:e=>{e.exports={en:["bring group {title} forward"],he_IL:["הבא את הקבוצה {title} קדימה"]}},53159:e=>{e.exports={en:["bring {title} to front"],he_IL:["הבא את {title} לחזית"]}},41966:e=>{e.exports={en:["bring {title} forward"],he_IL:["הבא {title} קדימה"]}},44676:e=>{e.exports={en:["by TradingView"],he_IL:["מאת TradingView"]}},58850:e=>{e.exports={en:["date range lock"],he_IL:["נעילת טווח תאריכים"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],he_IL:["אל תכלול כלי קווים מהקבוצה {group}"]}},13017:e=>{e.exports={en:["hide {title}"],he_IL:["הסתר {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],he_IL:["הסתר סימנים על הנרות"]}},56558:e=>{e.exports={en:["interval lock"],he_IL:["נעילת אינטרוול"]}},6830:e=>{e.exports={en:["invert scale"],
|
||||
he_IL:["הפוך גרף"]}},48818:e=>{e.exports={en:["insert {title}"],he_IL:["הוסף {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],he_IL:["הוסף {title} אחרי {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],he_IL:["הכנס {title} אחרי {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],he_IL:["הכנס {title} לפני {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],he_IL:["הכנס {title} לפני {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],he_IL:["טען תבנית שרטוט ברירת מחדל"]}},62011:e=>{e.exports={en:["loading..."],he_IL:["טוען..."]}},76104:e=>{e.exports={en:["lock {title}"],he_IL:["נעל {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],he_IL:["נעל קבוצה {group}"]}},18942:e=>{e.exports={en:["lock objects"],he_IL:["נעל אובייקטים"]}},98277:e=>{e.exports={en:["move"],he_IL:["הזז"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],he_IL:["הזז {title} לסולם חדש משמאל"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],he_IL:["העבר את {title} לסולם ימני חדש"]}},64077:e=>{e.exports={en:["move all scales to left"],he_IL:["הזז את כל סולמות המחיר לשמאל"]}},19013:e=>{e.exports={en:["move all scales to right"],he_IL:["הזז את כל סולמות המחיר לימין"]}},52510:e=>{e.exports={en:["move drawing(s)"],he_IL:["העבר שירטוט(ים)"]}},79209:e=>{e.exports={en:["move left"],he_IL:["הזז לשמאל"]}},60114:e=>{e.exports={en:["move right"],he_IL:["הזז לימין"]}},44854:e=>{e.exports={en:["move scale"],he_IL:["הזז סולם מחיר"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],he_IL:["הפוך את {title} ללא קנה מידה (מסך מלא)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],he_IL:["הפוך את הקבוצה {group} לבלתי נראית"]}},45987:e=>{e.exports={en:["make group {group} visible"],he_IL:["הפוך את הקבוצה {group} לגלויה"]}},78055:e=>{e.exports={en:["merge down"],he_IL:["מזג למטה"]}},41866:e=>{e.exports={en:["merge to pane"],he_IL:["מזג לחלונית"]}},52458:e=>{e.exports={en:["merge up"],he_IL:["מזג למעלה"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"],he_IL:["קנה מידה מחיר"]}},63796:e=>{e.exports={en:["scale price chart only"],he_IL:["הרחב סולם מחיר בלבד"]}},70771:e=>{e.exports={en:["scale time"],he_IL:["זמן קנה מידה"]}},42070:e=>{e.exports={en:["scroll"],he_IL:["גלול"]}},87840:e=>{e.exports={en:["scroll time"],he_IL:["זמן גלילה"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],he_IL:["הגדר את אסטרטגיית בחירת סולם המחירים ל-{title}"]}},40962:e=>{e.exports={en:["send {title} backward"],he_IL:["שלח {title} לאחור"]}},5005:e=>{e.exports={en:["send {title} to back"],he_IL:["שלח את {title} לאחור"]}},69546:e=>{e.exports={en:["send group {title} backward"],he_IL:["שלח את הקבוצה {title} לאחור"]}},63934:e=>{e.exports={en:["share line tools globally"],he_IL:["שתף כלי קו ברחבי העולם"]}},90221:e=>{e.exports={en:["share line tools in layout"],he_IL:["שיתוף כלי קו בפריסה"]}},13336:e=>{e.exports={en:["show all ideas"],
|
||||
he_IL:["הצג את כל הרעיונות"]}},91395:e=>{e.exports={en:["show ideas of followed users"],he_IL:["הצג רעיונות של משתמשים במעקב"]}},57460:e=>{e.exports={en:["show my ideas only"],he_IL:["הצג את הרעיונות שלי בלבד"]}},4114:e=>{e.exports={en:["stay in drawing mode"],he_IL:["הישאר במצב שרטוט"]}},3350:e=>{e.exports={en:["stop syncing drawing"],he_IL:["הפסק לסנכרן שרטוט"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],he_IL:["הפסק לסנכרן כלי(ם) קו"]}},53278:e=>{e.exports={en:["symbol lock"],he_IL:["נעילת סימול"]}},91677:e=>{e.exports={en:["sync time"],he_IL:["סנכרן זמן"]}},3140:e=>{e.exports={en:["powered by"],he_IL:['מופעל ע"י']}},92800:e=>{e.exports={en:["powered by TradingView"],he_IL:["מופעל על ידי Tradingview"]}},62192:e=>{e.exports={en:["paste drawing"],he_IL:["הדבק שרטוט"]}},1064:e=>{e.exports={en:["paste indicator"],he_IL:["הדבק אינדיקטור"]}},57010:e=>{e.exports={en:["paste {title}"],he_IL:["הדבק {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],he_IL:["הצמד לסולם השמאלי"]}},7495:e=>{e.exports={en:["pin to right scale"],he_IL:["הצמד לסולם השמאלי"]}},81566:e=>{e.exports={en:["pin to scale {label}"],he_IL:["הצמד לסולם {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],he_IL:["ארגן מחדש את החלונות"]}},60806:e=>{e.exports={en:["remove all indicators"],he_IL:["הסר את כל האינדיקטורים"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],he_IL:["הסר את כל האינדיקטורים וכלי השרטוט"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],he_IL:["הסר כלי קו ריקים שלא נבחרו"]}},30538:e=>{e.exports={en:["remove drawings"],he_IL:["הסר שרטוטים"]}},1193:e=>{e.exports={en:["remove drawings group"],he_IL:["הסר את קבוצת השרטוטים"]}},38199:e=>{e.exports={en:["remove line data sources"],he_IL:["להסיר קו מקורות נתונים"]}},93333:e=>{e.exports={en:["remove pane"],he_IL:["הסר חלונית"]}},94543:e=>{e.exports={en:["remove {title}"],he_IL:["הסר {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],he_IL:["הסרת קבוצת כלי קו {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],he_IL:["שנה שם קבוצה {group} ל- {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],he_IL:["אפס גדלי פריסה"]}},3323:e=>{e.exports={en:["reset scales"],he_IL:["אפס קנה מידה"]}},17336:e=>{e.exports={en:["reset time scale"],he_IL:["אפס סולם זמן"]}},47418:e=>{e.exports={en:["resize layout"],he_IL:["שנה את גודל הפריסה"]}},85815:e=>{e.exports={en:["restore defaults"],he_IL:["שחזר ברירות מחדל"]}},96881:e=>{e.exports={en:["restore study defaults"],he_IL:["לשחזר את ברירת המחדל של המחקר"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],he_IL:["החלף מצב חלונית מקסימלית"]}},42240:e=>{e.exports={en:["toggle auto scale"],he_IL:["החלף קנה מידה אוטומטי"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],he_IL:["החלף מצב חלונית מכווצת"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],he_IL:["החלף באינדקס ל-100 קנה מידה"]}},49695:e=>{e.exports={en:["toggle lock scale"],he_IL:["החלף נעילת סולם"]}},49403:e=>{e.exports={en:["toggle log scale"],
|
||||
he_IL:["החלף סקאלה לוגריתמית"]}},98994:e=>{e.exports={en:["toggle percentage scale"],he_IL:["הפעל/כבה קנה מידה באחוזים"]}},80688:e=>{e.exports={en:["toggle regular scale"],he_IL:["החלף קנה מידה רגיל"]}},46807:e=>{e.exports={en:["track time"],he_IL:["עקוב אחר הזמן"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],he_IL:["כבה את שיתוף כלי הקו"]}},99234:e=>{e.exports={en:["unanchor objects"],he_IL:["אובייקטים לא מעוגנים"]}},23230:e=>{e.exports={en:["unlock objects"],he_IL:["פתח אובייקטים"]}},74590:e=>{e.exports={en:["unlock group {group}"],he_IL:["בטל את נעילת הקבוצה {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],he_IL:["בטל את נעילת {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],he_IL:["בטל את המיזוג לחלונית התחתונה החדשה"]}},79443:e=>{e.exports={en:["unmerge up"],he_IL:["בטל מיזוג למעלה"]}},46453:e=>{e.exports={en:["unmerge down"],he_IL:["בטל מיזוג למטה"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],he_IL:["אוי לא! סוג הגרף {chartStyle} אינו זמין כעת עבור אינטרוולים מבוססי סימון."]}},41643:e=>{e.exports={en:["{count} bars"],he_IL:["נרות {count}"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],he_IL:["{symbol} פיננסים באדיבות TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],he_IL:["{userName} פורסם ב-{customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"],he_IL:["זום"]}},49856:e=>{e.exports={en:["zoom in"],he_IL:["הגדל תצוגה"]}},73638:e=>{e.exports={en:["zoom out"],he_IL:["הקטן תצוגה"]}},41807:e=>{e.exports={en:["day","days"],he_IL:["יום","יומיים","ימים","ימים"]}},42328:e=>{e.exports={en:["hour","hours"],he_IL:["שעה","שעות","שעות","שעות"]}},98393:e=>{e.exports={en:["month","months"],he_IL:["חודש","חודשים","חודשים","חודשים"]}},78318:e=>{e.exports={en:["minute","minutes"],he_IL:["דקה","דקות","דקות","דקות"]}},33232:e=>{e.exports={en:["second","seconds"],he_IL:["שניה","שניות","שניות","שניות"]}},89937:e=>{e.exports={en:["range","ranges"],he_IL:["טווח","טווחים","טווחים","טווחים"]}},48898:e=>{e.exports={en:["week","weeks"],he_IL:["שבוע","שבועות","שבועות","שבועות"]}},11913:e=>{e.exports={en:["tick","ticks"],he_IL:["טיק","טיקים","טיקים","טיקים"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],he_IL:["שרטוט {amount}","שרטוטים {amount}","שרטוטים {amount}","שרטוטים {amount}"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],he_IL:["אינדיקטור {amount}","{amount}אינדיקטורים","{amount}אינדיקטורים","{amount}אינדיקטורים"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],he_IL:["{count}m","{count}m","{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"],he_IL:["{count}d","{count}d","{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],he_IL:["{count}y","{count}y","{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],he_IL:['Apple בע"מ']},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},
|
||||
e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],he_IL:["דולר אוסטרלי/דולר קנדי"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],he_IL:["דולר אוסטרלי/פרנק שוויצרי"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],he_IL:["דולר אוסטרלי/יין יפני"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],he_IL:["דולר אוסטרלי/דולר ניו זילנד"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],he_IL:["דולר אוסטרלי/רובל רוסי"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],he_IL:["דולר אוסטרלי/דולר אמריקאי"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],he_IL:["מדד S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"],he_IL:["ביטקוין קאש / אירו"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],he_IL:['ביטקוין קאש / דולר ארה"ב']},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],he_IL:["מדד BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],he_IL:['מדד ביטקוין/דולר ארה"ב']},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],he_IL:["מדד IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],he_IL:["מדד Bovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],he_IL:["מדד ברזיל 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"],he_IL:["SX20 RT סין"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"],he_IL:["חברת פורד מוטור"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],he_IL:["מדד S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],he_IL:["ריאל ברזילאי / יין יפני"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"],he_IL:['ITI בע"מ']},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],he_IL:["ביטקוין / דולר קנדי"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],he_IL:["ביטקוין / יואן סיני"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],he_IL:["ביטקוין / יורו"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],he_IL:["ביטקוין / לירה שטרלינג"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},
|
||||
e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],he_IL:["ביטקוין / וואן דרום קוריאני"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],he_IL:["ביטקוין / רובל רוסי"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],he_IL:["ביטקוין / באט תאילנדי"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],he_IL:["ביטקוין / דולר אמריקאי"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],he_IL:["ביטקוין גולד / דולר אמריקאי"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],he_IL:["מדד בווספה ברזיל"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],he_IL:["דולר קנדי / יין יפני"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],he_IL:["דולר קנדי / דולר אמריקאי"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],he_IL:["מדד S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],he_IL:["מדד Volatility S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],he_IL:["חוזים עתידיים של T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],he_IL:["חוזים עתידיים תירס"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],he_IL:["חוזים עתידיים על ארוחות סויה"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],he_IL:["חוזים עתידיים 10 שנים T-Note"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],he_IL:["חוזים עתידיים שיבולת שועל"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],he_IL:["חוזים עתידיים אורז"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],he_IL:["חוזים עתידיים על פולי סויה"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],he_IL:["חוזים עתידיים על חיטה"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],he_IL:["מיני חוזים עתידיים על פולי סויה"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],he_IL:["מיני חוזים עתידיים חיטה"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],he_IL:["חוזים עתידיים E-mini דאו ג'ונס ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],he_IL:["פרנק שוויצרי / יין יפני"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],he_IL:["פרנק שוויצרי / דולר אמריקאי"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],he_IL:["חוזים עתידיים ביטקוין - CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],he_IL:["חמאה חוזים עתידיים-מזומן (רציף: חוזה נוכחי מלפנים)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},
|
||||
e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],he_IL:["חוזים עתידיים E-mini יורו"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],he_IL:["חוזים עתידיים E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],he_IL:["חוזים עתידיים E-mini על ין יפני"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],he_IL:['חוזים עתידיים נאסד"ק 100 E-mini']},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],he_IL:["E-Mini ראסל 2000 אינדקס חוזים עתידיים"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],he_IL:["חוזים עתידיים זהב"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],he_IL:["חוזים עתידיים על נחושת"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],he_IL:["חוזים עתידיים על כסף"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],he_IL:["חוזים עתידיים E-mini נחושת"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],he_IL:["חוזים עתידיים (Mini) כסף"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],he_IL:["חוזים עתידיים זהב (Mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],he_IL:["CFD על נחושת"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],he_IL:["חוזי הפרשים על כותנה"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],he_IL:["שווי שוק קריפטו כולל, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],he_IL:["מדד DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],he_IL:["מדד Composite Average של דאו ג'ונס"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],he_IL:["דאו ג'ונס מדד סחורות הקקאו"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],he_IL:["דאו ג'ונס מדד סחורות האנרגיה"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],he_IL:["מדד דאו ג'ונס סחורות זהב"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],he_IL:["מדד דאו ג'ונס סחורות דגנים"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],he_IL:["מדד דאו ג 'ונס סחורות ניקל"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],he_IL:["מדד דאו ג'ונס סחורות קפה"]},e.exports["#DJ:DJCISB-symbol-description"]={
|
||||
en:["Dow Jones Commodity Index Sugar"],he_IL:["דאו ג'ונס מדד סחורות הסוכר"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],he_IL:["דאו ג 'ונס מדד סחורות כסף"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],he_IL:["מדד דאו ג'ונס ממוצע תחבורה"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],he_IL:["מדד דאו ג'ונס פחם ארה\"ב"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],he_IL:["מדד EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],he_IL:["אתריום קלאסיק / ביטקוין"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"],he_IL:["את'ריום קלאסיק / אירו"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],he_IL:["אתריום קלאסיק / דולר אמריקאי"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"],he_IL:["אתריום / ביטקוין"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"],he_IL:["אתריום/יורו"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],he_IL:["אתריום / לירה שטרלינג"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],he_IL:["אתריום / ין יפני"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],he_IL:["את'ריום / וון דרום קוריאני"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],he_IL:["את'ריום / בהט תאילנדי"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],he_IL:["אתריום / דולר אמריקאי"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],he_IL:["קרנות ארופאיות"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],he_IL:["יורו / דולר אוסטרלי"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],he_IL:["יורו / ריאל ברזילאי"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],he_IL:["יורו / דולר קנדי"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],he_IL:["יורו / פרנק שוויצרי"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],he_IL:["יורו / לירה שטרלינג"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],he_IL:["יורו / יין יפני"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],he_IL:["יורו / דולר ניו זילנד"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],he_IL:["מדד AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],he_IL:["מדד BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],he_IL:["מדד CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],he_IL:["יורו / רובל רוסי"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],he_IL:["יורו / רובל"]
|
||||
},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],he_IL:["יורו / קורונה שוודית"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],he_IL:["יורו / לירה טורקית"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],he_IL:["יורו / דולר אמריקאי"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],he_IL:["מדד Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"],he_IL:['Small Cap ארה"ב 2000']},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],he_IL:["מדד CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],he_IL:["מדד FTSE בורסת מלזיה KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],he_IL:["לירה שטרלינג / דולר אוסטרלי"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],he_IL:["לירה שטרלינג / דולר קנדי"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],he_IL:["לירה שטרלינג / פרנק שוויצרי"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],he_IL:["לירה שטרלינג / יורו"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],he_IL:["לירה שטרלינג / יין יפני"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],he_IL:["לירה שטרלינג / דולר ניו זילנד"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],he_IL:["לירה שטרלינג / רובל רוסי"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],he_IL:["לירה שטרלינג / דולר אמריקאי"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],he_IL:["מדד DAX גרמניה"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],he_IL:["אלפאבית (גוגל) דרגה א'"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],he_IL:["מדד האנג סנג"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],he_IL:['חוזים עתידיים על מדד דולר ארה"ב']},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],he_IL:["מדד IDX Composite"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={
|
||||
en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],he_IL:["אינדקס בורסת מלזיה KLCI"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],he_IL:["מדד טאייוואן משוקלל"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],he_IL:["איוטא / דולר אמריקאי"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],he_IL:["אינדקס Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],he_IL:["יין יפני / וואן דרום קוריאני"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],he_IL:["יין יפני / רובל רוסי"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],he_IL:["ין יפני / דולר אמריקאי"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],he_IL:["לייטקוין / ריאל ברזילאי"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],he_IL:["לייטקוין / ביטקוין"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],he_IL:["לייטקוין / דולר אמריקאי"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],he_IL:['לונה / ארה"ב דוֹלָר']},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],he_IL:["חוזים עתידיים על נפט ברנט"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"],he_IL:["מגנית"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],he_IL:["Microsoft Corp חברת מיקרוסופט"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],he_IL:['מדדנ נאסד"ק 100 ']},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"],he_IL:['מכשירי מיקרו מתקדמים בע"מ']},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],he_IL:["Alphabet Inc (גוגל) דירוג C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],he_IL:["Alphabet Inc (גוגל) דירוג A"]},e.exports["#NASDAQ:HGX-symbol-description"]={
|
||||
en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],he_IL:['איטריס בע"מ']},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],he_IL:["מדד Nasdaq Composite"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."],he_IL:["#NASDAQ:LCID-תיאור-סימול"]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"],he_IL:["Lands' End בע\"מ"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],he_IL:['מדד נאסד"ק 100']},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],he_IL:["מדד מוליכים למחצה פילדלפיה"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],he_IL:["נאו / דולר אמריקאי"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],he_IL:["גז טבעי (HenryHub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],he_IL:["מדד Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"],he_IL:['תעשיות טלפון הודיות בע"מ']},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],he_IL:["חוזים עתידיים אתנול ניו יורק"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],he_IL:["חוזים עתידיים על קקאו"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],he_IL:["חוזים עתידיים נפט גולמי"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],he_IL:["חוזים עתידיים על נמל NY ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],he_IL:["חוזים עתידיים על קפה"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],he_IL:["חוזים עתידיים גז טבעי"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],he_IL:["חוזים עתידיים פלדיום"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],he_IL:["חוזים עתידיים על פלטינום"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],he_IL:["חוזים עתידיים על בנזין RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],he_IL:["חוזים עתידיים כותנה"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],he_IL:["חוזים עתידיים E-mini גז טבעי"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},
|
||||
e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],he_IL:["חוזים עתידיים E-mini בנזין"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],he_IL:['אחזקות קבוצת עליבאבא בע"מ']},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"],he_IL:["פורד MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"],he_IL:["תעשיות חשמל הוואי"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],he_IL:["מדד NYSE Composite"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],he_IL:["מדד AMEX Composite"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],he_IL:["דולר ניו זילנד / יין יפני"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],he_IL:["דולר ניו זילנד / דולר אמריקאי"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],he_IL:["מדד OMX קופנהגן 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],he_IL:["מדד OMX הלסינקי 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],he_IL:["מדד OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],he_IL:["מדד OMX שטוקהולם 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],he_IL:["מדד OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],he_IL:["מדד OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],he_IL:["מדד QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],he_IL:["מדד RTS רוסיה"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],he_IL:["מדד Russel 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],he_IL:["מדד Russel 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],he_IL:["מדד Russel 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],he_IL:["חיבורים גלובליים חברה ציבורית"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"],he_IL:["חברת פורד מוטור"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],he_IL:["מדד שוק שוויצרי"]},e.exports["#SOLUSD-symbol-description"]={
|
||||
en:["Solana / U.S. Dollar"],he_IL:['סולנה / ארה"ב דוֹלָר']},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],he_IL:["מדד S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],he_IL:["מדד S&P 500 Value"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500 "]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],he_IL:["מדד Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."],he_IL:["#TADAWUL:2370-תיאור-סימול"]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],he_IL:["מדד כל המניות של Tadawul"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],he_IL:["מדד תל אביב 35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],he_IL:["אגרות חוב ממשלתיות קנדיות, 10 שנים"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות קנדיות בתשואה של 10 שנים"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],he_IL:["מדד דאקס"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],he_IL:["מדד מטבע דולר אמריקאי"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},
|
||||
e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],he_IL:["CFDs על זהב (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות באינדונזיה בתשואה של 10 שנים"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות בהודו בתשואה של 10 שנים"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות באיטליה 10 שנים"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],he_IL:['מדד נאסד"ק Composite']},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות של יפן בתשואה של 10 שנים"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],he_IL:["מדד מטבע הין היפני"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],he_IL:["מדד מחירי המניות של קוריאה"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],he_IL:['מדד נאסד"ק 100']},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],he_IL:["אינדקס Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],he_IL:["אגרות חוב ממשלתיות בהולנד, 10 שנים"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],he_IL:["איגרות חוב של ממשלת הולנד בתשואה של 10 שנים"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],he_IL:["איגרות חוב ממשלתיות בניו זילנד, 10 שנים"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות בניו זילנד בתשואה של 10 שנים"]},e.exports["#TVC:PALLADIUM-symbol-description"]={
|
||||
en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],he_IL:['אג"ח ממשלת פולין תשואה 5 שנים']},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],he_IL:['אג"ח ממשלת פולין תשואה 10 שנים']},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],he_IL:["מדד Top 40 דרום אפריקה"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],he_IL:["CFDs על כסף (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],he_IL:["מדד שוק שוויצרי"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],he_IL:["מדד Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות בטורקיה בתשואה של 10 שנים"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],he_IL:["CFDs על ברנט גולמי"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],he_IL:["מדד בריטניה 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],he_IL:['תשואת אג"ח ממשלתיות בארה"ב של 2 שנים']},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],he_IL:['איגרות חוב ממשלתיות בארה"ב בתשואה של 5 שנים']},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],he_IL:['תשואת אג"ח ממשלתיות בארה"ב של 10 שנים']},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],he_IL:["תנודתיות המדד S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],he_IL:["מדד טאייוואן משוקלל"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],he_IL:["TWITTER INC טוויטר"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],he_IL:["מדד FTSE 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],he_IL:["CFDs על נפט גולמי (ברנט)"]},
|
||||
e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],he_IL:['Uniswap / ארה"ב דוֹלָר']},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס הממוצע התעשייתי"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],he_IL:["דולר אמריקאי / דולר אוסטרלי"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],he_IL:["דולר אמריקאי / ריאל ברזילאי"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],he_IL:["דולר אמריקאי / דולר קנדי"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],he_IL:["דולר אמריקאי / פרנק שוויצרי"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],he_IL:["דולר אמריקאי / יואן סיני"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],he_IL:["דולר אמריקאי / קורנה דנמרק"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],he_IL:["דולר אמריקאי / אירו"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],he_IL:["דולר אמריקאי / לירה שטרלינג"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],he_IL:["דולר אמריקאי / דולר הונג קונג"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],he_IL:['דולר ארה"ב/פורינט הונגרי']},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],he_IL:["דולר אמריקאי / רופיה"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],he_IL:["דולר אמריקאי / שקל ישראלי"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],he_IL:["דולר אמריקאי / רופי הודי"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],he_IL:["דולר אמריקאי / יין יפני"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],he_IL:["דולר אמריקאי / וואן דרום קוראני"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],he_IL:["דולר אמריקאי / פאסו מקסיקני"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],he_IL:["דולר אמריקאי / דולר ניו זילנדי"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],he_IL:["דולר אמריקאי / פאסו פיליפיני"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],he_IL:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],he_IL:["דולר אמריקאי / רובל רוסי"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],he_IL:["דולר אמריקאי / רובל רוסי"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],he_IL:["דולר אמריקאי / קורונה שוודי"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],he_IL:["דולר אמריקאי / דולר סינגפור"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],he_IL:['דולר ארה"ב/בהט תאילנדי']},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],he_IL:["דולר אמריקאי / לירה טורקית"]},
|
||||
e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],he_IL:["דולר אמריקאי / ראנד דרום אפריקני"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],he_IL:["כסף / דולר אמריקאי"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],he_IL:["זהב / דולר אמריקאי"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],he_IL:["ביטקוין / דולר קנדי"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],he_IL:["מדד דאקס"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],he_IL:["מונרו / דולר אמריקאי"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],he_IL:["CFD'S על פלאדיום"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],he_IL:["פלטיניום / דולר אמריקאי"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],he_IL:["ריפל / ביטקוין"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],he_IL:["ריפל / אירו"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],he_IL:["XRP / דולר אמריקאי"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],he_IL:["זיקאש / דולר אמריקאי"]}}}]);
|
||||
e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],he_IL:["גל אליוט קומבו-משולש (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],he_IL:["אליפסה"]}},52788:e=>{e.exports={en:["Extended Line"],he_IL:["קו מורחב"]}},86905:e=>{e.exports={en:["Exchange"],he_IL:["בורסה"]}},19271:e=>{e.exports={en:["Existing pane above"],he_IL:["חלון הנמצא מעל"]}},46545:e=>{e.exports={en:["Existing pane below"],he_IL:["חלון הנמצא מתחת"]}},20138:e=>{e.exports={en:["Forecast"],he_IL:["תחזית"]}},2507:e=>{e.exports={en:["Feb"],he_IL:["פבר'"]}},59005:e=>{e.exports={en:["Fib Channel"],he_IL:["ערוץ פיבונאצ'י"]}},82330:e=>{e.exports={en:["Fib Circles"],he_IL:["מעגלי פיבונאצ'י"]}},55986:e=>{e.exports={en:["Fib Retracement"],he_IL:["תיקוני פיבונאצ'י"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],he_IL:["קשתות התנגדות מהירות פיבונאצ'י"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],he_IL:["מניפת התנגדות למהירות פיבונאצ'י"]}},39014:e=>{e.exports={en:["Fib Spiral"],he_IL:["ספירלת פיבונאצ'י"]}},30622:e=>{e.exports={en:["Fib Time Zone"],he_IL:["אזור זמן פיבונאצ'י"]}},85042:e=>{e.exports={en:["Fib Wedge"],he_IL:["טריז פיבונאצ'י"]}},33885:e=>{e.exports={en:["Flag"],he_IL:["דגל"]}},14600:e=>{e.exports={en:["Flag Mark"],he_IL:["סמן בדגל"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],he_IL:["שיא/שפל חלק"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],he_IL:["חלק שבור אינו חוקי"]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],he_IL:["מחקרים פונדמנטאליים אינם זמינים עוד על הגרף"]}},31561:e=>{e.exports={en:["Kolkata"],he_IL:["כלכותה"]}},54533:e=>{e.exports={en:["Kathmandu"],he_IL:["קטמנדו"]}},83490:e=>{e.exports={en:["Kagi"],he_IL:["גרף קאגי"]}},70913:e=>{e.exports={en:["Karachi"],he_IL:["קראצ'י"]}},76614:e=>{e.exports={en:["Kuwait"],he_IL:["כווית"]}},38561:e=>{e.exports={en:["Kuala Lumpur"],he_IL:["קואלה לומפור"]}},99906:e=>{e.exports={en:["HLC area"],he_IL:["איזור HLC"]}},886:e=>{e.exports={en:["HLC bars"],he_IL:["נרות גנס"]}},34491:e=>{e.exports={en:["Ho Chi Minh"],he_IL:["הו צ'י מין"]}},13459:e=>{e.exports={en:["Hollow candles"],he_IL:["נרות חלולים"]}},48861:e=>{e.exports={en:["Hong Kong"],he_IL:["הונג קונג"]}},79668:e=>{e.exports={en:["Honolulu"],he_IL:["הונולולו"]}},21795:e=>{e.exports={en:["Horizontal Line"],he_IL:["קו אופקי"]}},25487:e=>{e.exports={en:["Horizontal Ray"],he_IL:["קרן אופקית"]}},21928:e=>{e.exports={en:["Head and Shoulders"],he_IL:["ראש וכתפיים"]}},63876:e=>{e.exports={en:["Heikin Ashi"],he_IL:["הייקין אשי"]}},48203:e=>{e.exports={en:["Helsinki"],he_IL:["הלסינקי"]}},27298:e=>{e.exports={en:["Hide"],he_IL:["הסתר"]}},47074:e=>{e.exports={en:["Hide all"],he_IL:["הסתר הכל"]}},52563:e=>{e.exports={en:["Hide all drawings"],he_IL:["הסתר את כל כלי השרטוט"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],he_IL:["הסתר את כל השרטוטים והאינדיקטורים"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],he_IL:["הסתר את כל השרטוטים, האינדיקטורים, הפוזיציות והפקודות"]}},78525:e=>{e.exports={en:["Hide all indicators"],he_IL:["הסתר את כל האינדיקטורים"]}
|
||||
},42164:e=>{e.exports={en:["Hide all positions & orders"],he_IL:["הסתר את כל הפוזיציות והפקודות"]}},3217:e=>{e.exports={en:["Hide drawings"],he_IL:["הסתר שרטוטים"]}},97878:e=>{e.exports={en:["Hide events on chart"],he_IL:["הסתר אירועים על הגרף"]}},72351:e=>{e.exports={en:["Hide indicators"],he_IL:["הסתר אינדיקטורים"]}},28345:e=>{e.exports={en:["Hide marks on bars"],he_IL:["הסתר סימנים על הנרות"]}},92226:e=>{e.exports={en:["Hide positions & orders"],he_IL:["הסתר פוזיציות ופקודות"]}},78254:e=>{e.exports={en:["High"],he_IL:["גבוה"]}},98236:e=>{e.exports={en:["High-low"],he_IL:["גבוה-נמוך"]}},99479:e=>{e.exports={en:["High and low price labels"],he_IL:["תוויות מחיר גבוה ונמוך"]}},33766:e=>{e.exports={en:["High and low price lines"],he_IL:["קווי מחיר גבוה ונמוך"]}},69476:e=>{e.exports={en:["Highlighter"],he_IL:["מרקר מדגיש"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],he_IL:["ההיסטוגרמה גדולה מדי, בבקשה הגדל את {boldHighlightStart}גודל שורה{boldHighlightEnd} בחלון ההגדרות."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],he_IL:["ההיסטוגרמה גדולה מדי, נא הגדל את {boldHighlightStart}טיקים לשורה{boldHighlightEnd} בחלון ההגדרות."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],he_IL:["ההיסטוגרמה גדולה מדי, נא הקטן את {boldHighlightStart}גודל שורה{boldHighlightEnd} בחלון ההגדרות."]}},68065:e=>{e.exports={en:["Image"],he_IL:["תמונה"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],he_IL:["אינטרוולים הנמוכים מ-{resolution} לא נתמכים עבור {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],he_IL:["ביניים"]}},14285:e=>{e.exports={en:["Invalid Symbol"],he_IL:["סימול לא קיים"]}},52969:e=>{e.exports={en:["Invalid symbol"],he_IL:["סימול שגוי"]}},37189:e=>{e.exports={en:["Invert scale"],he_IL:["הפוך גרף"]}},89999:e=>{e.exports={en:["Indexed to 100"],he_IL:["צמוד ל-100"]}},46850:e=>{e.exports={en:["Indicators value labels"],he_IL:["תוויות ערך של אינדיקטורים"]}},54418:e=>{e.exports={en:["Indicators name labels"],he_IL:["שמות תוויות של אינדיקטורים"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],he_IL:["אינדיקטורים, מדדים ואסטרטגיות. הקש על קו נטוי"]}},15992:e=>{e.exports={en:["Info Line"],he_IL:["קו מידע"]}},87829:e=>{e.exports={en:["Insert indicator"],he_IL:["הוסף אינדיקטור"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],he_IL:["קילשון פנימי"]}},37913:e=>{e.exports={en:["Icon"],he_IL:["אייקון"]}},78326:e=>{e.exports={en:["Istanbul"],he_IL:["איסטנבול"]}},39585:e=>{e.exports={en:["Johannesburg"],he_IL:["יוהנסבורג"]}},14995:e=>{e.exports={en:["Jakarta"],he_IL:["ג'קרטה"]}},62310:e=>{e.exports={en:["Jan"],he_IL:["ינו'"]}},36057:e=>{e.exports={en:["Jerusalem"],he_IL:["ירושלים"]}},53786:e=>{e.exports={en:["Jul"],he_IL:["יול'"]}},429:e=>{e.exports={en:["Jun"],he_IL:["יונ'"]}},
|
||||
67560:e=>{e.exports={en:["Juneau"],he_IL:["ג'ונו"]}},62329:e=>{e.exports={en:["On the left"],he_IL:["משמאל"]}},55813:e=>{e.exports={en:["On the right"],he_IL:["מימין"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],he_IL:["רק אינטרוולי זמן של {availableResolutions} נתמכים עבור {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],he_IL:["אופס!"]}},51221:e=>{e.exports={en:["Object Tree"],he_IL:["עץ אובייקטים"]}},12179:e=>{e.exports={en:["Oct"],he_IL:["אוק'"]}},16610:e=>{e.exports={en:["Open"],he_IL:["פתיחה"]}},27884:e=>{e.exports={en:["Open layout. Press period"],he_IL:["פתח פריסה. פרק זמן לחיצה"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],he_IL:["נמוך"]}},51077:e=>{e.exports={en:["Lock"],he_IL:["נעל"]}},79777:e=>{e.exports={en:["Lock/unlock"],he_IL:["פתח/סגור"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],he_IL:["נעל קו סמן אנכי לפי זמן"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],he_IL:["נעל יחס מחיר לנר"]}},16170:e=>{e.exports={en:["Logarithmic"],he_IL:["לוגריתמי"]}},19439:e=>{e.exports={en:["London"],he_IL:["לונדון"]}},74832:e=>{e.exports={en:["Long Position"],he_IL:["עסקת לונג"]}},28733:e=>{e.exports={en:["Los Angeles"],he_IL:["לוס אנג'לס"]}},85924:e=>{e.exports={en:["Label Down"],he_IL:["תווית למטה"]}},52402:e=>{e.exports={en:["Label Up"],he_IL:["תווית למעלה"]}},5119:e=>{e.exports={en:["Labels"],he_IL:["תוויות"]}},19931:e=>{e.exports={en:["Lagos"],he_IL:["לאגוס"]}},63815:e=>{e.exports={en:["Last day change"],he_IL:["שינוי יום אחרון"]}},59444:e=>{e.exports={en:["Lima"],he_IL:["לימה"]}},3554:e=>{e.exports={en:["Line"],he_IL:["קו"]}},9394:e=>{e.exports={en:["Line with markers"],he_IL:["קו עם סמנים"]}},43588:e=>{e.exports={en:["Line break"],he_IL:["מקטע קו"]}},56982:e=>{e.exports={en:["Lines"],he_IL:["קווים"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],he_IL:["קישור לתמונת הגרף שהועתק ללוח {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],he_IL:["ליסבון"]}},81038:e=>{e.exports={en:["Luxembourg"],he_IL:["לוקסמבורג"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],he_IL:["הזז את הנקודה למיקום העוגן ולאחר מכן הקש כדי למקם"]}},35049:e=>{e.exports={en:["Move to"],he_IL:["הזז ל.."]}},26493:e=>{e.exports={en:["Move scale to left"],he_IL:["הזז קנה מידה לשמאל"]}},40789:e=>{e.exports={en:["Move scale to right"],he_IL:["הזז קנה מידה לימין"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],he_IL:["קילשון שיף מותאם"]}},93907:e=>{e.exports={en:["More settings"],he_IL:["הגדרות נוספות"]}},64039:e=>{e.exports={en:["Moscow"],he_IL:["מוסקבה"]}},52066:e=>{e.exports={en:["Madrid"],he_IL:["מדריד"]}},38365:e=>{e.exports={en:["Malta"],he_IL:["מלטה"]}},48991:e=>{e.exports={en:["Manila"],he_IL:["מנילה"]}},92767:e=>{e.exports={en:["Mar"],he_IL:["מרץ"]}},73332:e=>{e.exports={en:["Mexico City"],he_IL:["מקסיקו סיטי"]}},88314:e=>{e.exports={en:["Merge all scales into one"],he_IL:["מזג את כל סולמות המחיר לאחד"]}},54215:e=>{e.exports={en:["Mixed"],he_IL:["מעורב"]}},
|
||||
24866:e=>{e.exports={en:["Micro"],he_IL:["מיקרו"]}},87957:e=>{e.exports={en:["Millennium"],he_IL:["מילניום"]}},14724:e=>{e.exports={en:["Minuette"],he_IL:["מינוט (Minuette)"]}},78273:e=>{e.exports={en:["Minuscule"],he_IL:["זעיר"]}},9865:e=>{e.exports={en:["Muscat"],he_IL:["מוסקט"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"],he_IL:["אין כאן נתונים"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],he_IL:["ללא קנה מידה (מסך-מלא)"]}},9140:e=>{e.exports={en:["No sync"],he_IL:["אין סנכרון"]}},50910:e=>{e.exports={en:["No volume data"],he_IL:["אין נתוני נפח"]}},99024:e=>{e.exports={en:["No, keep them"],he_IL:["לא, השאר אותם"]}},94389:e=>{e.exports={en:["Note"],he_IL:["הערה"]}},26899:e=>{e.exports={en:["Nov"],he_IL:["נוב'"]}},67891:e=>{e.exports={en:["Norfolk Island"],he_IL:["אי נורפולק"]}},40977:e=>{e.exports={en:["Nairobi"],he_IL:["ניירובי"]}},40544:e=>{e.exports={en:["New York"],he_IL:["ניו יורק"]}},66103:e=>{e.exports={en:["New Zealand"],he_IL:["ניו זילנד"]}},15512:e=>{e.exports={en:["New pane above"],he_IL:["חלון חדש מעל"]}},52160:e=>{e.exports={en:["New pane below"],he_IL:["חלון חדש מתחת"]}},94600:e=>{e.exports={en:["Nicosia"],he_IL:["ניקוסיה"]}},73013:e=>{e.exports={en:["Something went wrong"],he_IL:["משהו השתבש"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],he_IL:["משהו השתבש בעת יצירת האינדיקטור."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],he_IL:["משהו השתבש. בבקשה נסה שוב מאוחר יותר."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],he_IL:["שמור פריסת גרף חדשה"]}},76266:e=>{e.exports={en:["Save as"],he_IL:["שמור בשם"]}},55502:e=>{e.exports={en:["San Salvador"],he_IL:["סן סלבדור"]}},30231:e=>{e.exports={en:["Santiago"],he_IL:["סנטיאגו"]}},91912:e=>{e.exports={en:["Sao Paulo"],he_IL:["סאו פאולו"]}},43931:e=>{e.exports={en:["Scale currency"],he_IL:["קנה מידה של מטבע"]}},43758:e=>{e.exports={en:["Scale price chart only"],he_IL:["הרחב סולם מחיר בלבד"]}},40012:e=>{e.exports={en:["Scale unit"],he_IL:["יחידת קנה מידה"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],he_IL:["קילשון שיף"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],he_IL:["הסקריפט לט יתעדכן אם תעזוב את הדף."]}},32514:e=>{e.exports={en:["Settings"],he_IL:["הגדרות"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],he_IL:["הפיסקה של החלק השני אינו חוקי."]}},75594:e=>{e.exports={en:["Security info"],he_IL:["מידע על הסימול"]}},21973:e=>{e.exports={en:["Send to back"],he_IL:["שלח לאחור"]}},71179:e=>{e.exports={en:["Send backward"],he_IL:["שלח אחורה"]}},26820:e=>{e.exports={en:["Seoul"],he_IL:["סיאול"]}},6816:e=>{e.exports={en:["Sep"],he_IL:["ספט'"]}},94031:e=>{e.exports={en:["Session"],he_IL:["שעות מסחר"]}},83298:e=>{e.exports={en:["Session volume profile"],he_IL:["פרופיל סשן ווליום"]}},66707:e=>{e.exports={en:["Session breaks"],he_IL:["הפרד ימי מסחר"]}},1852:e=>{e.exports={en:["Shanghai"],he_IL:["שנחאי"]}},8075:e=>{e.exports={en:["Short Position"],he_IL:["עסקת שורט"]}},98334:e=>{e.exports={en:["Show"],
|
||||
he_IL:["הצג"]}},85891:e=>{e.exports={en:["Show all drawings"],he_IL:["הצג את כל השרטוטים"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],he_IL:["הצג את כל השרטוטים והאינדיקטורים"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],he_IL:["הצג את כל השרטוטים, האינדיקטורים, הפוזיציות והפקודות"]}},98753:e=>{e.exports={en:["Show all indicators"],he_IL:["הצג את כל האינדיקטורים"]}},55418:e=>{e.exports={en:["Show all ideas"],he_IL:["הצג את כל הרעיונות"]}},20506:e=>{e.exports={en:["Show all positions & orders"],he_IL:["הצג את כל הפוזיציות והפקודות"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],he_IL:["הצג לחצן חוזה רציף"]}},81465:e=>{e.exports={en:["Show contract expiration"],he_IL:["הצג את תפוגת החוזה"]}},29449:e=>{e.exports={en:["Show dividends"],he_IL:["הצג דיבידנדים"]}},37113:e=>{e.exports={en:["Show earnings"],he_IL:['הצג דו"חות רווחים']}},10261:e=>{e.exports={en:["Show ideas of followed users"],he_IL:["הצג רעיונות של משתמשים עוקבים"]}},62986:e=>{e.exports={en:["Show latest news"],he_IL:["הצג את החדשות העדכניות ביותר"]}},44020:e=>{e.exports={en:["Show my ideas only"],he_IL:["הצג את הרעיונות שלי בלבד"]}},50849:e=>{e.exports={en:["Show splits"],he_IL:["הצג פיצולי מניות"]}},67751:e=>{e.exports={en:["Signpost"],he_IL:["סימן דרך"]}},77377:e=>{e.exports={en:["Singapore"],he_IL:["סינגפור"]}},39090:e=>{e.exports={en:["Sine Line"],he_IL:["קו סינוס"]}},66205:e=>{e.exports={en:["Square"],he_IL:["רבוע"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],he_IL:["חריגה ממגבלת המחקר: {number} מחקרים בכל פריסה.\nבבקשה, הסר מס' מחקרים."]}},92516:e=>{e.exports={en:["Style"],he_IL:["עיצוב"]}},61507:e=>{e.exports={en:["Stack on the left"],he_IL:["תאגד לשמאל"]}},97800:e=>{e.exports={en:["Stack on the right"],he_IL:["תאגד לימין"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],he_IL:["התחל להשתמש במצב ניווט מקלדת. הקש על {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],he_IL:["הישאר במצב ציור"]}},69217:e=>{e.exports={en:["Step line"],he_IL:["קו צעד"]}},43114:e=>{e.exports={en:["Sticker"],he_IL:["סטיקר"]}},86716:e=>{e.exports={en:["Stockholm"],he_IL:["שטוקהולם"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"],he_IL:["סאבמינוט (Subminuette)"]}},67948:e=>{e.exports={en:["Supercycle"],he_IL:["סופר גל"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],he_IL:["עבור אל {resolution}"]}},31622:e=>{e.exports={en:["Sydney"],he_IL:["סינדי"]}},70963:e=>{e.exports={en:["Symbol Error"],he_IL:["שגיאת סימול"]}},32390:e=>{e.exports={en:["Symbol name label"],he_IL:["תווית שם הסימול"]}},10127:e=>{e.exports={en:["Symbol last price label"],he_IL:["תווית ערך אחרון לסימול"]}},39079:e=>{e.exports={en:["Sync globally"],he_IL:["סנכרון גלובלי"]}},46607:e=>{e.exports={en:["Sync in layout"],he_IL:["סנכרון בפריסה"]}},76519:e=>{e.exports={en:["Point & figure"],
|
||||
he_IL:["גרף Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"],he_IL:["קווים מחוברים"]}},371:e=>{e.exports={en:["Path"],he_IL:["נָתִיב"]}},59256:e=>{e.exports={en:["Parallel Channel"],he_IL:["ערוץ מקביל"]}},61879:e=>{e.exports={en:["Paris"],he_IL:["פריז"]}},35140:e=>{e.exports={en:["Paste"],he_IL:["הדבק"]}},6919:e=>{e.exports={en:["Percent"],he_IL:["אחוז"]}},24436:e=>{e.exports={en:["Perth"],he_IL:["פרת'"]}},14055:e=>{e.exports={en:["Phoenix"],he_IL:["פניקס"]}},34156:e=>{e.exports={en:["Pitchfan"],he_IL:["מניפת מחירים"]}},19634:e=>{e.exports={en:["Pitchfork"],he_IL:["קילשון"]}},86631:e=>{e.exports={en:["Pin"],he_IL:["הצמד"]}},33110:e=>{e.exports={en:["Pin to new left scale"],he_IL:["הצמד לסולם חדש משמאל"]}},28280:e=>{e.exports={en:["Pin to new right scale"],he_IL:["הצמד לסולם חדש מימין"]}},14115:e=>{e.exports={en:["Pin to left scale"],he_IL:["הצמד לסולם השמאלי"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],he_IL:["הצמד לסולם השמאלי (מוסתר)"]}},81054:e=>{e.exports={en:["Pin to right scale"],he_IL:["הצמד לסולם הימני"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],he_IL:["הצמד לסולם השמאלי (מוסתר)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],he_IL:["הצמד לסולם (עכשיו שמאל)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],he_IL:["הצמד לסולם (כעת ללא קנה מידה)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],he_IL:["הצמד לסולם (עכשיו ימין)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],he_IL:["הצמד לסולם מחיר (כעת {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],he_IL:["הצמד לסולם {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],he_IL:["הצמד לסולם {label} (מוסתר)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],he_IL:["צמוד לסולם השמאלי"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],he_IL:["צמוד לסולם השמאלי (מוסתר)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],he_IL:["צמוד לסולם מחיר ימין"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],he_IL:["הצמד לסולם השמאלי (מוסתר)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],he_IL:["צמוד לסולם {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],he_IL:["צמוד לסולם {label} (מוסתר)"]}},71566:e=>{e.exports={en:["Plus button"],he_IL:["כפתור פלוס"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],he_IL:["אנא תן לנו הרשאת כתיבה ללוח בדפדפן שלך או הקש על {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],he_IL:["פראג"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],he_IL:["לחץ לחיצה ממושכת על {key} תוך כדי הגדלה כדי לשמור על מיקום הגרף"]}},91282:e=>{e.exports={en:["Price Label"],he_IL:["תווית מחיר"]}},97512:e=>{e.exports={en:["Price Note"],he_IL:["הערת מחיר"]}},68941:e=>{e.exports={en:["Price Range"],he_IL:["טווח מחירים"]}},66123:e=>{e.exports={en:["Price format is invalid."],he_IL:["פורמט המחיר אינו חוקי."]}},72926:e=>{e.exports={en:["Price line"],he_IL:["קו מחיר"]}},59189:e=>{e.exports={
|
||||
en:["Primary"],he_IL:["ראשי"]}},75747:e=>{e.exports={en:["Projection"],he_IL:["הקרנה"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],he_IL:["פורסם בתאריך {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"],he_IL:["קטאר"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],he_IL:["חיפוש מהיר. הקש על {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],he_IL:["מלבן מסובב"]}},52961:e=>{e.exports={en:["Rome"],he_IL:["רומא"]}},50318:e=>{e.exports={en:["Ray"],he_IL:["קרן"]}},55169:e=>{e.exports={en:["Range"],he_IL:["טווח"]}},13386:e=>{e.exports={en:["Reykjavik"],he_IL:["רייקיאוויק"]}},26001:e=>{e.exports={en:["Rectangle"],he_IL:["מלבן"]}},48236:e=>{e.exports={en:["Redo"],he_IL:["בצע שוב"]}},2460:e=>{e.exports={en:["Regression Trend"],he_IL:["מגמת רגרסיה"]}},67410:e=>{e.exports={en:["Remove"],he_IL:["הסר"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],he_IL:["הסר את המדד הפיננסי הזה מהמועדפים"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],he_IL:["הסר אינדיקטור זה מהמועדפים"]}},86285:e=>{e.exports={en:["Remove {drawings}"],he_IL:["הסר {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],he_IL:["הסר {drawings} ו{indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],he_IL:["הסר {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],he_IL:["בחר שם חדש לפריסת הגרף"]}},88130:e=>{e.exports={en:["Renko"],he_IL:["גרף ראנקו"]}},75246:e=>{e.exports={en:["Reset chart view"],he_IL:["אפס תצוגת גרף"]}},88853:e=>{e.exports={en:["Reset points"],he_IL:["איפוס נקודות"]}},15332:e=>{e.exports={en:["Reset price scale"],he_IL:["אפס סקלת מחיר"]}},54170:e=>{e.exports={en:["Reset time scale"],he_IL:["אפס סולם זמן"]}},37974:e=>{e.exports={en:["Riyadh"],he_IL:["ריאד"]}},94022:e=>{e.exports={en:["Riga"],he_IL:["ריגה"]}},60630:e=>{e.exports={en:["Runtime error"],he_IL:["שגיאת זמן ריצה"]}},66719:e=>{e.exports={en:["Warning"],he_IL:["אזהרה"]}},5959:e=>{e.exports={en:["Warsaw"],he_IL:["ורשה"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"],he_IL:["טוקלאו"]}},69122:e=>{e.exports={en:["Tokyo"],he_IL:["טוקיו"]}},10095:e=>{e.exports={en:["Toronto"],he_IL:["טורונטו"]}},17981:e=>{e.exports={en:["Table"],he_IL:["טבלה"]}},11034:e=>{e.exports={en:["Taipei"],he_IL:["טייפה"]}},79995:e=>{e.exports={en:["Tallinn"],he_IL:["טאלין"]}},6686:e=>{e.exports={en:["Tehran"],he_IL:["טהרן"]}},93553:e=>{e.exports={en:["Template"],he_IL:["תבנית"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],he_IL:["ספק הנתונים אינו מספק נתוני נפח עבור סימול זה"]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],
|
||||
he_IL:["לא ניתן לטעון את התצוגה המקדימה של הפרסום. השבת את תוספי הדפדפן ונסה שוב."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],he_IL:["עיבוד הבקשה ארך יותר מדי זמן. ודא שיש לך חיבור אינטרנט יציב. אם הבעיה נמשכת, נסה להקטין את אינטרוול הזמן המבוקש."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],he_IL:["אין נתונים עבור התקופה ומסגרת הזמן שבחרת בגרף."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],he_IL:["קובץ זה גדול מדי. הגודל המקסימלי הוא {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],he_IL:["מתנד זה אינו יכול להיות מיושם על מתנד נוסף"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],he_IL:["סקריפט זה מכיל שגיאה. אנא צור קשר עם המחבר שלו."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],he_IL:["הסקריפט הזה מיועד להזמנה בלבד. כדי לבקש גישה, אנא צור קשר עם המחבר."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],he_IL:["סימול זה זמין רק ב {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],he_IL:["תבנית Three Drives"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],he_IL:["אינטרוולים מבוססי סימון אינם זמינים עבור {ticker}."]}},12806:e=>{e.exports={en:["Time"],he_IL:["זמן"]}},20909:e=>{e.exports={en:["Time zone"],he_IL:["אזור זמן"]}},46852:e=>{e.exports={en:["Time Cycles"],he_IL:["מחזורי זמן"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],he_IL:["הזדמנות מחיר זמן"]}},66823:e=>{e.exports={en:["Trade"],he_IL:["מסחר"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],he_IL:["Tradingview היא פלטפורמה אינטראקטיבית ויש לה פקודות לשימוש עם קורא מסך. להלן רשימה של פקודות מקלדת הזמינות לאינטראקציה בפלטפורמה"]}},35757:e=>{e.exports={en:["Trend Angle"],he_IL:["זוית מגמה"]}},97339:e=>{e.exports={en:["Trend Line"],he_IL:["קו מגמה"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],he_IL:["שלוחת פיבונאצ'י מבוססת מגמה"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],he_IL:["זמן פיבונאצ'י מבוסס מגמה"]}},1671:e=>{e.exports={en:["Triangle"],he_IL:["משולש"]}},76152:e=>{e.exports={en:["Triangle Down"],he_IL:["משולש למטה"]}},90148:e=>{e.exports={en:["Triangle Pattern"],he_IL:["תבנית משולש"]}},21236:e=>{e.exports={en:["Triangle Up"],he_IL:["משולש למעלה"]}},21007:e=>{e.exports={en:["Tunis"],he_IL:["תוניס"]}},1833:e=>{e.exports={en:["UTC"],he_IL:["אזור זמן"]}},14804:e=>{e.exports={en:["Undo"],he_IL:["בטל"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],he_IL:["שגיאה בלתי צפויה במצב בקטסטינג עמוק. צור קשר עם התמיכה למידע נוסף."]}},15432:e=>{
|
||||
e.exports={en:["Units"],he_IL:["יחידות"]}},11768:e=>{e.exports={en:["Unknown error"],he_IL:["שגיאה לא ידועה"]}},99894:e=>{e.exports={en:["Unlock"],he_IL:["בטל נעילה"]}},75546:e=>{e.exports={en:["Unsupported interval"],he_IL:["אינטרוול לא נתמך"]}},8580:e=>{e.exports={en:["User-defined error"],he_IL:["שגיאה בהגדרת משתמש"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],he_IL:["טווח קבוע של פרופיל ווליום"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],he_IL:["אינדיקטור פרופיל ווליום זמין רק בתוכניות המשודרגות שלנו."]}},93722:e=>{e.exports={en:["Volume candles"],he_IL:["נרות ווליום"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],he_IL:["נתוני נפח אינם מסופקים בתוכנית הנתונים BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],he_IL:["ווליום footprint"]}},32838:e=>{e.exports={en:["Vancouver"],he_IL:["ונקובר"]}},29535:e=>{e.exports={en:["Vertical Line"],he_IL:["קו אנכי"]}},23160:e=>{e.exports={en:["Vienna"],he_IL:["וינה"]}},60534:e=>{e.exports={en:["Vilnius"],he_IL:["וילנה"]}},40091:e=>{e.exports={en:["Visibility"],he_IL:["ניראות"]}},54853:e=>{e.exports={en:["Visibility on intervals"],he_IL:["נראות אינטרוולים"]}},58302:e=>{e.exports={en:["Visible on tap"],he_IL:["מוצג בהקשה"]}},10309:e=>{e.exports={en:["Visible on mouse over"],he_IL:["הצג כשהעכבר מעל"]}},4077:e=>{e.exports={en:["Visual order"],he_IL:["סדר ויזואלי"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],he_IL:["תבנית XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],he_IL:["לא ניתן להציג את מסגרת הזמן של פיבוט זה ברזולוציה הזו"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],he_IL:["יש לך שרטוטים נעולים על הסימול הזה. האם אתה רוצה להסיר גם את השרטוטים הנעולים?"]}},53168:e=>{e.exports={en:["Yangon"],he_IL:["יאנגון"]}},93123:e=>{e.exports={en:["Yes, remove them"],he_IL:["כן, הסר אותם"]}},62859:e=>{e.exports={en:["Zurich"],he_IL:["ציריך"]}},47977:e=>{e.exports={en:["change Elliott degree"],he_IL:["שנה את רמת אליוט"]}},61557:e=>{e.exports={en:["change no overlapping labels"],he_IL:["אין לשנות תוויות חופפות"]}},76852:e=>{e.exports={en:["change average close price label visibility"],he_IL:["שנה את נראות תווית המחיר הממוצעת"]}},1022:e=>{e.exports={en:["change average close price line visibility"],he_IL:["שנה את הנראות הממוצעת של קו מחיר קרוב"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],he_IL:["שנה נראות של תוויות ביקוש והיצע bid/ask"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],he_IL:["שנה נראות שורות היצע וביקוש bid/ask"]}},32302:e=>{e.exports={en:["change currency"],he_IL:["שנה מטבע"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],he_IL:["שנה פריסת גרף ל-{title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],he_IL:["שנה נראות מתג החלפה לחוזה רציף"]}},39383:e=>{e.exports={
|
||||
en:["change countdown to bar close visibility"],he_IL:["שנה את נראות הספירה לאחור לסגירת הבר"]}},16979:e=>{e.exports={en:["change date range"],he_IL:["שנה טווח תאריכים"]}},53929:e=>{e.exports={en:["change dividends visibility"],he_IL:["שנה את נראות הדיבידנדים"]}},6119:e=>{e.exports={en:["change events visibility on chart"],he_IL:["שנה את נראות האירועים בגרף"]}},6819:e=>{e.exports={en:["change earnings visibility"],he_IL:["שנה את נראות הרווחים"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],he_IL:["שינוי נראות תפוגה של חוזה עתידי"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],he_IL:["לשנות את הנראות של תוויות מחיר גבוה ונמוך"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],he_IL:["לשנות את נראות קווי המחירים הגבוהים והנמוכים"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],he_IL:["שנה נראות של אינדיקטורים ושם תוויות"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],he_IL:["שנה נראות תוויות ערך של אינדיקטורים"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],he_IL:["שנה את נראות העדכונים האחרונים"]}},88849:e=>{e.exports={en:["change linking group"],he_IL:["שנה קבוצת קישור"]}},14691:e=>{e.exports={en:["change pane height"],he_IL:["לשנות את גובה החלונית"]}},96379:e=>{e.exports={en:["change plus button visibility"],he_IL:["שנה נראות של לחצן הפלוס"]}},76660:e=>{e.exports={en:["change point"],he_IL:["שנה נקודה"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],he_IL:["שנה את נראות תווית מחיר פרה/פןסט מארקט"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],he_IL:["שנה את נראות קווי מחיר פרה/פןסט מארקט"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],he_IL:["שנה את הנראות של קו סגירת מחיר הקודם"]}},8662:e=>{e.exports={en:["change price line visibility"],he_IL:["שנה את קו המחיר"]}},2509:e=>{e.exports={en:["change price to bar ratio"],he_IL:["שנה את יחס המחיר לבר"]}},32829:e=>{e.exports={en:["change resolution"],he_IL:["שנה רזולוציה"]}},35400:e=>{e.exports={en:["change symbol"],he_IL:["שנה סימול"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],he_IL:["שנה את נראות תוויות הסימולים"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],he_IL:["שנה את נראות סימול הערך האחרון"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],he_IL:["שנה נראות ערך קרוב של סימול קודם"]}},87041:e=>{e.exports={en:["change session"],he_IL:["שנה סשן"]}},38413:e=>{e.exports={en:["change session breaks visibility"],he_IL:["שנה את נראות הפסקות הסשן"]}},49965:e=>{e.exports={en:["change series style"],he_IL:["שנה את סגנון הסדרה"]}},47474:e=>{e.exports={en:["change splits visibility"],he_IL:["שנה את נראות הפיצולים/ספליט"]}},20137:e=>{e.exports={en:["change timezone"],he_IL:["שנה אזור זמן"]}},85975:e=>{e.exports={en:["change unit"],he_IL:["שנה יחידה"]}},1924:e=>{e.exports={en:["change visibility"],he_IL:["שנה את הנראות"]}},84331:e=>{e.exports={
|
||||
en:["change visibility at current interval"],he_IL:["לשנות את הנראות באינטרוול הנוכחי"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],he_IL:["לשנות את הנראות באינטרוול הנוכחי ומעלה"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],he_IL:["שנה נראות באינטרוול הנוכחי ומטה"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],he_IL:["לשנות את הנראות בכל האינטרוולים"]}},94566:e=>{e.exports={en:["charts by TradingView"],he_IL:["הגרפים באדיבות TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],he_IL:["העתק כלי-קו"]}},46219:e=>{e.exports={en:["create line tools group"],he_IL:["צור קבוצת כלים לקווים"]}},95394:e=>{e.exports={en:["create line tools group from selection"],he_IL:["צור קבוצת כלי שורה מהבחירה"]}},12898:e=>{e.exports={en:["create {tool}"],he_IL:["צור {tool}"]}},94227:e=>{e.exports={en:["cut sources"],he_IL:["חתוך מקורות"]}},11500:e=>{e.exports={en:["cut {title}"],he_IL:["חתוך {title}"]}},63869:e=>{e.exports={en:["anchor objects"],he_IL:["אובייקטים מעוגנים"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],he_IL:["הוסף כלי קו {lineTool} לקבוצה {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],he_IL:["הוסף כלי(ם) קו לקבוצה {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],he_IL:["הוסף מדד פיננסי זה לפריסה שלמה"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],he_IL:["הוסף אינדיקטור זה לפריסה שלמה"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],he_IL:["הוסף אסטרטגיה זו לפריסה שלמה"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],he_IL:["הוסף סימול זה לפריסה שלמה"]}},4128:e=>{e.exports={en:["align to 45 degrees"],he_IL:["יישר ל-45 מעלות"]}},68231:e=>{e.exports={en:["apply chart theme"],he_IL:["החל את נושא הגרף"]}},99551:e=>{e.exports={en:["apply all chart properties"],he_IL:["החל את כל מאפייני הגרף"]}},89720:e=>{e.exports={en:["apply drawing template"],he_IL:["החל תבנית שרטוט"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],he_IL:["החל את ברירת המחדל של היצרן על מקורות נבחרים"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],he_IL:["להחיל אינדיקטורים על כל הפריסה"]}},69604:e=>{e.exports={en:["apply study template {template}"],he_IL:["החל תבנית לימודית {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],he_IL:["להחיל נושא של סרגלי כלים"]}},1979:e=>{e.exports={en:["bring group {title} forward"],he_IL:["הבא את הקבוצה {title} קדימה"]}},53159:e=>{e.exports={en:["bring {title} to front"],he_IL:["הבא את {title} לחזית"]}},41966:e=>{e.exports={en:["bring {title} forward"],he_IL:["הבא {title} קדימה"]}},44676:e=>{e.exports={en:["by TradingView"],he_IL:["מאת TradingView"]}},58850:e=>{e.exports={en:["date range lock"],he_IL:["נעילת טווח תאריכים"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],he_IL:["אל תכלול כלי קווים מהקבוצה {group}"]}},13017:e=>{e.exports={en:["hide {title}"],he_IL:["הסתר {title}"]}},62249:e=>{e.exports={
|
||||
en:["hide marks on bars"],he_IL:["הסתר סימנים על הנרות"]}},56558:e=>{e.exports={en:["interval lock"],he_IL:["נעילת אינטרוול"]}},6830:e=>{e.exports={en:["invert scale"],he_IL:["הפוך גרף"]}},48818:e=>{e.exports={en:["insert {title}"],he_IL:["הוסף {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],he_IL:["הוסף {title} אחרי {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],he_IL:["הכנס {title} אחרי {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],he_IL:["הכנס {title} לפני {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],he_IL:["הכנס {title} לפני {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],he_IL:["טען תבנית שרטוט ברירת מחדל"]}},62011:e=>{e.exports={en:["loading..."],he_IL:["טוען..."]}},76104:e=>{e.exports={en:["lock {title}"],he_IL:["נעל {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],he_IL:["נעל קבוצה {group}"]}},18942:e=>{e.exports={en:["lock objects"],he_IL:["נעל אובייקטים"]}},98277:e=>{e.exports={en:["move"],he_IL:["הזז"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],he_IL:["הזז {title} לסולם חדש משמאל"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],he_IL:["העבר את {title} לסולם ימני חדש"]}},64077:e=>{e.exports={en:["move all scales to left"],he_IL:["הזז את כל סולמות המחיר לשמאל"]}},19013:e=>{e.exports={en:["move all scales to right"],he_IL:["הזז את כל סולמות המחיר לימין"]}},52510:e=>{e.exports={en:["move drawing(s)"],he_IL:["העבר שירטוט(ים)"]}},79209:e=>{e.exports={en:["move left"],he_IL:["הזז לשמאל"]}},60114:e=>{e.exports={en:["move right"],he_IL:["הזז לימין"]}},44854:e=>{e.exports={en:["move scale"],he_IL:["הזז סולם מחיר"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],he_IL:["הפוך את {title} ללא קנה מידה (מסך מלא)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],he_IL:["הפוך את הקבוצה {group} לבלתי נראית"]}},45987:e=>{e.exports={en:["make group {group} visible"],he_IL:["הפוך את הקבוצה {group} לגלויה"]}},78055:e=>{e.exports={en:["merge down"],he_IL:["מזג למטה"]}},41866:e=>{e.exports={en:["merge to pane"],he_IL:["מזג לחלונית"]}},52458:e=>{e.exports={en:["merge up"],he_IL:["מזג למעלה"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"],he_IL:["קנה מידה מחיר"]}},63796:e=>{e.exports={en:["scale price chart only"],he_IL:["הרחב סולם מחיר בלבד"]}},70771:e=>{e.exports={en:["scale time"],he_IL:["זמן קנה מידה"]}},42070:e=>{e.exports={en:["scroll"],he_IL:["גלול"]}},87840:e=>{e.exports={en:["scroll time"],he_IL:["זמן גלילה"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],he_IL:["הגדר את אסטרטגיית בחירת סולם המחירים ל-{title}"]}},40962:e=>{e.exports={en:["send {title} backward"],he_IL:["שלח {title} לאחור"]}},5005:e=>{e.exports={en:["send {title} to back"],he_IL:["שלח את {title} לאחור"]}},69546:e=>{e.exports={en:["send group {title} backward"],he_IL:["שלח את הקבוצה {title} לאחור"]}},63934:e=>{e.exports={
|
||||
en:["share line tools globally"],he_IL:["שתף כלי קו ברחבי העולם"]}},90221:e=>{e.exports={en:["share line tools in layout"],he_IL:["שיתוף כלי קו בפריסה"]}},13336:e=>{e.exports={en:["show all ideas"],he_IL:["הצג את כל הרעיונות"]}},91395:e=>{e.exports={en:["show ideas of followed users"],he_IL:["הצג רעיונות של משתמשים במעקב"]}},57460:e=>{e.exports={en:["show my ideas only"],he_IL:["הצג את הרעיונות שלי בלבד"]}},4114:e=>{e.exports={en:["stay in drawing mode"],he_IL:["הישאר במצב שרטוט"]}},3350:e=>{e.exports={en:["stop syncing drawing"],he_IL:["הפסק לסנכרן שרטוט"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],he_IL:["הפסק לסנכרן כלי(ם) קו"]}},53278:e=>{e.exports={en:["symbol lock"],he_IL:["נעילת סימול"]}},91677:e=>{e.exports={en:["sync time"],he_IL:["סנכרן זמן"]}},3140:e=>{e.exports={en:["powered by"],he_IL:['מופעל ע"י']}},92800:e=>{e.exports={en:["powered by TradingView"],he_IL:["מופעל על ידי Tradingview"]}},62192:e=>{e.exports={en:["paste drawing"],he_IL:["הדבק שרטוט"]}},1064:e=>{e.exports={en:["paste indicator"],he_IL:["הדבק אינדיקטור"]}},57010:e=>{e.exports={en:["paste {title}"],he_IL:["הדבק {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],he_IL:["הצמד לסולם השמאלי"]}},7495:e=>{e.exports={en:["pin to right scale"],he_IL:["הצמד לסולם השמאלי"]}},81566:e=>{e.exports={en:["pin to scale {label}"],he_IL:["הצמד לסולם {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],he_IL:["ארגן מחדש את החלונות"]}},60806:e=>{e.exports={en:["remove all indicators"],he_IL:["הסר את כל האינדיקטורים"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],he_IL:["הסר את כל האינדיקטורים וכלי השרטוט"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],he_IL:["הסר כלי קו ריקים שלא נבחרו"]}},30538:e=>{e.exports={en:["remove drawings"],he_IL:["הסר שרטוטים"]}},1193:e=>{e.exports={en:["remove drawings group"],he_IL:["הסר את קבוצת השרטוטים"]}},38199:e=>{e.exports={en:["remove line data sources"],he_IL:["להסיר קו מקורות נתונים"]}},93333:e=>{e.exports={en:["remove pane"],he_IL:["הסר חלונית"]}},94543:e=>{e.exports={en:["remove {title}"],he_IL:["הסר {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],he_IL:["הסרת קבוצת כלי קו {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],he_IL:["שנה שם קבוצה {group} ל- {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],he_IL:["אפס גדלי פריסה"]}},3323:e=>{e.exports={en:["reset scales"],he_IL:["אפס קנה מידה"]}},17336:e=>{e.exports={en:["reset time scale"],he_IL:["אפס סולם זמן"]}},47418:e=>{e.exports={en:["resize layout"],he_IL:["שנה את גודל הפריסה"]}},85815:e=>{e.exports={en:["restore defaults"],he_IL:["שחזר ברירות מחדל"]}},96881:e=>{e.exports={en:["restore study defaults"],he_IL:["לשחזר את ברירת המחדל של המחקר"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],he_IL:["החלף מצב חלונית מקסימלית"]}},42240:e=>{e.exports={en:["toggle auto scale"],he_IL:["החלף קנה מידה אוטומטי"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],he_IL:["החלף מצב חלונית מכווצת"]}},24736:e=>{e.exports={
|
||||
en:["toggle indexed to 100 scale"],he_IL:["החלף באינדקס ל-100 קנה מידה"]}},49695:e=>{e.exports={en:["toggle lock scale"],he_IL:["החלף נעילת סולם"]}},49403:e=>{e.exports={en:["toggle log scale"],he_IL:["החלף סקאלה לוגריתמית"]}},98994:e=>{e.exports={en:["toggle percentage scale"],he_IL:["הפעל/כבה קנה מידה באחוזים"]}},80688:e=>{e.exports={en:["toggle regular scale"],he_IL:["החלף קנה מידה רגיל"]}},46807:e=>{e.exports={en:["track time"],he_IL:["עקוב אחר הזמן"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],he_IL:["כבה את שיתוף כלי הקו"]}},99234:e=>{e.exports={en:["unanchor objects"],he_IL:["אובייקטים לא מעוגנים"]}},23230:e=>{e.exports={en:["unlock objects"],he_IL:["פתח אובייקטים"]}},74590:e=>{e.exports={en:["unlock group {group}"],he_IL:["בטל את נעילת הקבוצה {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],he_IL:["בטל את נעילת {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],he_IL:["בטל את המיזוג לחלונית התחתונה החדשה"]}},79443:e=>{e.exports={en:["unmerge up"],he_IL:["בטל מיזוג למעלה"]}},46453:e=>{e.exports={en:["unmerge down"],he_IL:["בטל מיזוג למטה"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],he_IL:["אוי לא! סוג הגרף {chartStyle} אינו זמין כעת עבור אינטרוולים מבוססי סימון."]}},41643:e=>{e.exports={en:["{count} bars"],he_IL:["נרות {count}"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],he_IL:["{symbol} פיננסים באדיבות TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],he_IL:["{userName} פורסם ב-{customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"],he_IL:["זום"]}},49856:e=>{e.exports={en:["zoom in"],he_IL:["הגדל תצוגה"]}},73638:e=>{e.exports={en:["zoom out"],he_IL:["הקטן תצוגה"]}},41807:e=>{e.exports={en:["day","days"],he_IL:["יום","יומיים","ימים","ימים"]}},42328:e=>{e.exports={en:["hour","hours"],he_IL:["שעה","שעות","שעות","שעות"]}},98393:e=>{e.exports={en:["month","months"],he_IL:["חודש","חודשים","חודשים","חודשים"]}},78318:e=>{e.exports={en:["minute","minutes"],he_IL:["דקה","דקות","דקות","דקות"]}},33232:e=>{e.exports={en:["second","seconds"],he_IL:["שניה","שניות","שניות","שניות"]}},89937:e=>{e.exports={en:["range","ranges"],he_IL:["טווח","טווחים","טווחים","טווחים"]}},48898:e=>{e.exports={en:["week","weeks"],he_IL:["שבוע","שבועות","שבועות","שבועות"]}},11913:e=>{e.exports={en:["tick","ticks"],he_IL:["טיק","טיקים","טיקים","טיקים"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],he_IL:["שרטוט {amount}","שרטוטים {amount}","שרטוטים {amount}","שרטוטים {amount}"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],he_IL:["אינדיקטור {amount}","{amount}אינדיקטורים","{amount}אינדיקטורים","{amount}אינדיקטורים"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],he_IL:["{count}m","{count}m","{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"],he_IL:["{count}d","{count}d","{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],he_IL:["{count}y","{count}y","{count}y","{count}y"]}},56316:e=>{
|
||||
e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],he_IL:['Apple בע"מ']},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],he_IL:["דולר אוסטרלי/דולר קנדי"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],he_IL:["דולר אוסטרלי/פרנק שוויצרי"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],he_IL:["דולר אוסטרלי/יין יפני"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],he_IL:["דולר אוסטרלי/דולר ניו זילנד"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],he_IL:["דולר אוסטרלי/רובל רוסי"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],he_IL:["דולר אוסטרלי/דולר אמריקאי"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],he_IL:["מדד S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"],he_IL:["ביטקוין קאש / אירו"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],he_IL:['ביטקוין קאש / דולר ארה"ב']},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],he_IL:["מדד BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],he_IL:['מדד ביטקוין/דולר ארה"ב']},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],he_IL:["מדד IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],he_IL:["מדד Bovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],he_IL:["מדד ברזיל 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"],he_IL:["SX20 RT סין"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"],he_IL:["חברת פורד מוטור"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],he_IL:["מדד S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],he_IL:["ריאל ברזילאי / יין יפני"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"],he_IL:['ITI בע"מ']},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],he_IL:["ביטקוין / דולר קנדי"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],he_IL:["ביטקוין / יואן סיני"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],he_IL:["ביטקוין / יורו"]},
|
||||
e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],he_IL:["ביטקוין / לירה שטרלינג"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],he_IL:["ביטקוין / וואן דרום קוריאני"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],he_IL:["ביטקוין / רובל רוסי"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],he_IL:["ביטקוין / באט תאילנדי"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],he_IL:["ביטקוין / דולר אמריקאי"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],he_IL:["ביטקוין גולד / דולר אמריקאי"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],he_IL:["מדד בווספה ברזיל"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],he_IL:["דולר קנדי / יין יפני"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],he_IL:["דולר קנדי / דולר אמריקאי"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],he_IL:["מדד S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],he_IL:["מדד Volatility S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],he_IL:["חוזים עתידיים של T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],he_IL:["חוזים עתידיים תירס"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],he_IL:["חוזים עתידיים על ארוחות סויה"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],he_IL:["חוזים עתידיים 10 שנים T-Note"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],he_IL:["חוזים עתידיים שיבולת שועל"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],he_IL:["חוזים עתידיים אורז"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],he_IL:["חוזים עתידיים על פולי סויה"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],he_IL:["חוזים עתידיים על חיטה"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],he_IL:["מיני חוזים עתידיים על פולי סויה"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],he_IL:["מיני חוזים עתידיים חיטה"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],he_IL:["חוזים עתידיים E-mini דאו ג'ונס ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],he_IL:["פרנק שוויצרי / יין יפני"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],he_IL:["פרנק שוויצרי / דולר אמריקאי"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],he_IL:["חוזים עתידיים ביטקוין - CME"]},e.exports["#CME:CB1!-symbol-description"]={
|
||||
en:["Butter Futures-Cash (Continuous: Current contract in front)"],he_IL:["חמאה חוזים עתידיים-מזומן (רציף: חוזה נוכחי מלפנים)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],he_IL:["חוזים עתידיים E-mini יורו"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],he_IL:["חוזים עתידיים E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],he_IL:["חוזים עתידיים E-mini על ין יפני"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],he_IL:['חוזים עתידיים נאסד"ק 100 E-mini']},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],he_IL:["E-Mini ראסל 2000 אינדקס חוזים עתידיים"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],he_IL:["חוזים עתידיים זהב"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],he_IL:["חוזים עתידיים על נחושת"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],he_IL:["חוזים עתידיים על כסף"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],he_IL:["חוזים עתידיים E-mini נחושת"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],he_IL:["חוזים עתידיים (Mini) כסף"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],he_IL:["חוזים עתידיים זהב (Mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],he_IL:["CFD על נחושת"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],he_IL:["חוזי הפרשים על כותנה"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],he_IL:["שווי שוק קריפטו כולל, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],he_IL:["מדד DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],he_IL:["מדד Composite Average של דאו ג'ונס"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],he_IL:["דאו ג'ונס מדד סחורות הקקאו"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],he_IL:["דאו ג'ונס מדד סחורות האנרגיה"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],he_IL:["מדד דאו ג'ונס סחורות זהב"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],he_IL:["מדד דאו ג'ונס סחורות דגנים"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],
|
||||
he_IL:["מדד דאו ג 'ונס סחורות ניקל"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],he_IL:["מדד דאו ג'ונס סחורות קפה"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],he_IL:["דאו ג'ונס מדד סחורות הסוכר"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],he_IL:["דאו ג 'ונס מדד סחורות כסף"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],he_IL:["מדד דאו ג'ונס ממוצע תחבורה"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],he_IL:["מדד דאו ג'ונס פחם ארה\"ב"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],he_IL:["מדד EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],he_IL:["אתריום קלאסיק / ביטקוין"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"],he_IL:["את'ריום קלאסיק / אירו"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],he_IL:["אתריום קלאסיק / דולר אמריקאי"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"],he_IL:["אתריום / ביטקוין"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"],he_IL:["אתריום/יורו"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],he_IL:["אתריום / לירה שטרלינג"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],he_IL:["אתריום / ין יפני"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],he_IL:["את'ריום / וון דרום קוריאני"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],he_IL:["את'ריום / בהט תאילנדי"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],he_IL:["אתריום / דולר אמריקאי"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],he_IL:["קרנות ארופאיות"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],he_IL:["יורו / דולר אוסטרלי"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],he_IL:["יורו / ריאל ברזילאי"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],he_IL:["יורו / דולר קנדי"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],he_IL:["יורו / פרנק שוויצרי"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],he_IL:["יורו / לירה שטרלינג"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],he_IL:["יורו / יין יפני"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],he_IL:["יורו / דולר ניו זילנד"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],he_IL:["מדד AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],he_IL:["מדד BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],
|
||||
he_IL:["מדד CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],he_IL:["יורו / רובל רוסי"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],he_IL:["יורו / רובל"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],he_IL:["יורו / קורונה שוודית"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],he_IL:["יורו / לירה טורקית"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],he_IL:["יורו / דולר אמריקאי"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],he_IL:["מדד Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"],he_IL:['Small Cap ארה"ב 2000']},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],he_IL:["מדד CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],he_IL:["מדד FTSE בורסת מלזיה KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],he_IL:["לירה שטרלינג / דולר אוסטרלי"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],he_IL:["לירה שטרלינג / דולר קנדי"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],he_IL:["לירה שטרלינג / פרנק שוויצרי"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],he_IL:["לירה שטרלינג / יורו"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],he_IL:["לירה שטרלינג / יין יפני"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],he_IL:["לירה שטרלינג / דולר ניו זילנד"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],he_IL:["לירה שטרלינג / רובל רוסי"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],he_IL:["לירה שטרלינג / דולר אמריקאי"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],he_IL:["מדד DAX גרמניה"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],he_IL:["אלפאבית (גוגל) דרגה א'"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],he_IL:["מדד האנג סנג"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],he_IL:['חוזים עתידיים על מדד דולר ארה"ב']},
|
||||
e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],he_IL:["מדד IDX Composite"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],he_IL:["אינדקס בורסת מלזיה KLCI"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],he_IL:["מדד טאייוואן משוקלל"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],he_IL:["איוטא / דולר אמריקאי"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],he_IL:["אינדקס Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],he_IL:["יין יפני / וואן דרום קוריאני"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],he_IL:["יין יפני / רובל רוסי"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],he_IL:["ין יפני / דולר אמריקאי"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],he_IL:["לייטקוין / ריאל ברזילאי"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],he_IL:["לייטקוין / ביטקוין"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],he_IL:["לייטקוין / דולר אמריקאי"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],he_IL:['לונה / ארה"ב דוֹלָר']},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],he_IL:["חוזים עתידיים על נפט ברנט"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"],he_IL:["מגנית"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],he_IL:["Microsoft Corp חברת מיקרוסופט"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],he_IL:['מדדנ נאסד"ק 100 ']},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"],he_IL:['מכשירי מיקרו מתקדמים בע"מ']},e.exports["#NASDAQ:GOOG-symbol-description"]={
|
||||
en:["Alphabet Inc (Google) Class C"],he_IL:["Alphabet Inc (גוגל) דירוג C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],he_IL:["Alphabet Inc (גוגל) דירוג A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],he_IL:['איטריס בע"מ']},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],he_IL:["מדד Nasdaq Composite"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."],he_IL:["#NASDAQ:LCID-תיאור-סימול"]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"],he_IL:["Lands' End בע\"מ"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],he_IL:['מדד נאסד"ק 100']},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],he_IL:["מדד מוליכים למחצה פילדלפיה"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],he_IL:["נאו / דולר אמריקאי"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],he_IL:["גז טבעי (HenryHub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],he_IL:["מדד Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"],he_IL:['תעשיות טלפון הודיות בע"מ']},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],he_IL:["חוזים עתידיים אתנול ניו יורק"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],he_IL:["חוזים עתידיים על קקאו"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],he_IL:["חוזים עתידיים נפט גולמי"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],he_IL:["חוזים עתידיים על נמל NY ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],he_IL:["חוזים עתידיים על קפה"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],he_IL:["חוזים עתידיים גז טבעי"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],he_IL:["חוזים עתידיים פלדיום"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],he_IL:["חוזים עתידיים על פלטינום"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],he_IL:["חוזים עתידיים על בנזין RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],
|
||||
he_IL:["חוזים עתידיים כותנה"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],he_IL:["חוזים עתידיים E-mini גז טבעי"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],he_IL:["חוזים עתידיים E-mini בנזין"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],he_IL:['אחזקות קבוצת עליבאבא בע"מ']},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"],he_IL:["פורד MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"],he_IL:["תעשיות חשמל הוואי"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],he_IL:["מדד NYSE Composite"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],he_IL:["מדד AMEX Composite"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],he_IL:["דולר ניו זילנד / יין יפני"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],he_IL:["דולר ניו זילנד / דולר אמריקאי"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],he_IL:["מדד OMX קופנהגן 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],he_IL:["מדד OMX הלסינקי 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],he_IL:["מדד OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],he_IL:["מדד OMX שטוקהולם 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],he_IL:["מדד OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],he_IL:["מדד OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],he_IL:["מדד QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],he_IL:["מדד RTS רוסיה"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],he_IL:["מדד Russel 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],he_IL:["מדד Russel 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],he_IL:["מדד Russel 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],
|
||||
he_IL:["חיבורים גלובליים חברה ציבורית"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"],he_IL:["חברת פורד מוטור"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],he_IL:["מדד שוק שוויצרי"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],he_IL:['סולנה / ארה"ב דוֹלָר']},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],he_IL:["מדד S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],he_IL:["מדד S&P 500 Value"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500 "]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],he_IL:["מדד Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."],he_IL:["#TADAWUL:2370-תיאור-סימול"]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],he_IL:["מדד כל המניות של Tadawul"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],he_IL:["מדד תל אביב 35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],he_IL:["אגרות חוב ממשלתיות קנדיות, 10 שנים"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות קנדיות בתשואה של 10 שנים"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],he_IL:["מדד דאקס"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],he_IL:["מדד מטבע דולר אמריקאי"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"]},
|
||||
e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],he_IL:["CFDs על זהב (US$ / OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות באינדונזיה בתשואה של 10 שנים"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות בהודו בתשואה של 10 שנים"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות באיטליה 10 שנים"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],he_IL:['מדד נאסד"ק Composite']},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות של יפן בתשואה של 10 שנים"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],he_IL:["מדד מטבע הין היפני"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],he_IL:["מדד מחירי המניות של קוריאה"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],he_IL:['מדד נאסד"ק 100']},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],he_IL:["אינדקס Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],he_IL:["אגרות חוב ממשלתיות בהולנד, 10 שנים"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],he_IL:["איגרות חוב של ממשלת הולנד בתשואה של 10 שנים"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},
|
||||
e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],he_IL:["איגרות חוב ממשלתיות בניו זילנד, 10 שנים"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות בניו זילנד בתשואה של 10 שנים"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],he_IL:['אג"ח ממשלת פולין תשואה 5 שנים']},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],he_IL:['אג"ח ממשלת פולין תשואה 10 שנים']},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],he_IL:["מדד Top 40 דרום אפריקה"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],he_IL:["CFDs על כסף (US$ / OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],he_IL:["מדד S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],he_IL:["מדד שוק שוויצרי"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],he_IL:["מדד Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],he_IL:["איגרות חוב ממשלתיות בטורקיה בתשואה של 10 שנים"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],he_IL:["CFDs על ברנט גולמי"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],he_IL:["מדד בריטניה 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],he_IL:['תשואת אג"ח ממשלתיות בארה"ב של 2 שנים']},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],he_IL:['איגרות חוב ממשלתיות בארה"ב בתשואה של 5 שנים']},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],he_IL:['תשואת אג"ח ממשלתיות בארה"ב של 10 שנים']},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],he_IL:["תנודתיות המדד S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],he_IL:["מדד טאייוואן משוקלל"]},e.exports["#TWSE:TAIEX-symbol-description"]={
|
||||
en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],he_IL:["TWITTER INC טוויטר"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],he_IL:["מדד FTSE 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],he_IL:["CFDs על נפט גולמי (ברנט)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],he_IL:['Uniswap / ארה"ב דוֹלָר']},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],he_IL:["מדד דאו ג'ונס הממוצע התעשייתי"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],he_IL:["דולר אמריקאי / דולר אוסטרלי"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],he_IL:["דולר אמריקאי / ריאל ברזילאי"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],he_IL:["דולר אמריקאי / דולר קנדי"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],he_IL:["דולר אמריקאי / פרנק שוויצרי"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],he_IL:["דולר אמריקאי / יואן סיני"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],he_IL:["דולר אמריקאי / קורנה דנמרק"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],he_IL:["דולר אמריקאי / אירו"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],he_IL:["דולר אמריקאי / לירה שטרלינג"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],he_IL:["דולר אמריקאי / דולר הונג קונג"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],he_IL:['דולר ארה"ב/פורינט הונגרי']},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],he_IL:["דולר אמריקאי / רופיה"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],he_IL:["דולר אמריקאי / שקל ישראלי"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],he_IL:["דולר אמריקאי / רופי הודי"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],he_IL:["דולר אמריקאי / יין יפני"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],he_IL:["דולר אמריקאי / וואן דרום קוראני"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],he_IL:["דולר אמריקאי / פאסו מקסיקני"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],he_IL:["דולר אמריקאי / דולר ניו זילנדי"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],he_IL:["דולר אמריקאי / פאסו פיליפיני"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],he_IL:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],he_IL:["דולר אמריקאי / רובל רוסי"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],he_IL:["דולר אמריקאי / רובל רוסי"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],he_IL:["דולר אמריקאי / קורונה שוודי"]},
|
||||
e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],he_IL:["דולר אמריקאי / דולר סינגפור"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],he_IL:['דולר ארה"ב/בהט תאילנדי']},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],he_IL:["דולר אמריקאי / לירה טורקית"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],he_IL:["דולר אמריקאי / ראנד דרום אפריקני"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],he_IL:["כסף / דולר אמריקאי"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],he_IL:["זהב / דולר אמריקאי"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],he_IL:["ביטקוין / דולר קנדי"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],he_IL:["מדד דאקס"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],he_IL:["מונרו / דולר אמריקאי"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],he_IL:["CFD'S על פלאדיום"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],he_IL:["פלטיניום / דולר אמריקאי"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],he_IL:["ריפל / ביטקוין"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],he_IL:["ריפל / אירו"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],he_IL:["XRP / דולר אמריקאי"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],he_IL:["זיקאש / דולר אמריקאי"]}}}]);
|
||||
@@ -0,0 +1,7 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],he_IL:["ברים"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],he_IL:["4/(פ+ג+נ+ס)"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],he_IL:["3/(ג+נ+ס)"]}},69303:e=>{e.exports={en:["(H + L)/2"],he_IL:["2/(ג+נ)"]}},31882:e=>{e.exports={en:["12-hours"],he_IL:["12 שעות"]}},5797:e=>{e.exports={en:["24-hours"],he_IL:["24 שעות"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],he_IL:["צבע הנר על בסיס הסגירה הקודמת"]}},23739:e=>{e.exports={en:["Canvas"],he_IL:["קנבס"]}},24197:e=>{e.exports={en:["Center"],he_IL:["מרכז"]}},15153:e=>{e.exports={en:["Chart basic styles"],he_IL:["גרף סגנונות בסיסי"]}},45639:e=>{e.exports={en:["Chart values"],he_IL:["ערכי גרף"]}},84831:e=>{e.exports={en:["Close line"],he_IL:["קו סגירה"]}},74622:e=>{e.exports={en:["Crosshair"],he_IL:["צלב"]}},81849:e=>{e.exports={en:["Currency"],he_IL:["מַטְבֵּעַ"]}},3015:e=>{e.exports={en:["Currency and Unit"],he_IL:["מטבע ויחידה"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],he_IL:["התאם נתונים לדיבידנדים"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},36620:e=>{e.exports={en:["Alerts"],he_IL:["התראות"]}},14119:e=>{e.exports={en:["Arguments"],he_IL:["טיעונים"]}},68650:e=>{e.exports={en:["Average close"],he_IL:["ממוצע סגירה"]}},27567:e=>{e.exports={en:["Bottom"],he_IL:["תחתית"]}},3159:e=>{e.exports={en:["Bottom line"],he_IL:["קו תחתון"]}},74406:e=>{e.exports={en:["Body"],he_IL:["גוף"]}},333:e=>{e.exports={en:["Borders"],he_IL:["גבולות"]}},79468:e=>{e.exports={en:["Background"],he_IL:["רקע"]}},10842:e=>{e.exports={en:["Bar change values"],he_IL:["ערכי שינוי הנר"]}},28975:e=>{e.exports={en:["Base level"],he_IL:["רמת בסיס"]}},76473:e=>{e.exports={en:["Bid and ask"],he_IL:["ביקוש והיצע"]}},32744:e=>{e.exports={en:["Buttons"],he_IL:["כפתורים"]}},68662:e=>{e.exports={en:["Grid lines"],he_IL:["קווי רשת"]}},17611:e=>{e.exports={en:["Down bars"],he_IL:["נרות ירידה"]}},23743:e=>{e.exports={en:["Down color"],he_IL:["צבע תחתון"]}},48225:e=>{e.exports={en:["Data modification"],he_IL:["התאמת נתונים"]}},84838:e=>{e.exports={en:["Date format"],he_IL:["פורמט תאריך"]}},42357:e=>{e.exports={en:["Day of week on labels"],he_IL:["יום בשבוע על תוויות"]}},16564:e=>{e.exports={en:["Default"],he_IL:["ברירת מחדל"]}},78734:e=>{e.exports={en:["Description"],he_IL:["תיאור"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],he_IL:["רקע שעות מסחר אלקטרוני"]}},69808:e=>{e.exports={en:["Events"],he_IL:["אירועים"]}},41129:e=>{e.exports={en:["Fill"],he_IL:["למלא"]}},61112:e=>{e.exports={en:["Fill top area"],he_IL:["מלא אזור עליון"]}},73185:e=>{e.exports={en:["Fill bottom area"],he_IL:["מלא אזור תחתון"]}},95406:e=>{e.exports={en:["Horizontal"],he_IL:["אופקי"]}},61900:e=>{e.exports={en:["Horz only"],he_IL:["רק אופקי"]}},14180:e=>{e.exports={en:["High and low"],he_IL:["גבוה ונמוך"]}},56359:e=>{e.exports={en:["High line"],he_IL:["קו גבוה"]}},
|
||||
47326:e=>{e.exports={en:["Integer"],he_IL:["מספר שלם"]}},84549:e=>{e.exports={en:["Indicators"],he_IL:["אינדיקטורים"]}},78082:e=>{e.exports={en:["Indicators and financials"],he_IL:["אינדיקטורים ופיננסיים"]}},25765:e=>{e.exports={en:["Open market status"],he_IL:["מצב שוק פתוח"]}},34579:e=>{e.exports={en:["Low line"],he_IL:["קו נמוך"]}},14876:e=>{e.exports={en:["Logo"],he_IL:["לוגו"]}},89315:e=>{e.exports={en:["Long Description"],he_IL:["תיאור ארוך"]}},72423:e=>{e.exports={en:["Last day change values"],he_IL:["ערכי שינוי היום האחרון"]}},11626:e=>{e.exports={en:["Left"],he_IL:["שמאל"]}},8249:e=>{e.exports={en:["Money"],he_IL:["כסף"]}},70937:e=>{e.exports={en:["Margins"],he_IL:["מינוף"]}},68833:e=>{e.exports={en:["Middle"],he_IL:["אמצע"]}},58589:e=>{e.exports={en:["No overlapping labels"],he_IL:["ללא תוויות חופפות"]}},60798:e=>{e.exports={en:["None"],he_IL:["אף אחד"]}},51019:e=>{e.exports={en:["Navigation"],he_IL:["ניווט"]}},99709:e=>{e.exports={en:["Name"],he_IL:["שם"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],he_IL:["שמור מיקום הקצה השמאלי של הגרף בעת שינוי אינטרוול"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],he_IL:["מצבי קנה מידה (A ו-L)"]}},93968:e=>{e.exports={en:["Scales"],he_IL:["סולם מחיר"]}},90275:e=>{e.exports={en:["Scales and lines"],he_IL:["סולמות וקווים"]}},30042:e=>{e.exports={en:["Scales placement"],he_IL:["מיקום קנה מידה"]}},28715:e=>{e.exports={en:["Status line"],he_IL:["שורת סטטוס"]}},95481:e=>{e.exports={en:["Symbol"],he_IL:["סימול"]}},53263:e=>{e.exports={en:["Pane"],he_IL:["פאנל"]}},82894:e=>{e.exports={en:["Pane separators"],he_IL:["מפרידי חלוניות"]}},16207:e=>{e.exports={en:["Percentage"],he_IL:["אחוז"]}},94408:e=>{e.exports={en:["Pips"],he_IL:["פיפס"]}},60904:e=>{e.exports={en:["Pre/post market"],he_IL:["פרה/פוסט מרקט"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],he_IL:["רקע שעות טרום/מסחר מאוחר"]}},59766:e=>{e.exports={en:["Precision"],he_IL:["דיוק"]}},83811:e=>{e.exports={en:["Previous day close"],he_IL:["הסגירה של היום הקודם"]}},35082:e=>{e.exports={en:["Price Scale"],he_IL:["סולם מחירים"]}},27632:e=>{e.exports={en:["Price and percentage value"],he_IL:["מחיר אחרון וערך האחוז"]}},62142:e=>{e.exports={en:["Price labels & lines"],he_IL:["תוויות מחירים וקווים"]}},84684:e=>{e.exports={en:["Price source"],he_IL:["מקור המחיר"]}},73466:e=>{e.exports={en:["Projection up bars"],he_IL:["הטלת עמודות עולות"]}},77430:e=>{e.exports={en:["Projection candles"],he_IL:["נרות הקרנה"]}},88367:e=>{e.exports={en:["Projection down bars"],he_IL:["הטלת עמודות יורדות"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],he_IL:["מחירים אמיתיים בסולם המחיר (במקום מחיר הייקין-אשי)"]}},50421:e=>{e.exports={en:["Right"],he_IL:["ימין"]}},62532:e=>{e.exports={en:["Right Margin"],he_IL:["שוליים ימניים"]}},41571:e=>{e.exports={en:["Watermark"],he_IL:["סימן מים"]}},32163:e=>{e.exports={en:["Wick"],he_IL:["פתיל"]}},97118:e=>{e.exports={en:["Top"],he_IL:["עליון"]}},89349:e=>{e.exports={en:["Top line"],he_IL:["קו עליון"]}},
|
||||
70320:e=>{e.exports={en:["Text"],he_IL:["טקסט"]}},25485:e=>{e.exports={en:["Text alignment"],he_IL:["יישור טקסט"]}},67781:e=>{e.exports={en:["Text orientation"],he_IL:["כיוון טקסט"]}},20215:e=>{e.exports={en:["Thin bars"],he_IL:["נרות דקים"]}},70198:e=>{e.exports={en:["Title"],he_IL:["כותרת"]}},29854:e=>{e.exports={en:["Titles"],he_IL:["כותרות"]}},5791:e=>{e.exports={en:["Ticker"],he_IL:["טיקר"]}},16816:e=>{e.exports={en:["Ticker and description"],he_IL:["טיקר ותיאור"]}},24821:e=>{e.exports={en:["Ticks"],he_IL:["טיקים"]}},93965:e=>{e.exports={en:["Time Scale"],he_IL:["סולם זמן"]}},5591:e=>{e.exports={en:["Time hours format"],he_IL:["זמן שעות פורמט"]}},77073:e=>{e.exports={en:["Timezone"],he_IL:["אזור זמן"]}},76495:e=>{e.exports={en:["Trading"],he_IL:["מסחר"]}},33564:e=>{e.exports={en:["Unit"],he_IL:["יחידה"]}},23091:e=>{e.exports={en:["Up color"],he_IL:["צבע עליון"]}},36957:e=>{e.exports={en:["Up bars"],he_IL:["נרות עליה"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},37644:e=>{e.exports={en:["Volume"],he_IL:["ווליום/נפח מסחר"]}},51514:e=>{e.exports={en:["Value"],he_IL:["ערך"]}},31218:e=>{e.exports={en:["Value according to scale"],he_IL:["ערך אחרון לפי קנה מידה"]}},60092:e=>{e.exports={en:["Values"],he_IL:["ערכים"]}},83594:e=>{e.exports={en:["Vert and horz"],he_IL:["אנכי ואופקי"]}},8402:e=>{e.exports={en:["Vert only"],he_IL:["רק אנכי"]}},69526:e=>{e.exports={en:["Vertical"],he_IL:["אנכי"]}},21105:e=>{e.exports={en:["candle"],he_IL:["נר"]}},27068:e=>{e.exports={en:["change HLC bars"],he_IL:["שנה ברי HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],he_IL:["שנה נראות של לחצני הניווט"]}},96227:e=>{e.exports={en:["change open market status visibility"],he_IL:["שנה את נראות מצב השוק הפתוח"]}},43231:e=>{e.exports={en:["change average close price line width"],he_IL:["שנה את רוחב קו מחיר סגור ממוצע"]}},47026:e=>{e.exports={en:["change average close price line color"],he_IL:["שנה את צבע קו המחיר הממוצע"]}},86866:e=>{e.exports={en:["change area fill color"],he_IL:["שנה את צבע מילוי השטח"]}},89346:e=>{e.exports={en:["change area line width"],he_IL:["שנה את רוחב קו השטח"]}},29605:e=>{e.exports={en:["change area line color"],he_IL:["שנה את צבע קו השטח"]}},4640:e=>{e.exports={en:["change area price source"],he_IL:["שנה מקור אזור מחיר"]}},98407:e=>{e.exports={en:["change ask line color"],he_IL:["שנה את צבע שורת הביקוש ask"]}},42190:e=>{e.exports={en:["change base level"],he_IL:["שנה את רמת הבסיס"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],he_IL:["שנה את צבע השורה התחתונה של קו הבסיס"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],he_IL:["שנה את רוחב השורה התחתונה של קו הבסיס"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],he_IL:["שנה את צבע השטח התחתון של מילוי קו הבסיס"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],he_IL:["שנה את צבע האזור העליון של מילוי קו הבסיס"]}},68609:e=>{e.exports={
|
||||
en:["change baseline price source"],he_IL:["שנה את מקור המחיר הבסיסי"]}},69044:e=>{e.exports={en:["change baseline top line color"],he_IL:["שנה את צבע הקו העליון של קו הבסיס"]}},68197:e=>{e.exports={en:["change baseline top line width"],he_IL:["שנה את רוחב הקו העליון של קו הבסיס"]}},33464:e=>{e.exports={en:["change bar up color"],he_IL:["שנה את צבע הבר למעלה"]}},27426:e=>{e.exports={en:["change bar change visibility"],he_IL:["שנה נראות של בר שינוי"]}},59622:e=>{e.exports={en:["change bar down color"],he_IL:["שנה את צבע הבר למטה"]}},17919:e=>{e.exports={en:["change bid line color"],he_IL:["שנה את צבע שורת ההיצע bid"]}},32094:e=>{e.exports={en:["change bottom margin"],he_IL:["שנה שוליים תחתוניים"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],he_IL:["שנה את נראות תוויות המטבע והיחידה"]}},64003:e=>{e.exports={en:["change currency label visibility"],he_IL:["שנה את נראות תווית המטבע"]}},42803:e=>{e.exports={en:["change chart background color"],he_IL:["שנה את צבע הרקע של הגרף"]}},41382:e=>{e.exports={en:["change chart background type"],he_IL:["שנה את סוג הרקע של הגרף"]}},79637:e=>{e.exports={en:["change chart values visibility"],he_IL:["שינוי נראות ערכי הגרף"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],he_IL:["שנה ברי צבע בהתבסס על סגירה קודמת"]}},88324:e=>{e.exports={en:["change column up color"],he_IL:["שנה את צבע העמודה למעלה"]}},93890:e=>{e.exports={en:["change column down color"],he_IL:["שנה את צבע העמודה למטה"]}},4727:e=>{e.exports={en:["change column price source"],he_IL:["שנה מקור מחיר העמודה"]}},50544:e=>{e.exports={en:["change crosshair width"],he_IL:["שנה רוחב צלב"]}},92885:e=>{e.exports={en:["change crosshair color"],he_IL:["שנה את צבע הצלב"]}},68418:e=>{e.exports={en:["change crosshair style"],he_IL:["שנה סגנון צלב"]}},43109:e=>{e.exports={en:["change date format"],he_IL:["שנה פורמט תאריך"]}},30418:e=>{e.exports={en:["change day of week on labels"],he_IL:["שנה את יום השבוע על התוויות"]}},82063:e=>{e.exports={en:["change decimal places"],he_IL:["שנה מקומות עשרוניים"]}},44223:e=>{e.exports={en:["change extended hours color"],he_IL:["שנה את צבע השעות המורחבות"]}},47393:e=>{e.exports={en:["change electronic trading hours"],he_IL:["שינוי שעות המסחר האלקטרוניות"]}},73844:e=>{e.exports={en:["change grid lines visibility"],he_IL:["שינוי נראות קווי הרשת"]}},61407:e=>{e.exports={en:["change high and low price line color"],he_IL:["לשנות את צבע קווי המחיר הגבוה והנמוך"]}},39581:e=>{e.exports={en:["change high and low price line width"],he_IL:["לשנות את רוחב קווי המחיר הגבוה והנמוך"]}},6026:e=>{e.exports={en:["change high-low body color"],he_IL:["שנה צבע גבוה-נמוך של הגוף"]}},73021:e=>{e.exports={en:["change high-low body visibility"],he_IL:["שנה נראות גבוה-נמוך של הגוף"]}},46844:e=>{e.exports={en:["change high-low border color"],he_IL:["שנה צבע גבול גבוה-נמוך של הגוף"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],he_IL:["שנה נראות גבול גבוה-נמוך של הגוף"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],
|
||||
he_IL:["שנה נראות התוויות גבוה-נמוך"]}},56961:e=>{e.exports={en:["change high-low labels color"],he_IL:["שנה צבע התוויות גבוה-נמוך"]}},21133:e=>{e.exports={en:["change horz grid lines color"],he_IL:["שנה את צבע קווי הרשת האופקיים"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],he_IL:["שנה את נראות של כותרות אינדיקטור"]}},49583:e=>{e.exports={en:["change indicator values visibility"],he_IL:["שינוי נראות ערכי אינדיקטור"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],he_IL:["שינוי נראות ארגומנטים של אינדיקטור"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],he_IL:["שנה נראות של שם תוויות אינדיקטורים ופיננסיות"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],he_IL:["שנה נראות של אינדיקטורים ותוויות ערך פיננסיות"]}},66307:e=>{e.exports={en:["change last day change visibility"],he_IL:["שנה את הנראות של השינוי ביום האחרון"]}},91873:e=>{e.exports={en:["change legend background transparency"],he_IL:["שנה את שקיפות הרקע של מקרא"]}},14246:e=>{e.exports={en:["change legend background visibility"],he_IL:["שנה נראות הרקע של מקרא"]}},88640:e=>{e.exports={en:["change line color"],he_IL:["שנה צבע קו"]}},41837:e=>{e.exports={en:["change line price source"],he_IL:["שנה מקור מחיר קו"]}},48339:e=>{e.exports={en:["change line width"],he_IL:["שנה רוחב קו"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],he_IL:["שנה נראות לחצני החלונית"]}},52203:e=>{e.exports={en:["change pane separators color"],he_IL:["שנה את צבע מפריד החלונות"]}},38730:e=>{e.exports={en:["change post market color"],he_IL:["שנה צבע מסחר מאוחר"]}},28075:e=>{e.exports={en:["change post market line color"],he_IL:["שנה צבע קו מסחר מאוחר"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],he_IL:["שנה נראות של קווי המחירים פרה/פוסט מארקט"]}},44371:e=>{e.exports={en:["change pre market color"],he_IL:["שנה צבע טרום מסחר"]}},96114:e=>{e.exports={en:["change pre market line color"],he_IL:["שנה צבע קו טרום מסחר"]}},69814:e=>{e.exports={en:["change previous close price line color"],he_IL:["שנה את צבע קו המחיר סגירה הקודם"]}},13660:e=>{e.exports={en:["change previous close price line width"],he_IL:["שנה את רוחב קו סגירת המחיר הקודם"]}},87861:e=>{e.exports={en:["change price line color"],he_IL:["לשנות את צבע קו המחיר"]}},29353:e=>{e.exports={en:["change price line width"],he_IL:["שנה את רוחב קו המחיר"]}},16241:e=>{e.exports={en:["change range bars style"],he_IL:["שנה את סגנון ברי הטווח"]}},65821:e=>{e.exports={en:["change range thin bars"],he_IL:["שנה ברים דקים בטווח"]}},75487:e=>{e.exports={en:["change renko wick down color"],he_IL:["שנה צבע renko wick down"]}},92277:e=>{e.exports={en:["change renko wick up color"],he_IL:["שנה צבע wick up renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],he_IL:["שנה נראות של פתיל renko"]}},82946:e=>{e.exports={en:["change right margin"],he_IL:["שנה שוליים ימניים"]}},79545:e=>{e.exports={en:["change right margin percentage"],he_IL:["שנה את אחוז השוליים הימניים"]}},78995:e=>{
|
||||
e.exports={en:["change symbol watermark color"],he_IL:["שנה צבע סימן מים של הסימול"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],he_IL:["שנה נראות סימן מים של הסימול"]}},88167:e=>{e.exports={en:["change symbol description visibility"],he_IL:["שנה את נראות תיאור הסימול"]}},12050:e=>{e.exports={en:["change symbol field visibility"],he_IL:["שינוי נראות שדה הסימול"]}},46066:e=>{e.exports={en:["change symbol last value mode"],he_IL:["שינוי מצב ערך אחרון של סימול"]}},902:e=>{e.exports={en:["change symbol legend format"],he_IL:["שנה פורמט מקרא סימולים"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],he_IL:["שנה שמירת מיקום הקצה השמאלי של הגרף בעת שינוי אינטרוול"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],he_IL:["שנה את נראות לחצני קנה המידה"]}},76131:e=>{e.exports={en:["change scales text color"],he_IL:["שנה צבע טקסט של סולמות"]}},27792:e=>{e.exports={en:["change scales font size"],he_IL:["שנה גודל גופן בקנה מידה"]}},94997:e=>{e.exports={en:["change scales lines color"],he_IL:["שנה צבע קווים של סולמות"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],he_IL:["שנה נראות של הפסקות סשנים"]}},28175:e=>{e.exports={en:["change sessions breaks width"],he_IL:["שנה רוחב קווי הפרדה של סשנים sessions breaks"]}},33895:e=>{e.exports={en:["change sessions breaks color"],he_IL:["שנה צבע קווי הפרדה של סשנים sessions breaks"]}},21641:e=>{e.exports={en:["change sessions breaks style"],he_IL:["שנה סגנון הפסקות סשן sessions breaks"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],he_IL:["שנה הצגת המחירים האמיתיים בסולם המחירים (במקום מחיר הייקן-אשי)"]}},60834:e=>{e.exports={en:["change thin bars"],he_IL:["שנה ברים דקים"]}},39754:e=>{e.exports={en:["change time hours format"],he_IL:["שינוי זמן שעות פורמט"]}},74883:e=>{e.exports={en:["change top margin"],he_IL:["שנה שוליים עליוניים"]}},51250:e=>{e.exports={en:["change unit label visibility"],he_IL:["שנה את נראות תווית היחידה"]}},71805:e=>{e.exports={en:["change vert grid lines color"],he_IL:["שנה את צבע קווי הרשת האנכיים"]}},96201:e=>{e.exports={en:["change volume values visibility"],he_IL:["שינוי נראות ערכי ווליום"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],he_IL:["שנה את צבע הגבול העליון של {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],he_IL:["שנה צבע של {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],he_IL:["שנה את הצבע של {candleType} wick למטה"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],he_IL:["שנה את הצבע שלwick up {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],he_IL:["שנה את נראות הפתיל {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],he_IL:["שנה נראות הגוף של {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],he_IL:["שנה את נראות הגבול של {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],
|
||||
he_IL:["שנה את צבע הגבול התחתון של {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],he_IL:["שנה את הצבע התחתון של {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],he_IL:["שנה את צבע בר הגבול של {chartType} התחתון"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],he_IL:["שנה את צבע בר הגבול {chartType} העליון"]}},5012:e=>{e.exports={en:["change {chartType} down color"],he_IL:["שנה את הצבע התחתון של {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],he_IL:["שנה את צבע בר הגבול להקרנה {chartType} העליון"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],he_IL:["שנה את הצבע של בר ההקרנה {chartType} התחתון"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],he_IL:["שנה את צבע בר ההקרנה {chartType} העליון"]}},6970:e=>{e.exports={en:["change {chartType} up color"],he_IL:["שנה את הצבע העליון של {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],he_IL:["שנה מאפיין {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],he_IL:["להתאים נתונים לדיבידנדים"]}},1433:e=>{e.exports={en:["adjust for contract changes"],he_IL:["התאם לשינויים בחוזה"]}},92598:e=>{e.exports={en:["hollow candles"],he_IL:["נרות חלולים"]}},57243:e=>{e.exports={en:["range","ranges"],he_IL:["טווח","טווחים","טווחים","טווחים"]}},70282:e=>{e.exports={en:["renko"],he_IL:["גרף ראנקו"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],he_IL:["השתמש בסליקה כסגירה באינטרוול יומי"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],he_IL:["{value} עשרוני","{value} עשרונים","{value} עשרונים","{value} עשרונים"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],hu_HU:["(Ny + M + A + Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],hu_HU:["(M + A + Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],hu_HU:["(M + A)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],hu_HU:["Bárszínek az előző záró alapján"]}},78930:e=>{e.exports={en:["Coordinates"],hu_HU:["Koordináták"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"],hu_HU:["Alsó"]}},3159:e=>{e.exports={en:["Bottom line"],hu_HU:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],hu_HU:["Határok"]}},42398:e=>{e.exports={en:["Base"],hu_HU:["Bázis"]}},28975:e=>{e.exports={en:["Base level"],hu_HU:["Base Level"]}},71776:e=>{e.exports={en:["Down"],hu_HU:["Le"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"],hu_HU:["Napok"]}},16564:e=>{e.exports={en:["Default"],hu_HU:["Alapértelmezett"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],hu_HU:["Vonalak Hosszabítása"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],hu_HU:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],hu_HU:["Fill Bottom Area"]}},886:e=>{e.exports={en:["HLC bars"]}},56796:e=>{e.exports={en:["Hours"],hu_HU:["Órák"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],hu_HU:["Inputok"]}},64075:e=>{e.exports={en:["Override min tick"],hu_HU:["Min. Tick Felülírása"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"],hu_HU:["Bal"]}},43154:e=>{e.exports={en:["Months"],hu_HU:["Hónapok"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"],hu_HU:["Percek"]}},65188:e=>{e.exports={en:["Seconds"],hu_HU:["Másodpercek"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],hu_HU:["Pontosság"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"],hu_HU:["Jobb"]}},835:e=>{e.exports={en:["Weeks"],hu_HU:["Hetek"]}},32163:e=>{e.exports={en:["Wick"],hu_HU:["Kanóc"]}},97118:e=>{e.exports={en:["Top"],hu_HU:["Felső"]}},89349:e=>{e.exports={en:["Top line"],hu_HU:["Top Line"]}},
|
||||
70320:e=>{e.exports={en:["Text"],hu_HU:["Szöveg"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],hu_HU:["Thin Bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],hu_HU:["Időzóna"]}},22691:e=>{e.exports={en:["Up"],hu_HU:["Fel"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}
|
||||
},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={
|
||||
en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"],hu_HU:["Órák"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"],hu_HU:["Áttetsző Gyertyák"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"],hu_HU:["Hónapok"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"],hu_HU:["Percek"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],hu_HU:["Renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],hu_HU:["(Ny + M + A + Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],hu_HU:["(M + A + Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],hu_HU:["(M + A)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],hu_HU:["Bárszínek az előző záró alapján"]}},78930:e=>{e.exports={en:["Coordinates"],hu_HU:["Koordináták"]}},24197:e=>{e.exports={en:["Center"]}},84831:e=>{e.exports={en:["Close line"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},27567:e=>{e.exports={en:["Bottom"],hu_HU:["Alsó"]}},3159:e=>{e.exports={en:["Bottom line"],hu_HU:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],hu_HU:["Határok"]}},42398:e=>{e.exports={en:["Base"],hu_HU:["Bázis"]}},28975:e=>{e.exports={en:["Base level"],hu_HU:["Base Level"]}},71776:e=>{e.exports={en:["Down"],hu_HU:["Le"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},72942:e=>{e.exports={en:["Days"],hu_HU:["Napok"]}},16564:e=>{e.exports={en:["Default"],hu_HU:["Alapértelmezett"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},819:e=>{e.exports={en:["Extend lines"],hu_HU:["Vonalak Hosszabítása"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],hu_HU:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],hu_HU:["Fill Bottom Area"]}},56796:e=>{e.exports={en:["Hours"],hu_HU:["Órák"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},21429:e=>{e.exports={en:["Inputs"],hu_HU:["Inputok"]}},64075:e=>{e.exports={en:["Override min tick"],hu_HU:["Min. Tick Felülírása"]}},34579:e=>{e.exports={en:["Low line"]}},11626:e=>{e.exports={en:["Left"],hu_HU:["Bal"]}},43154:e=>{e.exports={en:["Months"],hu_HU:["Hónapok"]}},68833:e=>{e.exports={en:["Middle"]}},42562:e=>{e.exports={en:["Minutes"],hu_HU:["Percek"]}},65188:e=>{e.exports={en:["Seconds"],hu_HU:["Másodpercek"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],hu_HU:["Pontosság"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"],hu_HU:["Jobb"]}},835:e=>{e.exports={en:["Weeks"],hu_HU:["Hetek"]}},32163:e=>{e.exports={en:["Wick"],hu_HU:["Kanóc"]}},97118:e=>{e.exports={en:["Top"],hu_HU:["Felső"]}},89349:e=>{e.exports={
|
||||
en:["Top line"],hu_HU:["Top Line"]}},70320:e=>{e.exports={en:["Text"],hu_HU:["Szöveg"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],hu_HU:["Thin Bars"]}},24821:e=>{e.exports={en:["Ticks"]}},77073:e=>{e.exports={en:["Timezone"],hu_HU:["Időzóna"]}},22691:e=>{e.exports={en:["Up"],hu_HU:["Fel"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},2066:e=>{e.exports={en:["change bar X coordinate"]}},59622:e=>{e.exports={en:["change bar down color"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},38730:e=>{e.exports={en:["change post market color"]}},44371:e=>{e.exports={en:["change pre market color"]}},11737:e=>{e.exports={en:["change price Y coordinate"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},91109:e=>{e.exports={en:["change study overlay min tick"]}},82924:e=>{e.exports={en:["change study overlay style"]}},16660:e=>{
|
||||
e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},78509:e=>{e.exports={en:["change {title} base line color"]}},27864:e=>{e.exports={en:["change {title} base line style"]}},96177:e=>{e.exports={en:["change {title} base line visibility"]}},17926:e=>{e.exports={en:["change {title} base line width"]}},41638:e=>{e.exports={en:["change {title} down line color"]}},51842:e=>{e.exports={en:["change {title} down line style"]}},46410:e=>{e.exports={en:["change {title} down line visibility"]}},64615:e=>{e.exports={en:["change {title} down line width"]}},96135:e=>{e.exports={en:["change {title} days to"]}},91201:e=>{e.exports={en:["change {title} days from"]}},76295:e=>{e.exports={en:["change {title} extend lines"]}},8306:e=>{e.exports={en:["change {title} hours from"]}},67233:e=>{e.exports={en:["change {title} hours to"]}},99122:e=>{e.exports={en:["change {title} months from"]}},10518:e=>{e.exports={en:["change {title} months to"]}},38011:e=>{e.exports={en:["change {title} minutes to"]}},59820:e=>{e.exports={en:["change {title} minutes from"]}},6573:e=>{e.exports={en:["change {title} seconds to"]}},86780:e=>{e.exports={en:["change {title} seconds from"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"]}},32481:e=>{e.exports={en:["change {title} weeks from"]}},18678:e=>{e.exports={en:["change {title} weeks to"]}},42553:e=>{e.exports={en:["change {title} up line visibility"]}},63824:e=>{e.exports={en:["change {title} up line width"]}},89178:e=>{e.exports={en:["change {title} up line color"]}},51188:e=>{e.exports={en:["change {title} up line style"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"]}},67583:e=>{e.exports={en:["change {title} visibility on months"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{
|
||||
e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},25167:e=>{e.exports={en:["change {propertyName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},35813:e=>{e.exports={en:["days"]}},89919:e=>{e.exports={en:["days to"]}},59215:e=>{e.exports={en:["days from"]}},2359:e=>{e.exports={en:["hours"],hu_HU:["Órák"]}},82267:e=>{e.exports={en:["hours from"]}},15600:e=>{e.exports={en:["hours to"]}},92598:e=>{e.exports={en:["hollow candles"],hu_HU:["Áttetsző Gyertyák"]}},76261:e=>{e.exports={en:["move drawings"]}},95300:e=>{e.exports={en:["months"],hu_HU:["Hónapok"]}},17250:e=>{e.exports={en:["months from"]}},2828:e=>{e.exports={en:["months to"]}},18726:e=>{e.exports={en:["minutes"],hu_HU:["Percek"]}},67649:e=>{e.exports={en:["minutes to"]}},22476:e=>{e.exports={en:["minutes from"]}},751:e=>{e.exports={en:["seconds"]}},73419:e=>{e.exports={en:["seconds to"]}},35801:e=>{e.exports={en:["seconds from"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],hu_HU:["Renko"]}},45537:e=>{e.exports={en:["weeks"]}},92859:e=>{e.exports={en:["weeks from"]}},44127:e=>{e.exports={en:["weeks to"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,3 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"],hu_HU:["Összehasonlít"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"],hu_HU:["Törlés"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"],hu_HU:["Szimbólum módosítása"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"],hu_HU:["Ciklusok"]}},32064:e=>{e.exports={en:["Annotation tools"],hu_HU:["Annotation Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],hu_HU:["Hozzáadás kedvencekhez"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],hu_HU:["Gann and Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],hu_HU:["Geometric Shapes"]}},57157:e=>{e.exports={en:["Dot"],hu_HU:["Pont"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],hu_HU:["Leírás"]}},74385:e=>{e.exports={en:["Drawings"],hu_HU:["Rajzok"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"],hu_HU:["Radír"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],hu_HU:["Prediction and Measurement Tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],hu_HU:["Teljes Képernyő Mód"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={
|
||||
en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"],hu_HU:["Rajzeszközök Zárolása"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"],hu_HU:["Több"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],hu_HU:["Keresés"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],hu_HU:["Elrejtett Eszközök Mutatása"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],hu_HU:["Rajzmódban Marad"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"],hu_HU:["Szimbólum"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],hu_HU:["Rajzok szinkronizálása minden charttal"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"],hu_HU:["Villák"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],hu_HU:["Eltávolít kedvencek közül"]}},99984:e=>{e.exports={en:["Remove indicators"],hu_HU:["Indikátorok Eltávolítása"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"],hu_HU:["Chart visszaállítása"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],hu_HU:["Trend Line Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={
|
||||
en:["Zoom In"],hu_HU:["Nagyítás"]}},37310:e=>{e.exports={en:["Zoom Out"],hu_HU:["Kicsinyítés"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"],hu_HU:["kripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
@@ -0,0 +1,3 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"]}},41256:e=>{e.exports={en:["Back"]}},53174:e=>{e.exports={en:["Right"]}},57e3:e=>{e.exports={en:["Compare"],hu_HU:["Összehasonlít"]}},93111:e=>{e.exports={en:["Content"]}},8270:e=>{e.exports={en:["Copy link to the chart image"]}},4543:e=>{e.exports={en:["Cancel"],hu_HU:["Törlés"]}},59934:e=>{e.exports={en:["Channels"]}},63245:e=>{e.exports={en:["Change symbol"],hu_HU:["Szimbólum módosítása"]}},56281:e=>{e.exports={en:["Chart style Columns"]}},64526:e=>{e.exports={en:["Chart style Candles"]}},9537:e=>{e.exports={en:["Chart style Area"]}},19265:e=>{e.exports={en:["Chart style Bars"]}},19579:e=>{e.exports={en:["Chart style Baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"]}},92911:e=>{e.exports={en:["Chart style Line"]}},35458:e=>{e.exports={en:["Chart style Line with markers"]}},11604:e=>{e.exports={en:["Chart style Line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"]}},40447:e=>{e.exports={en:["Chart style Step line"]}},22027:e=>{e.exports={en:["Chart style Point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"]}},80082:e=>{e.exports={en:["Chart style Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"]}},53438:e=>{e.exports={en:["Chart template"]}},47742:e=>{e.exports={en:["Close menu"]}},81578:e=>{e.exports={en:["Cursors"]}},77915:e=>{e.exports={en:["Cycles"],hu_HU:["Ciklusok"]}},32064:e=>{e.exports={en:["Annotation tools"],hu_HU:["Annotation Tools"]}},69207:e=>{e.exports={en:["Add to favorites"],hu_HU:["Hozzáadás kedvencekhez"]}},34040:e=>{e.exports={en:["All sources"]}},19147:e=>{e.exports={en:["Arrows"]}},42358:e=>{e.exports={en:["Bond"]}},65695:e=>{e.exports={en:["Brushes"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],hu_HU:["Gann and Fibonacci Tools"]}},22145:e=>{e.exports={en:["Geometric shapes"],hu_HU:["Geometric Shapes"]}},57157:e=>{e.exports={en:["Dot"],hu_HU:["Pont"]}},25848:e=>{e.exports={en:["Dark theme"]}},14939:e=>{e.exports={en:["Demonstration"]}},78734:e=>{e.exports={en:["Description"],hu_HU:["Leírás"]}},74385:e=>{e.exports={en:["Drawings"],hu_HU:["Rajzok"]}},44255:e=>{e.exports={en:["Elliott waves"]}},8727:e=>{e.exports={en:["Eraser"],hu_HU:["Radír"]}},93308:e=>{e.exports={en:["Extended session"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],hu_HU:["Prediction and Measurement Tools"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],hu_HU:["Teljes Képernyő Mód"]}},83576:e=>{e.exports={en:["Function"]}},42633:e=>{e.exports={
|
||||
en:["Hold {hotKey_0} for temporary drawing"]}},27077:e=>{e.exports={en:["Open Object Tree"]}},7386:e=>{e.exports={en:["Open chart layout"]}},79451:e=>{e.exports={en:["Lock all drawings"],hu_HU:["Rajzeszközök Zárolása"]}},35112:e=>{e.exports={en:["Move chart back"]}},12754:e=>{e.exports={en:["Move chart forward"]}},37117:e=>{e.exports={en:["More"],hu_HU:["Több"]}},35553:e=>{e.exports={en:["Magic"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"]}},81031:e=>{e.exports={en:["Manage layout drawings"]}},91563:e=>{e.exports={en:["Measure"]}},97050:e=>{e.exports={en:["Measurer"]}},7276:e=>{e.exports={en:["Merge all scales to the left"]}},80219:e=>{e.exports={en:["Merge all scales to the right"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"]}},76822:e=>{e.exports={en:["No symbols match your criteria"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"]}},3521:e=>{e.exports={en:["New drawings will sync globally"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"]}},28628:e=>{e.exports={en:["Sources"]}},41569:e=>{e.exports={en:["Save chart layout"]}},8573:e=>{e.exports={en:["Search"],hu_HU:["Keresés"]}},79354:e=>{e.exports={en:["Search tool or function"]}},57640:e=>{e.exports={en:["Select source"]}},65781:e=>{e.exports={en:["Shapes"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],hu_HU:["Elrejtett Eszközök Mutatása"]}},85786:e=>{e.exports={en:["Show Object Tree"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],hu_HU:["Rajzmódban Marad"]}},94593:e=>{e.exports={en:["Strong Magnet"]}},95481:e=>{e.exports={en:["Symbol"],hu_HU:["Szimbólum"]}},74007:e=>{e.exports={en:["Symbol & description"]}},51165:e=>{e.exports={en:["Symbol Search"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],hu_HU:["Rajzok szinkronizálása minden charttal"]}},46417:e=>{e.exports={en:["Patterns"]}},36167:e=>{e.exports={en:["Pitchforks"],hu_HU:["Villák"]}},79366:e=>{e.exports={en:["Previous day close price line"]}},76753:e=>{e.exports={en:["Recent search"]}},28051:e=>{e.exports={en:["Regular session"]}},57118:e=>{e.exports={en:["Remove Drawings"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"]}},96374:e=>{e.exports={en:["Remove drawings"]}},85106:e=>{e.exports={en:["Remove from favorites"],hu_HU:["Eltávolít kedvencek közül"]}},99984:e=>{e.exports={en:["Remove indicators"],hu_HU:["Indikátorok Eltávolítása"]}},38206:e=>{e.exports={en:["Rename chart layout"]}},31789:e=>{e.exports={en:["Reset chart"],hu_HU:["Chart visszaállítása"]}},3519:e=>{e.exports={en:["Weak Magnet"]}},65831:e=>{e.exports={en:["Text & Notes"]}},48773:e=>{e.exports={en:["Trend line tools"],hu_HU:["Trend Line Tools"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"]}},69260:e=>{e.exports={en:["Volume-based"]}},78659:e=>{e.exports={
|
||||
en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"]}},55774:e=>{e.exports={en:["Zoom In"],hu_HU:["Nagyítás"]}},37310:e=>{e.exports={en:["Zoom Out"],hu_HU:["Kicsinyítés"]}},70932:e=>{e.exports={en:["commodity"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},46128:e=>{e.exports={en:["crypto"],hu_HU:["kripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"]}},87464:e=>{e.exports={en:["index"]}},90250:e=>{e.exports={en:["indices"]}},76752:e=>{e.exports={en:["stock"]}},94521:e=>{e.exports={en:["sync drawings"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"]}}}]);
|
||||
@@ -1,5 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],hu_HU:["(Ny + M + A + Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],hu_HU:["(M + A + Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],hu_HU:["(M + A)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],hu_HU:["Bárszínek az előző záró alapján"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],hu_HU:["Szálkereszt"]}},81849:e=>{e.exports={en:["Currency"],hu_HU:["Valuta"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"],hu_HU:["Riasztások"]}},14119:e=>{e.exports={en:["Arguments"],hu_HU:["Argumentumok"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"],hu_HU:["Alsó"]}},3159:e=>{e.exports={en:["Bottom line"],hu_HU:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],hu_HU:["Határok"]}},79468:e=>{e.exports={en:["Background"],hu_HU:["Háttér"]}},10842:e=>{e.exports={en:["Bar change values"],hu_HU:["Bar Change Values"]}},28975:e=>{e.exports={en:["Base level"],hu_HU:["Base Level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"],hu_HU:["Date Format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"],hu_HU:["Alapértelmezett"]}},78734:e=>{e.exports={en:["Description"],hu_HU:["Leírás"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],hu_HU:["Események"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],hu_HU:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],hu_HU:["Fill Bottom Area"]}},886:e=>{e.exports={en:["HLC bars"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],hu_HU:["Indikátorok"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"],hu_HU:["Bal"]}},8249:e=>{e.exports={en:["Money"],hu_HU:["Pénz"]}},70937:e=>{e.exports={en:["Margins"],
|
||||
hu_HU:["Fedezeti Letét"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"],hu_HU:["Érme"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],hu_HU:["Skálák"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"],hu_HU:["Szimbólum"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"],hu_HU:["Százalék"]}},94408:e=>{e.exports={en:["Pips"],hu_HU:["Pipek"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],hu_HU:["Pontosság"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"],hu_HU:["Jobb"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],hu_HU:["Vízjel"]}},32163:e=>{e.exports={en:["Wick"],hu_HU:["Kanóc"]}},97118:e=>{e.exports={en:["Top"],hu_HU:["Felső"]}},89349:e=>{e.exports={en:["Top line"],hu_HU:["Top Line"]}},70320:e=>{e.exports={en:["Text"],hu_HU:["Szöveg"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],hu_HU:["Thin Bars"]}},70198:e=>{e.exports={en:["Title"],hu_HU:["Cím"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"],hu_HU:["Időzóna"]}},76495:e=>{e.exports={en:["Trading"],hu_HU:["Kereskedés"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"],hu_HU:["Volumen"]}},51514:e=>{e.exports={en:["Value"],hu_HU:["Érték"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={
|
||||
en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"]}},35111:e=>{e.exports={
|
||||
en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{
|
||||
e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"],hu_HU:["Áttetsző Gyertyák"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],hu_HU:["Renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"],hu_HU:["n"]}},44634:e=>{e.exports={en:["h"],hu_HU:["ó"]}},5977:e=>{e.exports={en:["m"],hu_HU:["hó"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"],hu_HU:["N"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],hu_HU:["Z"]}},43253:e=>{e.exports={en:["H"],hu_HU:["Max"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],hu_HU:["Min"]}},46728:e=>{e.exports={en:["O"],hu_HU:["Ny"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"]}},85119:e=>{e.exports={en:["Dark"]}},96870:e=>{e.exports={en:["Light"]}},85886:e=>{e.exports={en:["d"],hu_HU:["n"]}},44634:e=>{e.exports={en:["h"],hu_HU:["ó"]}},5977:e=>{e.exports={en:["m"],hu_HU:["hó"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"]}},38691:e=>{e.exports={en:["D"],hu_HU:["N"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],hu_HU:["Z"]}},43253:e=>{e.exports={en:["H"],hu_HU:["Max"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],hu_HU:["Min"]}},46728:e=>{e.exports={en:["O"],hu_HU:["Ny"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"]},e.exports["1 Level Color_input"]={en:["1 Level Color"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"]},e.exports["1st Period_input"]={en:["1st Period"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"]},e.exports["2nd Period_input"]={en:["2nd Period"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"]},e.exports["3rd Period_input"]={en:["3rd Period"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"]},e.exports["4th Period_input"]={en:["4th Period"]},e.exports["5th Period_input"]={en:["5th Period"]},e.exports["6th Period_input"]={en:["6th Period"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"],
|
||||
hu_HU:["ATR Hossz"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],hu_HU:["Akkumuláció/Disztribúció"]},e.exports["All items_combobox_input"]={en:["All items"]},e.exports.All_input={en:["All"]},e.exports["Anchor Period_input"]={en:["Anchor Period"]},e.exports["Another symbol_input"]={en:["Another symbol"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"]},e.exports.Back_input={en:["Back"]},e.exports["Bands style_input"]={en:["Bands style"]},e.exports.Bar_input={en:["Bar"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"]},e.exports["Base Line_input"]={en:["Base Line"]},e.exports.Basis_input={en:["Basis"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"]},e.exports.Borders_input={en:["Borders"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"]},e.exports["Box size_input"]={en:["Box size"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"]},e.exports.Candles_input={en:["Candles"]},e.exports.Centered_input={en:["Centered"]},e.exports.Century_input={en:["Century"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"],hu_HU:["Zárás"]},e.exports["Color 0_input"]={en:["Color 0"]},e.exports["Color 1_input"]={en:["Color 1"]},e.exports["Color 2_input"]={en:["Color 2"]},e.exports["Color 3_input"]={en:["Color 3"]},e.exports["Color 4_input"]={en:["Color 4"]},e.exports["Color 5_input"]={en:["Color 5"]},e.exports["Color 6_input"]={en:["Color 6"]},e.exports["Color 7_input"]={en:["Color 7"]},e.exports["Color 8_input"]={en:["Color 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],hu_HU:["Szín az előző záróár alapján"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"]},e.exports["Conversion Line_input"]={en:["Conversion Line"]},e.exports.Correlation_input={en:["Correlation"]},e.exports.Count_input={en:["Count"]},e.exports.Crosses_input={en:["Crosses"]},e.exports.Custom_input={en:["Custom"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"]},e.exports["Days Per Year_input"]={en:["Days Per Year"]},e.exports.Decade_input={en:["Decade"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"]},e.exports["Deviation (%)_input"]={
|
||||
en:["Deviation (%)"]},e.exports.Deviation_input={en:["Deviation"]},e.exports.Divisor_input={en:["Divisor"]},e.exports["Down Volume_input"]={en:["Down Volume"]},e.exports["Down bars_input"]={en:["Down bars"]},e.exports["Down color_input"]={en:["Down color"]},e.exports["Down fractals_input"]={en:["Down fractals"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"]},e.exports["Equality Line_input"]={en:["Equality Line"]},e.exports.Exponential_input={en:["Exponential"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"]},e.exports["Extend Right_input"]={en:["Extend Right"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"]},e.exports.Falling_input={en:["Falling"]},e.exports["Fast Length_input"]={en:["Fast Length"]},e.exports["Fast length_input"]={en:["Fast length"]},e.exports.Fill_input={en:["Fill"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"]},e.exports["HLC bars_input"]={en:["HLC bars"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"]},e.exports.Histogram_input={en:["Histogram"]},e.exports["Hull MA_input"]={en:["Hull MA"]},e.exports.Increment_input={en:["Increment"]},e.exports.Indicator_input={en:["Indicator"]},e.exports["Instrument 1_input"]={en:["Instrument 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"]},e.exports["Jaw Length_input"]={en:["Jaw Length"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],hu_HU:["Lead 1"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],hu_HU:["Lagging Span 2 Periods"]},e.exports["Length EMA_input"]={en:["Length EMA"],hu_HU:["EMA Hossz"]},e.exports["Length MA_input"]={en:["Length MA"],hu_HU:["MA Hossz"]},e.exports.Length1_input={en:["Length1"]},e.exports.Length2_input={en:["Length2"]},e.exports.Length3_input={en:["Length3"],
|
||||
hu_HU:["Hossz3"]},e.exports.Length_input={en:["Length"],hu_HU:["Hossz"]},e.exports.Level_input={en:["Level"]},e.exports["Levels Format_input"]={en:["Levels Format"]},e.exports.Limit_input={en:["Limit"]},e.exports.Line_input={en:["Line"],hu_HU:["Vonal"]},e.exports["Lips Length_input"]={en:["Lips Length"]},e.exports["Lips Offset_input"]={en:["Lips Offset"]},e.exports.Lips_input={en:["Lips"]},e.exports["Long Length_input"]={en:["Long Length"]},e.exports["Long RoC Length_input"]={en:["Long RoC Length"]},e.exports["Long length_input"]={en:["Long length"]},e.exports["Long period_input"]={en:["Long period"]},e.exports.Long_input={en:["Long"]},e.exports["Lower Band_input"]={en:["Lower Band"]},e.exports["Lower Deviation_input"]={en:["Lower Deviation"]},e.exports["Lower Percentage_input"]={en:["Lower Percentage"]},e.exports.LowerLimit_input={en:["LowerLimit"]},e.exports.Lower_input={en:["Lower"]},e.exports["MA Length_input"]={en:["MA Length"],hu_HU:["MA hosszúság"]},e.exports.MACD_input={en:["MACD"]},e.exports.MA_input={en:["MA"]},e.exports.MF_input={en:["MF"]},e.exports.MM_month_input={en:["MM"]},e.exports.MOM_input={en:["MOM"]},e.exports["Main chart symbol_input"]={en:["Main chart symbol"]},e.exports["Market Closed Percentage_input"]={en:["Market Closed Percentage"]},e.exports["Market only_input"]={en:["Market only"]},e.exports["Max value_input"]={en:["Max value"]},e.exports.Median_input={en:["Median"]},e.exports.Method_input={en:["Method"]},e.exports.Middle_input={en:["Middle"]},e.exports.Minimize_input={en:["Minimize"]},e.exports.Month_input={en:["Month"]},e.exports.Move_input={en:["Move"]},e.exports["Multi timeframe_input"]={en:["Multi timeframe"]},e.exports.Multiplier_input={en:["Multiplier"]},e.exports.NV_input={en:["NV"]},e.exports["Nothing selected_combobox_input"]={en:["Nothing selected"]},e.exports["Number Of Rows_input"]={en:["Number Of Rows"]},e.exports["Number of line_input"]={en:["Number of line"]},e.exports.OSC_input={en:["OSC"]},e.exports.Offset_input={en:["Offset"]},e.exports.OnBalanceVolume_input={en:["OnBalanceVolume"]},e.exports["One step back building_input"]={en:["One step back building"]},e.exports.Oscillator_input={en:["Oscillator"]},e.exports.Overbought_input={en:["Overbought"]},e.exports.Oversold_input={en:["Oversold"]},e.exports.POC_input={en:["POC"]},e.exports.PVT_input={en:["PVT"]},e.exports.P_input={en:["P"]},e.exports.ParabolicSAR_input={en:["ParabolicSAR"]},e.exports.Percent_input={en:["Percent"]},e.exports["Percentage LTP({percentageLTPValue}%)_input"]={en:["Percentage LTP({percentageLTPValue}%)"]},e.exports["Percentage LTP_input"]={en:["Percentage LTP"]},e.exports.Percentage_input={en:["Percentage"]},e.exports.Period_input={en:["Period"]},e.exports.Periods_input={en:["Periods"]},e.exports["Phantom bars_input"]={en:["Phantom bars"]},e.exports.Placement_input={en:["Placement"]},e.exports.Plot_input={en:["Plot"]},e.exports["Plots Background_input"]={en:["Plots Background"]},e.exports["Post-market only_input"]={en:["Post-market only"]},e.exports["Pre-market only_input"]={en:["Pre-market only"]},
|
||||
@@ -22,24 +22,25 @@ e.exports["Volatility Stop_study"]={en:["Volatility Stop"],hu_HU:["Volatilitás
|
||||
en:["Change symbol. Start typing symbol name"]}},48566:e=>{e.exports={en:["Change scale currency"]}},85110:e=>{e.exports={en:["Change scale unit"]}},56275:e=>{e.exports={en:["Chart #{index}"]}},39950:e=>{e.exports={en:["Chart Properties"],hu_HU:["Chart Tulajdonságok"]}},98856:e=>{e.exports={en:["Chart by TradingView"]}},1136:e=>{e.exports={en:["Chart for {symbol}, {interval}"]}},69804:e=>{e.exports={en:["Chart image copied to clipboard {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"],hu_HU:["Chatham-szigetek"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"],hu_HU:["Kör"]}},14985:e=>{e.exports={en:["Click to set a point"],hu_HU:["Klikkelj a pont megadásához"]}},12537:e=>{e.exports={en:["Clone"],hu_HU:["Klón"]}},62578:e=>{e.exports={en:["Close"],hu_HU:["Zárás"]}},264:e=>{e.exports={en:["Create limit order"]}},6969:e=>{e.exports={en:["Cross"],hu_HU:["Kereszt"]}},74334:e=>{e.exports={en:["Cross Line"]}},59396:e=>{e.exports={en:["Currencies"],hu_HU:["Devizák"]}},20177:e=>{e.exports={en:["Current interval and above"]}},494:e=>{e.exports={en:["Current interval and below"]}},60668:e=>{e.exports={en:["Current interval only"]}},78609:e=>{e.exports={en:["Curve"],hu_HU:["Görbe"]}},87380:e=>{e.exports={en:["Cycle"],hu_HU:["Ciklus"]}},84031:e=>{e.exports={en:["Cyclic Lines"],hu_HU:["Ciklikus Vonalak"]}},93191:e=>{e.exports={en:["Cypher Pattern"],hu_HU:["Rejtjel Minta"]}},7219:e=>{e.exports={en:["A layout with that name already exists"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],hu_HU:["ABCD Minta"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"]}},42630:e=>{e.exports={en:["Anchorage"]}},42669:e=>{e.exports={en:["Anchored Text"],hu_HU:["Horgony Szöveg"]}},84541:e=>{e.exports={en:["Anchored VWAP"]}},77401:e=>{e.exports={en:["Access error"]}},46501:e=>{e.exports={en:["Add Symbol"],hu_HU:["Szimbólum Hozzáadása"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],hu_HU:["Mindig Láthatatlan"]}},36299:e=>{e.exports={en:["Always visible"],hu_HU:["Mindig Látható"]}},58026:e=>{e.exports={en:["All intervals"]}},78358:e=>{e.exports={en:["Apply default"],hu_HU:["Alapértelmezett Beállítás"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"]}},27072:e=>{e.exports={en:["Apr"],hu_HU:["Ápr"]}
|
||||
},59324:e=>{e.exports={en:["Arc"],hu_HU:["Ív"]}},34456:e=>{e.exports={en:["Area"],hu_HU:["Terület"]}},11858:e=>{e.exports={en:["Arrow"],hu_HU:["Nyíl"]}},34247:e=>{e.exports={en:["Arrow Down"]}},36352:e=>{e.exports={en:["Arrow Marker"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],hu_HU:["Nyíl Lefelé"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],hu_HU:["Nyíl Balra"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],hu_HU:["Nyíl Jobbra"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],hu_HU:["Nyíl Felfelé"]}},77231:e=>{e.exports={en:["Arrow Up"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],hu_HU:["Asgábád"]}},72445:e=>{e.exports={en:["At close"]}},73702:e=>{e.exports={en:["Athens"],hu_HU:["Athén"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],hu_HU:["Auto (Fits Data To Screen)"]}},46450:e=>{e.exports={en:["Aug"]}},21841:e=>{e.exports={en:["Average close price label"]}},16138:e=>{e.exports={en:["Average close price line"]}},73025:e=>{e.exports={en:["Avg"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"],hu_HU:["Bogotá"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"],hu_HU:["Ballon"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"],hu_HU:["Bárok"]}},81994:e=>{e.exports={en:["Bars Pattern"],hu_HU:["Bár Minta"]}},59213:e=>{e.exports={en:["Baseline"],hu_HU:["Alapvonal"]}},71797:e=>{e.exports={en:["Belgrade"]}},64313:e=>{e.exports={en:["Berlin"]}},43539:e=>{e.exports={en:["Brush"],hu_HU:["Ecset"]}},91499:e=>{e.exports={en:["Brussels"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],hu_HU:["Előterjesztés"]}},17293:e=>{e.exports={en:["Bring to front"],hu_HU:["Előrehozás"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],hu_HU:["TradingView Által"]}},54280:e=>{e.exports={en:["Go to date"],hu_HU:["Ugrás dátumhoz"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"]}},47460:e=>{e.exports={en:["Gann Box"],hu_HU:["Gann Doboz"]}},48683:e=>{e.exports={en:["Gann Fan"],hu_HU:["Gann Legyező"]}},44763:e=>{e.exports={en:["Gann Square"],hu_HU:["Gann Négyszög"]}},60707:e=>{e.exports={en:["Gann Square Fixed"]}},46808:e=>{e.exports={en:["Ghost Feed"],hu_HU:["Ghost Hírfolyam"]}},57726:e=>{e.exports={en:["Grand supercycle"],hu_HU:["Nagy Szuperciklus"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],
|
||||
hu_HU:["Biztos, hogy törölni akarod a tanulmányt?"]}},77125:e=>{e.exports={en:["Double Curve"],hu_HU:["Dupla Görbe"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"]}},75296:e=>{e.exports={en:["Double-click to finish Path"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"]}},57131:e=>{e.exports={en:["Data Provided by"]}},22677:e=>{e.exports={en:["Date"],hu_HU:["Dátum"]}},85444:e=>{e.exports={en:["Date Range"],hu_HU:["Időintervallum"]}},47017:e=>{e.exports={en:["Date and Price Range"],hu_HU:["Dátum és Árfolyamtartomány"]}},32084:e=>{e.exports={en:["Dec"]}},23403:e=>{e.exports={en:["Degree"],hu_HU:["Fokozat"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"]}},91544:e=>{e.exports={en:["Disjoint Channel"]}},70132:e=>{e.exports={en:["Displacement"]}},93864:e=>{e.exports={en:["Drawings toolbar"],hu_HU:["Rajzok Eszköztár"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"]}},23650:e=>{e.exports={en:["Dubai"],hu_HU:["Dubaj"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],hu_HU:["Add meg az új chart elrendezés nevét"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],hu_HU:["Elliot Korrekciós Hullám (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],hu_HU:["Elliott Dupla Kombinációs Hullám (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],hu_HU:["Elliott Impulzushullám (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],hu_HU:["Elliott Háromszög Hullám (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],hu_HU:["Elliott Tripla Kombinációs Hullám (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],hu_HU:["Ellipszis"]}},52788:e=>{e.exports={en:["Extended Line"]}},86905:e=>{e.exports={en:["Exchange"],hu_HU:["Tőzsde"]}},19271:e=>{e.exports={en:["Existing pane above"],hu_HU:["Existing Pane Above"]}},46545:e=>{e.exports={en:["Existing pane below"],hu_HU:["Existing Pane Below"]}},20138:e=>{e.exports={en:["Forecast"],hu_HU:["Előrejelzés"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],hu_HU:["Fib Csatorna"]}},82330:e=>{e.exports={en:["Fib Circles"],hu_HU:["Fib Körök"]}},55986:e=>{e.exports={en:["Fib Retracement"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],hu_HU:["Fib Speed Ellenállás Ívek"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],hu_HU:["Fib Speed Ellenállás Fan"]}},39014:e=>{e.exports={en:["Fib Spiral"],hu_HU:["Fib Spirál"]}},30622:e=>{e.exports={en:["Fib Time Zone"],hu_HU:["Fib Időzóna"]}},85042:e=>{e.exports={en:["Fib Wedge"],hu_HU:["Fib Ék"]}},33885:e=>{e.exports={en:["Flag"]}},14600:e=>{e.exports={en:["Flag Mark"],hu_HU:["Zászló Jel"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],hu_HU:["Lapos Felső/Alsó"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],hu_HU:["Érvénytelen törtrész."]}},24077:e=>{e.exports={
|
||||
en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"],hu_HU:["Kalkutta"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],hu_HU:["Áttetsző Gyertyák"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],hu_HU:["Vízszintes Vonal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],hu_HU:["Vízszintes Sugár"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],hu_HU:["Elrejt"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"],hu_HU:["Események Elrejtése a Chartról"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"],hu_HU:["Jelölések Elrejtése a Bárokon"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"],hu_HU:["Max"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],hu_HU:["Közbülső"]}},14285:e=>{e.exports={en:["Invalid Symbol"],hu_HU:["Érvénytelen Szimbólum"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"],hu_HU:["Invert Scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"],hu_HU:["Indikátor Beillesztés"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],hu_HU:["Belső Villa"]}},37913:e=>{e.exports={en:["Icon"],hu_HU:["Ikon"]}},78326:e=>{e.exports={
|
||||
en:["Istanbul"],hu_HU:["Isztambul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"],hu_HU:["Júl"]}},429:e=>{e.exports={en:["Jun"],hu_HU:["Jún"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],hu_HU:["Hoppá!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"],hu_HU:["Okt"]}},16610:e=>{e.exports={en:["Open"],hu_HU:["Nyitó"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],hu_HU:["Min"]}},51077:e=>{e.exports={en:["Lock"],hu_HU:["Zárás"]}},79777:e=>{e.exports={en:["Lock/unlock"],hu_HU:["Zárás/Feloldás"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],hu_HU:["Lock Price To Bar Ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"],hu_HU:["Long Pozíció"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"],hu_HU:["Címkék"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],hu_HU:["Vonal"]}},9394:e=>{e.exports={en:["Line with markers"],hu_HU:["Jelölésekkel"]}},43588:e=>{e.exports={en:["Line break"],hu_HU:["Vonaltörés"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],hu_HU:["Módosított Schiff Villa"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"],hu_HU:["Moszkva"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],hu_HU:["Már"]}},73332:e=>{e.exports={en:["Mexico City"],hu_HU:["Mexikóváros"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"],hu_HU:["Mikro"]}},87957:e=>{e.exports={en:["Millennium"],hu_HU:["Évezred"]}},14724:e=>{e.exports={en:["Minuette"],hu_HU:["Menüett"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],hu_HU:["No Scale (Fullscreen)"]}},9140:e=>{
|
||||
e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],hu_HU:["Megjegyzés"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],hu_HU:["Új-Zéland"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],hu_HU:["Valami hiba történt"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],hu_HU:["Új Chart Elrendezés Mentése"]}},76266:e=>{e.exports={en:["Save as"],hu_HU:["Mentés Másként"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"],hu_HU:["São Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],hu_HU:["Csak az Árskála Chart"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],hu_HU:["Schiff Villa"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],hu_HU:["Beállítások"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],hu_HU:["A második törtrész érvénytelen."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],hu_HU:["Visszaküldés"]}},71179:e=>{e.exports={en:["Send backward"],hu_HU:["Hátrébb Küldés"]}},26820:e=>{e.exports={en:["Seoul"],hu_HU:["Szöul"]}},6816:e=>{e.exports={en:["Sep"],hu_HU:["Szep"]}},94031:e=>{e.exports={en:["Session"],hu_HU:["Munkamenet"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],hu_HU:["Munkamenet Szünetek"]}},1852:e=>{e.exports={en:["Shanghai"],hu_HU:["Sanghaj"]}},8075:e=>{e.exports={en:["Short Position"],hu_HU:["Short Pozíció"]}},98334:e=>{e.exports={en:["Show"],hu_HU:["Mutat"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"],hu_HU:["Show All Ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"],hu_HU:["Osztalékok Mutatása"]}},37113:e=>{e.exports={en:["Show earnings"],hu_HU:["Nyereség Mutatása"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],hu_HU:["Show Ideas of Followed Users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],hu_HU:["Show My Ideas Only"]}},50849:e=>{e.exports={
|
||||
en:["Show splits"],hu_HU:["Felosztások Mutatása"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],hu_HU:["Szingapúr"]}},39090:e=>{e.exports={en:["Sine Line"],hu_HU:["Szinuszvonal"]}},66205:e=>{e.exports={en:["Square"],hu_HU:["Négyzet"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"],hu_HU:["Stílus"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],hu_HU:["Rajzmódban Marad"]}},69217:e=>{e.exports={en:["Step line"],hu_HU:["Lépcső"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"],hu_HU:["Szubmikro"]}},63375:e=>{e.exports={en:["Submillennium"],hu_HU:["Szubévezred"]}},30585:e=>{e.exports={en:["Subminuette"],hu_HU:["Szubminüett"]}},67948:e=>{e.exports={en:["Supercycle"],hu_HU:["Szuperciklus"]}},3348:e=>{e.exports={en:["Supermillennium"],hu_HU:["Szuperévezred"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],hu_HU:["Symbol Name Label"]}},10127:e=>{e.exports={en:["Symbol last price label"],hu_HU:["Symbol Last Value Label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"],hu_HU:["Sync To All Charts"]}},76519:e=>{e.exports={en:["Point & figure"],hu_HU:["Pont & Ábra"]}},39949:e=>{e.exports={en:["Polyline"],hu_HU:["Sokszögvonal"]}},371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"],hu_HU:["Párhuzamos Csatorna"]}},61879:e=>{e.exports={en:["Paris"],hu_HU:["Párizs"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],hu_HU:["Villa"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"]}},3564:e=>{
|
||||
e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"],hu_HU:["Árcímke"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"],hu_HU:["Ártartomány"]}},66123:e=>{e.exports={en:["Price format is invalid."],hu_HU:["Érvénytelen árformátum."]}},72926:e=>{e.exports={en:["Price line"],hu_HU:["Árvonal"]}},59189:e=>{e.exports={en:["Primary"],hu_HU:["Elsődleges"]}},75747:e=>{e.exports={en:["Projection"],hu_HU:["Vetület"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],hu_HU:["Elforgatott Téglalap"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"],hu_HU:["Sugár"]}},55169:e=>{e.exports={en:["Range"],hu_HU:["Tartomány"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],hu_HU:["Téglalap"]}},48236:e=>{e.exports={en:["Redo"],hu_HU:["Újra"]}},2460:e=>{e.exports={en:["Regression Trend"],hu_HU:["Regresszió Trend"]}},67410:e=>{e.exports={en:["Remove"],hu_HU:["Eltávolítás"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],hu_HU:["Chart Elrendezés Átnevezése"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],hu_HU:["Reset Price Scale"]}},54170:e=>{e.exports={en:["Reset time scale"],hu_HU:["Reset Time Scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"],hu_HU:["Figyelmeztetés"]}},5959:e=>{e.exports={en:["Warsaw"],hu_HU:["Varsó"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],hu_HU:["Tokió"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"],hu_HU:["Tajpej"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],hu_HU:["Teherán"]}},93553:e=>{e.exports={en:["Template"],hu_HU:["Sablon"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={
|
||||
en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],hu_HU:["Ezt az indikátort nem lehet alkalmazni egy másik indikátorra"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],hu_HU:["The symbol available only on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],hu_HU:["Három Hajtás Minta"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"],hu_HU:["Idő"]}},20909:e=>{e.exports={en:["Time zone"],hu_HU:["Időzóna"]}},46852:e=>{e.exports={en:["Time Cycles"],hu_HU:["Ciklusidők"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"],hu_HU:["Kereskedés"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"],hu_HU:["Trendszög"]}},97339:e=>{e.exports={en:["Trend Line"],hu_HU:["Trendvonal"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],hu_HU:["Trendalapú Fib Kiterjesztés"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],hu_HU:["Trendalapú Fib Idő"]}},1671:e=>{e.exports={en:["Triangle"],hu_HU:["Háromszög"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"],hu_HU:["Háromszög Minta"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],hu_HU:["Visszavonás"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"],hu_HU:["Ismeretlen hiba"]}},99894:e=>{e.exports={en:["Unlock"],hu_HU:["Feloldás"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],hu_HU:["Függőleges Vonal"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],hu_HU:["Láthatóság"]}},
|
||||
54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],hu_HU:["Az Egér Föléhúzásakor Látható"]}},4077:e=>{e.exports={en:["Visual order"],hu_HU:["Vizuális Elrendezés"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],hu_HU:["XABCD Minta"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"],hu_HU:["Zürich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"],hu_HU:["Felbontás Módosítása"]}},35400:e=>{e.exports={en:["change symbol"],hu_HU:["Szimbólum módosítása"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},
|
||||
47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"],hu_HU:["TradingView chartok"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],hu_HU:["Jelölések Elrejtése a Bárokon"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"],hu_HU:["Invert Scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."],hu_HU:["töltés..."]}},76104:e=>{e.exports={en:["lock {title}"]}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={
|
||||
en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"],hu_HU:["Csak az Árskála Chart"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"],hu_HU:["támogatta a TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"],hu_HU:["Reset Time Scale"]}},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{
|
||||
e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"],hu_HU:["Toggle Percentage Scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"],hu_HU:["{count} oszlop"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],hu_HU:["{symbol} TradingView pénzügyek"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],hu_HU:["APPLE INC"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],hu_HU:["S&P/ASX Összes Ausztrál 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],hu_HU:["S&P/ASX Összes Ausztrál 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],hu_HU:["ausztrál dollár/kanadai dollár"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],hu_HU:["ausztrál dollár / svájci frank"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],hu_HU:["ausztrál dollár / japán jen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],hu_HU:["ausztrál dollár / új-zélandi dollár"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],hu_HU:["ausztrál dollár / orosz rúbel"]},
|
||||
e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],hu_HU:["ausztrál dollár / amerikai dollár"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],hu_HU:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],hu_HU:["bitcoin cash / amerikai dollár"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],hu_HU:["BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],hu_HU:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],hu_HU:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],hu_HU:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],hu_HU:["brazil dollár / japán jen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],hu_HU:["bitcoin / brazil reál"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],hu_HU:["bitcoin / kanadai dollár"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],hu_HU:["bitcoin / kínai jüan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],hu_HU:["bitcoin / euró"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],hu_HU:["bitcoin / brit font"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],hu_HU:["bitcoin / japán jen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],hu_HU:["bitcoin / dél-koreai won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],hu_HU:["bitcoin / lengyel zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],hu_HU:["bitcoin / amerikai dollár"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],hu_HU:["bitcoin gold / amerikai dollár"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],hu_HU:["kanadai dollár / japán jen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],hu_HU:["kanadai dollár / amerikai dollár"]},
|
||||
e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],hu_HU:["svájci frank/japán jen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],hu_HU:["svájci frank / amerikai dollár"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],hu_HU:["Réz"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},
|
||||
e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],hu_HU:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],hu_HU:["ethereum classic / amerikai dollár"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],hu_HU:["ethereum / amerikai dollár"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],hu_HU:["eurókötvények"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],hu_HU:["euró / ausztrál dollár"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],hu_HU:["euró / brazil reál"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],hu_HU:["euró / kanadai dollár"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],hu_HU:["Euró Fx/svájci frank"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],hu_HU:["Euró Fx/brit font"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],hu_HU:["Euró Fx/japán jen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],hu_HU:["euró / új-zélandi dollár"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},
|
||||
e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],hu_HU:["EURÓ / OROSZ RUBEL"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],hu_HU:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],hu_HU:["Euró Fx/új török líra"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],hu_HU:["euró / amerikai dollár"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],hu_HU:["Euro Stoxx 50 index európai jegyzett részvények"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],hu_HU:["brit font / ausztrál dollár"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],hu_HU:["brit font / kanadai dollár"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],hu_HU:["brit font/svájci frank"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],hu_HU:["FONT STERLING / EURÓ"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],hu_HU:["brit font//japán jen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],hu_HU:["brit font / új-zélandi dollár"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],hu_HU:["font sterling / orosz rubel"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],hu_HU:["brit font / amerikai dollár"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],hu_HU:["DAX index német jegyzett részvények"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],hu_HU:["GOOGLE INC"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],hu_HU:["WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={
|
||||
en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],hu_HU:["Dzsakarta Kompozit Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],hu_HU:["Bursa Malajzia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],hu_HU:["Sanghaj Kompozit Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],hu_HU:["IOTA / amerikai dollár"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],hu_HU:["#JPN225-symbol-description"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],hu_HU:["JEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],hu_HU:["JEN / OROSZ RUBEL"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],hu_HU:["japán jen / amerikai dollár"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],hu_HU:["litecoin / bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],hu_HU:["litecoin / amerikai dollár"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],hu_HU:["MOEX Oroszország Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],hu_HU:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],hu_HU:["NASDAQ 100 amerikai jegyzett részvények"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={
|
||||
en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],hu_HU:["Iteris Inc."]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],hu_HU:["NEO / amerikai dollár"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],hu_HU:["Földgáz (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],hu_HU:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],hu_HU:["Kávé Határidősők"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],hu_HU:["ALIBABA GROUP HLDG LTD"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={
|
||||
en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],hu_HU:["új-zélandi dollár / japán jen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],hu_HU:["új-zélandi dollár / amerikai dollár"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],hu_HU:["S&P/NZX ÖSSZES Index ( Tőkeindex)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],hu_HU:["Földgáz"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],hu_HU:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],hu_HU:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],hu_HU:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],hu_HU:["Orosz RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],hu_HU:["S&P 500 index amerikai jegyzett részvények"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],hu_HU:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},
|
||||
e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],hu_HU:["S&P/TSX Kompozit"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],hu_HU:["Ausztrál Dollár Devizaindex"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],hu_HU:["CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],hu_HU:["Kanadai Dollár Devizaindex"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],hu_HU:["Amerikai Dollár Devizaindex"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],hu_HU:["Spanyol Államkötvények 10 éves"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],hu_HU:["Spanyol Államkötvények 10 éves"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"],hu_HU:["Eurókötvény"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],hu_HU:["UK Államkötvények 2 éves"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],hu_HU:["UK Államkötvények 10 éves"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],hu_HU:["UK Államkötvények 10 éves"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],hu_HU:["ARANY (US$/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],hu_HU:["Indonéz Államkötvények 3 éves"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],hu_HU:["Indonéz Államkötvények 10 éves"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]
|
||||
},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],hu_HU:["Indiai államkötvények 10 éves"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],hu_HU:["Olasz államkötvények 10 éves"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],hu_HU:["NASDAQ Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],hu_HU:["japán államkötvények 10 éves"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],hu_HU:["NASDAQ 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],hu_HU:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],hu_HU:["PALLÁDIUM (US$/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],hu_HU:["Portugál Államkötvények 10 éves"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],hu_HU:["Portugál Államkötvények 10 éves"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],hu_HU:["EZÜST (US$/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={
|
||||
en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],hu_HU:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],hu_HU:["US államkötvények 2 éves"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],hu_HU:["US államkötvények 5 éves"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],hu_HU:["US államkötvények 10 éves"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],hu_HU:["Új-zélandi Dollár Devizaindex"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],hu_HU:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],hu_HU:["amerikai dollár / ausztrál dollár"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],hu_HU:["amerikai dollár / brazil reál"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],hu_HU:["amerikai dollár / kanadai dollár"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],hu_HU:["amerikai dollár / svájci frank"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],hu_HU:["amerikai dollár / jüan renminbi"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],hu_HU:["amerikai follár / dán korona"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],hu_HU:["amerikai dollár / euró"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],hu_HU:["amerikai dollár / brit font"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],hu_HU:["amerikai dollár / hong kongi dollár"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],hu_HU:["amerikai dollár / rúpia"]},e.exports["#USDILS-symbol-description"]={
|
||||
en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],hu_HU:["amerikai dollár / indiai rúpia"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],hu_HU:["amerikai dollár / japán jen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],hu_HU:["amerikai dollár / dél-koreai won"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],hu_HU:["amerikai dollár / mexikói peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],hu_HU:["amerikai dollár / új-zélandi dollár"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],hu_HU:["amerikai dollár /fülöp-szigeteki peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],hu_HU:["amerikai dollár / lengyel zloty"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],hu_HU:["amerikai dollár / orosz rúbel"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],hu_HU:["amerikai dollár / orosz rúbel TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],hu_HU:["amerikai dollár / svéd korona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],hu_HU:["amerikai dollár / szingapúri dollár"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],hu_HU:["amerikai dollár / török líra"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],hu_HU:["amerikai dollár / dél-afrikai rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],hu_HU:["ezüst / amerikai dollár"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],hu_HU:["arany / amerikai dollár"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],hu_HU:["bitcoin / kanadai dollár"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],hu_HU:["monero / amerikai dollár"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],hu_HU:["platina / amerikai dollár"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],hu_HU:["Ripple / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],hu_HU:["Ripple / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],hu_HU:["ripple / amerikai dollár"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],hu_HU:["Zcash / amerikai dollár"]}}}]);
|
||||
en:["Fundamental studies are no longer available on charts"]}},31561:e=>{e.exports={en:["Kolkata"],hu_HU:["Kalkutta"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"]}},886:e=>{e.exports={en:["HLC bars"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],hu_HU:["Áttetsző Gyertyák"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],hu_HU:["Vízszintes Vonal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],hu_HU:["Vízszintes Sugár"]}},21928:e=>{e.exports={en:["Head and Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],hu_HU:["Elrejt"]}},47074:e=>{e.exports={en:["Hide all"]}},52563:e=>{e.exports={en:["Hide all drawings"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"]}},78525:e=>{e.exports={en:["Hide all indicators"]}},42164:e=>{e.exports={en:["Hide all positions & orders"]}},3217:e=>{e.exports={en:["Hide drawings"]}},97878:e=>{e.exports={en:["Hide events on chart"],hu_HU:["Események Elrejtése a Chartról"]}},72351:e=>{e.exports={en:["Hide indicators"]}},28345:e=>{e.exports={en:["Hide marks on bars"],hu_HU:["Jelölések Elrejtése a Bárokon"]}},92226:e=>{e.exports={en:["Hide positions & orders"]}},78254:e=>{e.exports={en:["High"],hu_HU:["Max"]}},98236:e=>{e.exports={en:["High-low"]}},99479:e=>{e.exports={en:["High and low price labels"]}},33766:e=>{e.exports={en:["High and low price lines"]}},69476:e=>{e.exports={en:["Highlighter"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."]}},68065:e=>{e.exports={en:["Image"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],hu_HU:["Közbülső"]}},14285:e=>{e.exports={en:["Invalid Symbol"],hu_HU:["Érvénytelen Szimbólum"]}},52969:e=>{e.exports={en:["Invalid symbol"]}},37189:e=>{e.exports={en:["Invert scale"],hu_HU:["Invert Scale"]}},89999:e=>{e.exports={en:["Indexed to 100"]}},46850:e=>{e.exports={en:["Indicators value labels"]}},54418:e=>{e.exports={en:["Indicators name labels"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"]}},15992:e=>{e.exports={en:["Info Line"]}},87829:e=>{e.exports={en:["Insert indicator"],hu_HU:["Indikátor Beillesztés"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],hu_HU:["Belső Villa"]}},37913:e=>{e.exports={en:["Icon"],
|
||||
hu_HU:["Ikon"]}},78326:e=>{e.exports={en:["Istanbul"],hu_HU:["Isztambul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"]}},53786:e=>{e.exports={en:["Jul"],hu_HU:["Júl"]}},429:e=>{e.exports={en:["Jun"],hu_HU:["Jún"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"]}},55813:e=>{e.exports={en:["On the right"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."]}},21064:e=>{e.exports={en:["Oops!"],hu_HU:["Hoppá!"]}},51221:e=>{e.exports={en:["Object Tree"]}},12179:e=>{e.exports={en:["Oct"],hu_HU:["Okt"]}},16610:e=>{e.exports={en:["Open"],hu_HU:["Nyitó"]}},27884:e=>{e.exports={en:["Open layout. Press period"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],hu_HU:["Min"]}},51077:e=>{e.exports={en:["Lock"],hu_HU:["Zárás"]}},79777:e=>{e.exports={en:["Lock/unlock"],hu_HU:["Zárás/Feloldás"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],hu_HU:["Lock Price To Bar Ratio"]}},16170:e=>{e.exports={en:["Logarithmic"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"],hu_HU:["Long Pozíció"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"]}},52402:e=>{e.exports={en:["Label Up"]}},5119:e=>{e.exports={en:["Labels"],hu_HU:["Címkék"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],hu_HU:["Vonal"]}},9394:e=>{e.exports={en:["Line with markers"],hu_HU:["Jelölésekkel"]}},43588:e=>{e.exports={en:["Line break"],hu_HU:["Vonaltörés"]}},56982:e=>{e.exports={en:["Lines"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"]}},35049:e=>{e.exports={en:["Move to"]}},26493:e=>{e.exports={en:["Move scale to left"]}},40789:e=>{e.exports={en:["Move scale to right"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],hu_HU:["Módosított Schiff Villa"]}},93907:e=>{e.exports={en:["More settings"]}},64039:e=>{e.exports={en:["Moscow"],hu_HU:["Moszkva"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"],hu_HU:["Már"]}},73332:e=>{e.exports={en:["Mexico City"],hu_HU:["Mexikóváros"]}},88314:e=>{e.exports={en:["Merge all scales into one"]}},54215:e=>{e.exports={en:["Mixed"]}},24866:e=>{e.exports={en:["Micro"],hu_HU:["Mikro"]}},87957:e=>{e.exports={en:["Millennium"],hu_HU:["Évezred"]}},14724:e=>{e.exports={en:["Minuette"],hu_HU:["Menüett"]}},78273:e=>{e.exports={en:["Minuscule"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"]}},36252:e=>{e.exports={en:["No data here"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],
|
||||
hu_HU:["No Scale (Fullscreen)"]}},9140:e=>{e.exports={en:["No sync"]}},50910:e=>{e.exports={en:["No volume data"]}},99024:e=>{e.exports={en:["No, keep them"]}},94389:e=>{e.exports={en:["Note"],hu_HU:["Megjegyzés"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],hu_HU:["Új-Zéland"]}},15512:e=>{e.exports={en:["New pane above"]}},52160:e=>{e.exports={en:["New pane below"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],hu_HU:["Valami hiba történt"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],hu_HU:["Új Chart Elrendezés Mentése"]}},76266:e=>{e.exports={en:["Save as"],hu_HU:["Mentés Másként"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"],hu_HU:["São Paulo"]}},43931:e=>{e.exports={en:["Scale currency"]}},43758:e=>{e.exports={en:["Scale price chart only"],hu_HU:["Csak az Árskála Chart"]}},40012:e=>{e.exports={en:["Scale unit"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],hu_HU:["Schiff Villa"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."]}},32514:e=>{e.exports={en:["Settings"],hu_HU:["Beállítások"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],hu_HU:["A második törtrész érvénytelen."]}},75594:e=>{e.exports={en:["Security info"]}},21973:e=>{e.exports={en:["Send to back"],hu_HU:["Visszaküldés"]}},71179:e=>{e.exports={en:["Send backward"],hu_HU:["Hátrébb Küldés"]}},26820:e=>{e.exports={en:["Seoul"],hu_HU:["Szöul"]}},6816:e=>{e.exports={en:["Sep"],hu_HU:["Szep"]}},94031:e=>{e.exports={en:["Session"],hu_HU:["Munkamenet"]}},83298:e=>{e.exports={en:["Session volume profile"]}},66707:e=>{e.exports={en:["Session breaks"],hu_HU:["Munkamenet Szünetek"]}},1852:e=>{e.exports={en:["Shanghai"],hu_HU:["Sanghaj"]}},8075:e=>{e.exports={en:["Short Position"],hu_HU:["Short Pozíció"]}},98334:e=>{e.exports={en:["Show"],hu_HU:["Mutat"]}},85891:e=>{e.exports={en:["Show all drawings"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"]}},98753:e=>{e.exports={en:["Show all indicators"]}},55418:e=>{e.exports={en:["Show all ideas"],hu_HU:["Show All Ideas"]}},20506:e=>{e.exports={en:["Show all positions & orders"]}},33158:e=>{e.exports={en:["Show continuous contract switch"]}},81465:e=>{e.exports={en:["Show contract expiration"]}},29449:e=>{e.exports={en:["Show dividends"],hu_HU:["Osztalékok Mutatása"]}},37113:e=>{e.exports={en:["Show earnings"],hu_HU:["Nyereség Mutatása"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],hu_HU:["Show Ideas of Followed Users"]}},62986:e=>{e.exports={en:["Show latest news"]}},44020:e=>{e.exports={en:["Show my ideas only"],
|
||||
hu_HU:["Show My Ideas Only"]}},50849:e=>{e.exports={en:["Show splits"],hu_HU:["Felosztások Mutatása"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],hu_HU:["Szingapúr"]}},39090:e=>{e.exports={en:["Sine Line"],hu_HU:["Szinuszvonal"]}},66205:e=>{e.exports={en:["Square"],hu_HU:["Négyzet"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."]}},92516:e=>{e.exports={en:["Style"],hu_HU:["Stílus"]}},61507:e=>{e.exports={en:["Stack on the left"]}},97800:e=>{e.exports={en:["Stack on the right"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],hu_HU:["Rajzmódban Marad"]}},69217:e=>{e.exports={en:["Step line"],hu_HU:["Lépcső"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"],hu_HU:["Szubmikro"]}},63375:e=>{e.exports={en:["Submillennium"],hu_HU:["Szubévezred"]}},30585:e=>{e.exports={en:["Subminuette"],hu_HU:["Szubminüett"]}},67948:e=>{e.exports={en:["Supercycle"],hu_HU:["Szuperciklus"]}},3348:e=>{e.exports={en:["Supermillennium"],hu_HU:["Szuperévezred"]}},18905:e=>{e.exports={en:["Switch to {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],hu_HU:["Symbol Name Label"]}},10127:e=>{e.exports={en:["Symbol last price label"],hu_HU:["Symbol Last Value Label"]}},39079:e=>{e.exports={en:["Sync globally"]}},46607:e=>{e.exports={en:["Sync in layout"],hu_HU:["Sync To All Charts"]}},76519:e=>{e.exports={en:["Point & figure"],hu_HU:["Pont & Ábra"]}},39949:e=>{e.exports={en:["Polyline"],hu_HU:["Sokszögvonal"]}},371:e=>{e.exports={en:["Path"]}},59256:e=>{e.exports={en:["Parallel Channel"],hu_HU:["Párhuzamos Csatorna"]}},61879:e=>{e.exports={en:["Paris"],hu_HU:["Párizs"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"],hu_HU:["Villa"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"]}},28280:e=>{e.exports={en:["Pin to new right scale"]}},14115:e=>{e.exports={en:["Pin to left scale"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"]}},81054:e=>{e.exports={en:["Pin to right scale"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"]}},90095:e=>{e.exports={en:["Pinned to left scale"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"]}},44579:e=>{e.exports={en:["Pinned to right scale"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"]}},12645:e=>{
|
||||
e.exports={en:["Pinned to scale {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"]}},71566:e=>{e.exports={en:["Plus button"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"]}},81248:e=>{e.exports={en:["Prague"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"]}},91282:e=>{e.exports={en:["Price Label"],hu_HU:["Árcímke"]}},97512:e=>{e.exports={en:["Price Note"]}},68941:e=>{e.exports={en:["Price Range"],hu_HU:["Ártartomány"]}},66123:e=>{e.exports={en:["Price format is invalid."],hu_HU:["Érvénytelen árformátum."]}},72926:e=>{e.exports={en:["Price line"],hu_HU:["Árvonal"]}},59189:e=>{e.exports={en:["Primary"],hu_HU:["Elsődleges"]}},75747:e=>{e.exports={en:["Projection"],hu_HU:["Vetület"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],hu_HU:["Elforgatott Téglalap"]}},52961:e=>{e.exports={en:["Rome"]}},50318:e=>{e.exports={en:["Ray"],hu_HU:["Sugár"]}},55169:e=>{e.exports={en:["Range"],hu_HU:["Tartomány"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],hu_HU:["Téglalap"]}},48236:e=>{e.exports={en:["Redo"],hu_HU:["Újra"]}},2460:e=>{e.exports={en:["Regression Trend"],hu_HU:["Regresszió Trend"]}},67410:e=>{e.exports={en:["Remove"],hu_HU:["Eltávolítás"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"]}},86285:e=>{e.exports={en:["Remove {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],hu_HU:["Chart Elrendezés Átnevezése"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"]}},88853:e=>{e.exports={en:["Reset points"]}},15332:e=>{e.exports={en:["Reset price scale"],hu_HU:["Reset Price Scale"]}},54170:e=>{e.exports={en:["Reset time scale"],hu_HU:["Reset Time Scale"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"]}},66719:e=>{e.exports={en:["Warning"],hu_HU:["Figyelmeztetés"]}},5959:e=>{e.exports={en:["Warsaw"],hu_HU:["Varsó"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"],hu_HU:["Tokió"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"]}},11034:e=>{e.exports={en:["Taipei"],hu_HU:["Tajpej"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],hu_HU:["Teherán"]}},93553:e=>{e.exports={en:["Template"],hu_HU:["Sablon"]}},81657:e=>{e.exports={
|
||||
en:["The data vendor doesn't provide volume data for this symbol."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],hu_HU:["Ezt az indikátort nem lehet alkalmazni egy másik indikátorra"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],hu_HU:["The symbol available only on {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],hu_HU:["Három Hajtás Minta"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."]}},12806:e=>{e.exports={en:["Time"],hu_HU:["Idő"]}},20909:e=>{e.exports={en:["Time zone"],hu_HU:["Időzóna"]}},46852:e=>{e.exports={en:["Time Cycles"],hu_HU:["Ciklusidők"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"],hu_HU:["Kereskedés"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"]}},35757:e=>{e.exports={en:["Trend Angle"],hu_HU:["Trendszög"]}},97339:e=>{e.exports={en:["Trend Line"],hu_HU:["Trendvonal"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],hu_HU:["Trendalapú Fib Kiterjesztés"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],hu_HU:["Trendalapú Fib Idő"]}},1671:e=>{e.exports={en:["Triangle"],hu_HU:["Háromszög"]}},76152:e=>{e.exports={en:["Triangle Down"]}},90148:e=>{e.exports={en:["Triangle Pattern"],hu_HU:["Háromszög Minta"]}},21236:e=>{e.exports={en:["Triangle Up"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],hu_HU:["Visszavonás"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."]}},15432:e=>{e.exports={en:["Units"]}},11768:e=>{e.exports={en:["Unknown error"],hu_HU:["Ismeretlen hiba"]}},99894:e=>{e.exports={en:["Unlock"],hu_HU:["Feloldás"]}},75546:e=>{e.exports={en:["Unsupported interval"]}},8580:e=>{e.exports={en:["User-defined error"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."]}},93722:e=>{e.exports={en:["Volume candles"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."]}},92763:e=>{
|
||||
e.exports={en:["Volume footprint"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],hu_HU:["Függőleges Vonal"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],hu_HU:["Láthatóság"]}},54853:e=>{e.exports={en:["Visibility on intervals"]}},58302:e=>{e.exports={en:["Visible on tap"]}},10309:e=>{e.exports={en:["Visible on mouse over"],hu_HU:["Az Egér Föléhúzásakor Látható"]}},4077:e=>{e.exports={en:["Visual order"],hu_HU:["Vizuális Elrendezés"]}},11316:e=>{e.exports={en:["X Cross"]}},42231:e=>{e.exports={en:["XABCD Pattern"],hu_HU:["XABCD Minta"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"]}},62859:e=>{e.exports={en:["Zurich"],hu_HU:["Zürich"]}},47977:e=>{e.exports={en:["change Elliott degree"]}},61557:e=>{e.exports={en:["change no overlapping labels"]}},76852:e=>{e.exports={en:["change average close price label visibility"]}},1022:e=>{e.exports={en:["change average close price line visibility"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"]}},32302:e=>{e.exports={en:["change currency"]}},68846:e=>{e.exports={en:["change chart layout to {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"]}},16979:e=>{e.exports={en:["change date range"]}},53929:e=>{e.exports={en:["change dividends visibility"]}},6119:e=>{e.exports={en:["change events visibility on chart"]}},6819:e=>{e.exports={en:["change earnings visibility"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"]}},88849:e=>{e.exports={en:["change linking group"]}},14691:e=>{e.exports={en:["change pane height"]}},96379:e=>{e.exports={en:["change plus button visibility"]}},76660:e=>{e.exports={en:["change point"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"]}},58419:e=>{e.exports={en:["change previous close price line visibility"]}},8662:e=>{e.exports={en:["change price line visibility"]}},2509:e=>{e.exports={en:["change price to bar ratio"]}},32829:e=>{e.exports={en:["change resolution"],hu_HU:["Felbontás Módosítása"]}},35400:e=>{e.exports={en:["change symbol"],hu_HU:["Szimbólum módosítása"]}},73357:e=>{e.exports={en:["change symbol labels visibility"]}},67453:e=>{
|
||||
e.exports={en:["change symbol last value visibility"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"]}},87041:e=>{e.exports={en:["change session"]}},38413:e=>{e.exports={en:["change session breaks visibility"]}},49965:e=>{e.exports={en:["change series style"]}},47474:e=>{e.exports={en:["change splits visibility"]}},20137:e=>{e.exports={en:["change timezone"]}},85975:e=>{e.exports={en:["change unit"]}},1924:e=>{e.exports={en:["change visibility"]}},84331:e=>{e.exports={en:["change visibility at current interval"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"]}},57916:e=>{e.exports={en:["change visibility at all intervals"]}},94566:e=>{e.exports={en:["charts by TradingView"],hu_HU:["TradingView chartok"]}},32943:e=>{e.exports={en:["clone line tools"]}},46219:e=>{e.exports={en:["create line tools group"]}},95394:e=>{e.exports={en:["create line tools group from selection"]}},12898:e=>{e.exports={en:["create {tool}"]}},94227:e=>{e.exports={en:["cut sources"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"]}},68231:e=>{e.exports={en:["apply chart theme"]}},99551:e=>{e.exports={en:["apply all chart properties"]}},89720:e=>{e.exports={en:["apply drawing template"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"]}},69604:e=>{e.exports={en:["apply study template {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"]}},1979:e=>{e.exports={en:["bring group {title} forward"]}},53159:e=>{e.exports={en:["bring {title} to front"]}},41966:e=>{e.exports={en:["bring {title} forward"]}},44676:e=>{e.exports={en:["by TradingView"]}},58850:e=>{e.exports={en:["date range lock"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"]}},13017:e=>{e.exports={en:["hide {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],hu_HU:["Jelölések Elrejtése a Bárokon"]}},56558:e=>{e.exports={en:["interval lock"]}},6830:e=>{e.exports={en:["invert scale"],hu_HU:["Invert Scale"]}},48818:e=>{e.exports={en:["insert {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"]}},62011:e=>{e.exports={en:["loading..."],hu_HU:["töltés..."]}},76104:e=>{e.exports={en:["lock {title}"]
|
||||
}},20453:e=>{e.exports={en:["lock group {group}"]}},18942:e=>{e.exports={en:["lock objects"]}},98277:e=>{e.exports={en:["move"]}},58228:e=>{e.exports={en:["move {title} to new left scale"]}},77482:e=>{e.exports={en:["move {title} to new right scale"]}},64077:e=>{e.exports={en:["move all scales to left"]}},19013:e=>{e.exports={en:["move all scales to right"]}},52510:e=>{e.exports={en:["move drawing(s)"]}},79209:e=>{e.exports={en:["move left"]}},60114:e=>{e.exports={en:["move right"]}},44854:e=>{e.exports={en:["move scale"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"]}},76709:e=>{e.exports={en:["make group {group} invisible"]}},45987:e=>{e.exports={en:["make group {group} visible"]}},78055:e=>{e.exports={en:["merge down"]}},41866:e=>{e.exports={en:["merge to pane"]}},52458:e=>{e.exports={en:["merge up"]}},90091:e=>{e.exports={en:["n/a"]}},94981:e=>{e.exports={en:["scale price"]}},63796:e=>{e.exports={en:["scale price chart only"],hu_HU:["Csak az Árskála Chart"]}},70771:e=>{e.exports={en:["scale time"]}},42070:e=>{e.exports={en:["scroll"]}},87840:e=>{e.exports={en:["scroll time"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"]}},40962:e=>{e.exports={en:["send {title} backward"]}},5005:e=>{e.exports={en:["send {title} to back"]}},69546:e=>{e.exports={en:["send group {title} backward"]}},63934:e=>{e.exports={en:["share line tools globally"]}},90221:e=>{e.exports={en:["share line tools in layout"]}},13336:e=>{e.exports={en:["show all ideas"]}},91395:e=>{e.exports={en:["show ideas of followed users"]}},57460:e=>{e.exports={en:["show my ideas only"]}},4114:e=>{e.exports={en:["stay in drawing mode"]}},3350:e=>{e.exports={en:["stop syncing drawing"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"]}},53278:e=>{e.exports={en:["symbol lock"]}},91677:e=>{e.exports={en:["sync time"]}},3140:e=>{e.exports={en:["powered by"]}},92800:e=>{e.exports={en:["powered by TradingView"],hu_HU:["támogatta a TradingView"]}},62192:e=>{e.exports={en:["paste drawing"]}},1064:e=>{e.exports={en:["paste indicator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"]}},7495:e=>{e.exports={en:["pin to right scale"]}},81566:e=>{e.exports={en:["pin to scale {label}"]}},2618:e=>{e.exports={en:["rearrange panes"]}},60806:e=>{e.exports={en:["remove all indicators"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"]}},30538:e=>{e.exports={en:["remove drawings"]}},1193:e=>{e.exports={en:["remove drawings group"]}},38199:e=>{e.exports={en:["remove line data sources"]}},93333:e=>{e.exports={en:["remove pane"]}},94543:e=>{e.exports={en:["remove {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"]}},3323:e=>{e.exports={en:["reset scales"]}},17336:e=>{e.exports={en:["reset time scale"],hu_HU:["Reset Time Scale"]}
|
||||
},47418:e=>{e.exports={en:["resize layout"]}},85815:e=>{e.exports={en:["restore defaults"]}},96881:e=>{e.exports={en:["restore study defaults"]}},63095:e=>{e.exports={en:["toggle maximized pane state"]}},42240:e=>{e.exports={en:["toggle auto scale"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"]}},49695:e=>{e.exports={en:["toggle lock scale"]}},49403:e=>{e.exports={en:["toggle log scale"]}},98994:e=>{e.exports={en:["toggle percentage scale"],hu_HU:["Toggle Percentage Scale"]}},80688:e=>{e.exports={en:["toggle regular scale"]}},46807:e=>{e.exports={en:["track time"]}},8040:e=>{e.exports={en:["turn line tools sharing off"]}},99234:e=>{e.exports={en:["unanchor objects"]}},23230:e=>{e.exports={en:["unlock objects"]}},74590:e=>{e.exports={en:["unlock group {group}"]}},12525:e=>{e.exports={en:["unlock {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"]}},79443:e=>{e.exports={en:["unmerge up"]}},46453:e=>{e.exports={en:["unmerge down"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."]}},41643:e=>{e.exports={en:["{count} bars"],hu_HU:["{count} oszlop"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],hu_HU:["{symbol} TradingView pénzügyek"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"]}},73638:e=>{e.exports={en:["zoom out"]}},41807:e=>{e.exports={en:["day","days"]}},42328:e=>{e.exports={en:["hour","hours"]}},98393:e=>{e.exports={en:["month","months"]}},78318:e=>{e.exports={en:["minute","minutes"]}},33232:e=>{e.exports={en:["second","seconds"]}},89937:e=>{e.exports={en:["range","ranges"]}},48898:e=>{e.exports={en:["week","weeks"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"],hu_HU:["APPLE INC"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],hu_HU:["S&P/ASX Összes Ausztrál 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],hu_HU:["S&P/ASX Összes Ausztrál 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],hu_HU:["ausztrál dollár/kanadai dollár"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],hu_HU:["ausztrál dollár / svájci frank"]},e.exports["#AUDJPY-symbol-description"]={
|
||||
en:["Australian Dollar / Japanese Yen"],hu_HU:["ausztrál dollár / japán jen"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],hu_HU:["ausztrál dollár / új-zélandi dollár"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],hu_HU:["ausztrál dollár / orosz rúbel"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],hu_HU:["ausztrál dollár / amerikai dollár"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],hu_HU:["MERVAL Index"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],hu_HU:["bitcoin cash / amerikai dollár"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],hu_HU:["BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],hu_HU:["IBovespa Index"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],hu_HU:["IBRX 50 Index"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],hu_HU:["IPC Mexico Index"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],hu_HU:["brazil dollár / japán jen"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],hu_HU:["bitcoin / brazil reál"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],hu_HU:["bitcoin / kanadai dollár"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],hu_HU:["bitcoin / kínai jüan"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"],hu_HU:["bitcoin / euró"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],hu_HU:["bitcoin / brit font"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],hu_HU:["bitcoin / japán jen"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],hu_HU:["bitcoin / dél-koreai won"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],hu_HU:["bitcoin / lengyel zloty"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],hu_HU:["bitcoin / amerikai dollár"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],hu_HU:["bitcoin gold / amerikai dollár"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},
|
||||
e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],hu_HU:["kanadai dollár / japán jen"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],hu_HU:["kanadai dollár / amerikai dollár"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],hu_HU:["svájci frank/japán jen"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],hu_HU:["svájci frank / amerikai dollár"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],
|
||||
hu_HU:["Réz"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],hu_HU:["EGX 30 Price Return Index"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],hu_HU:["ethereum classic / amerikai dollár"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],hu_HU:["ethereum / amerikai dollár"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],hu_HU:["eurókötvények"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],hu_HU:["euró / ausztrál dollár"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],hu_HU:["euró / brazil reál"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],hu_HU:["euró / kanadai dollár"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],hu_HU:["Euró Fx/svájci frank"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],hu_HU:["Euró Fx/brit font"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],
|
||||
hu_HU:["Euró Fx/japán jen"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],hu_HU:["euró / új-zélandi dollár"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],hu_HU:["EURÓ / OROSZ RUBEL"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],hu_HU:["EUR/RUB TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],hu_HU:["Euró Fx/új török líra"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],hu_HU:["euró / amerikai dollár"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],hu_HU:["Euro Stoxx 50 index európai jegyzett részvények"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],hu_HU:["brit font / ausztrál dollár"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],hu_HU:["brit font / kanadai dollár"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],hu_HU:["brit font/svájci frank"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],hu_HU:["FONT STERLING / EURÓ"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],hu_HU:["brit font//japán jen"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],hu_HU:["brit font / új-zélandi dollár"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],hu_HU:["font sterling / orosz rubel"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],hu_HU:["brit font / amerikai dollár"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],hu_HU:["DAX index német jegyzett részvények"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],hu_HU:["GOOGLE INC"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},
|
||||
e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],hu_HU:["WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],hu_HU:["Dzsakarta Kompozit Index"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],hu_HU:["Bursa Malajzia KLCI Index"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],hu_HU:["Sanghaj Kompozit Index"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],hu_HU:["IOTA / amerikai dollár"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],hu_HU:["#JPN225-symbol-description"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],hu_HU:["JEN / WON"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],hu_HU:["JEN / OROSZ RUBEL"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],hu_HU:["japán jen / amerikai dollár"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"],hu_HU:["litecoin / bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],hu_HU:["litecoin / amerikai dollár"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],hu_HU:["MOEX Oroszország Index"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."],hu_HU:["MICROSOFT CORP"]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],hu_HU:["NASDAQ 100 amerikai jegyzett részvények"]},
|
||||
e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"],hu_HU:["Iteris Inc."]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],hu_HU:["NEO / amerikai dollár"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],hu_HU:["Földgáz (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],hu_HU:["Nikkei 225 Index"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],hu_HU:["Kávé Határidősők"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."],hu_HU:["ALIBABA GROUP HLDG LTD"]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]
|
||||
},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],hu_HU:["új-zélandi dollár / japán jen"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],hu_HU:["új-zélandi dollár / amerikai dollár"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],hu_HU:["S&P/NZX ÖSSZES Index ( Tőkeindex)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],hu_HU:["Földgáz"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],hu_HU:["OMX Riga GI"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],hu_HU:["OMX Tallinn GI"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],hu_HU:["OMX Vilnius GI"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],hu_HU:["Orosz RTS Index"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],hu_HU:["S&P 500 index amerikai jegyzett részvények"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],
|
||||
hu_HU:["SZSE Component Index"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],hu_HU:["S&P/TSX Kompozit"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],hu_HU:["Ausztrál Dollár Devizaindex"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],hu_HU:["CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],hu_HU:["Kanadai Dollár Devizaindex"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],hu_HU:["Amerikai Dollár Devizaindex"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],hu_HU:["Spanyol Államkötvények 10 éves"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],hu_HU:["Spanyol Államkötvények 10 éves"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"],hu_HU:["Eurókötvény"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],hu_HU:["UK Államkötvények 2 éves"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],hu_HU:["UK Államkötvények 10 éves"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],hu_HU:["UK Államkötvények 10 éves"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],hu_HU:["ARANY (US$/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"]},e.exports["#TVC:ID03-symbol-description"]={
|
||||
en:["Indonesia Government Bonds 3 YR"],hu_HU:["Indonéz Államkötvények 3 éves"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],hu_HU:["Indonéz Államkötvények 10 éves"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],hu_HU:["Indiai államkötvények 10 éves"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],hu_HU:["Olasz államkötvények 10 éves"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],hu_HU:["NASDAQ Composite Index"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],hu_HU:["japán államkötvények 10 éves"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],hu_HU:["NASDAQ 100 Index"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],hu_HU:["Nikkei 225 Index"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],hu_HU:["PALLÁDIUM (US$/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],hu_HU:["Portugál Államkötvények 10 éves"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],hu_HU:["Portugál Államkötvények 10 éves"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],hu_HU:["EZÜST (US$/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"]},e.exports["#TVC:SSMI-symbol-description"]={
|
||||
en:["Swiss Market Index"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],hu_HU:["Turkey Government Bonds 10 YR"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],hu_HU:["US államkötvények 2 éves"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],hu_HU:["US államkötvények 5 éves"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],hu_HU:["US államkötvények 10 éves"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],hu_HU:["Új-zélandi Dollár Devizaindex"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],hu_HU:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],hu_HU:["amerikai dollár / ausztrál dollár"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],hu_HU:["amerikai dollár / brazil reál"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],hu_HU:["amerikai dollár / kanadai dollár"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],hu_HU:["amerikai dollár / svájci frank"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],hu_HU:["amerikai dollár / jüan renminbi"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],hu_HU:["amerikai follár / dán korona"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],hu_HU:["amerikai dollár / euró"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],hu_HU:["amerikai dollár / brit font"]},e.exports["#USDHKD-symbol-description"]={
|
||||
en:["U.S. Dollar / Hong Kong Dollar"],hu_HU:["amerikai dollár / hong kongi dollár"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],hu_HU:["amerikai dollár / rúpia"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],hu_HU:["amerikai dollár / indiai rúpia"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],hu_HU:["amerikai dollár / japán jen"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],hu_HU:["amerikai dollár / dél-koreai won"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],hu_HU:["amerikai dollár / mexikói peso"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],hu_HU:["amerikai dollár / új-zélandi dollár"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],hu_HU:["amerikai dollár /fülöp-szigeteki peso"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],hu_HU:["amerikai dollár / lengyel zloty"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],hu_HU:["amerikai dollár / orosz rúbel"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],hu_HU:["amerikai dollár / orosz rúbel TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],hu_HU:["amerikai dollár / svéd korona"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],hu_HU:["amerikai dollár / szingapúri dollár"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],hu_HU:["amerikai dollár / török líra"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],hu_HU:["amerikai dollár / dél-afrikai rand"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],hu_HU:["ezüst / amerikai dollár"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],hu_HU:["arany / amerikai dollár"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],hu_HU:["bitcoin / kanadai dollár"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],hu_HU:["monero / amerikai dollár"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],hu_HU:["platina / amerikai dollár"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"],hu_HU:["Ripple / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"],hu_HU:["Ripple / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],hu_HU:["ripple / amerikai dollár"]},
|
||||
e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],hu_HU:["Zcash / amerikai dollár"]}}}]);
|
||||
@@ -0,0 +1,5 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],hu_HU:["(Ny + M + A + Z)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],hu_HU:["(M + A + Z)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],hu_HU:["(M + A)/2"]}},31882:e=>{e.exports={en:["12-hours"]}},5797:e=>{e.exports={en:["24-hours"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],hu_HU:["Bárszínek az előző záró alapján"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"]}},15153:e=>{e.exports={en:["Chart basic styles"]}},45639:e=>{e.exports={en:["Chart values"]}},84831:e=>{e.exports={en:["Close line"]}},74622:e=>{e.exports={en:["Crosshair"],hu_HU:["Szálkereszt"]}},81849:e=>{e.exports={en:["Currency"],hu_HU:["Valuta"]}},3015:e=>{e.exports={en:["Currency and Unit"]}},93020:e=>{e.exports={en:["Adjust data for dividends"]}},68921:e=>{e.exports={en:["Adjust for contract changes"]}},36620:e=>{e.exports={en:["Alerts"],hu_HU:["Riasztások"]}},14119:e=>{e.exports={en:["Arguments"],hu_HU:["Argumentumok"]}},68650:e=>{e.exports={en:["Average close"]}},27567:e=>{e.exports={en:["Bottom"],hu_HU:["Alsó"]}},3159:e=>{e.exports={en:["Bottom line"],hu_HU:["Bottom Line"]}},74406:e=>{e.exports={en:["Body"]}},333:e=>{e.exports={en:["Borders"],hu_HU:["Határok"]}},79468:e=>{e.exports={en:["Background"],hu_HU:["Háttér"]}},10842:e=>{e.exports={en:["Bar change values"],hu_HU:["Bar Change Values"]}},28975:e=>{e.exports={en:["Base level"],hu_HU:["Base Level"]}},76473:e=>{e.exports={en:["Bid and ask"]}},32744:e=>{e.exports={en:["Buttons"]}},68662:e=>{e.exports={en:["Grid lines"]}},17611:e=>{e.exports={en:["Down bars"]}},23743:e=>{e.exports={en:["Down color"]}},48225:e=>{e.exports={en:["Data modification"]}},84838:e=>{e.exports={en:["Date format"],hu_HU:["Date Format"]}},42357:e=>{e.exports={en:["Day of week on labels"]}},16564:e=>{e.exports={en:["Default"],hu_HU:["Alapértelmezett"]}},78734:e=>{e.exports={en:["Description"],hu_HU:["Leírás"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"]}},69808:e=>{e.exports={en:["Events"],hu_HU:["Események"]}},41129:e=>{e.exports={en:["Fill"]}},61112:e=>{e.exports={en:["Fill top area"],hu_HU:["Fill Top Area"]}},73185:e=>{e.exports={en:["Fill bottom area"],hu_HU:["Fill Bottom Area"]}},95406:e=>{e.exports={en:["Horizontal"]}},61900:e=>{e.exports={en:["Horz only"]}},14180:e=>{e.exports={en:["High and low"]}},56359:e=>{e.exports={en:["High line"]}},47326:e=>{e.exports={en:["Integer"]}},84549:e=>{e.exports={en:["Indicators"],hu_HU:["Indikátorok"]}},78082:e=>{e.exports={en:["Indicators and financials"]}},25765:e=>{e.exports={en:["Open market status"]}},34579:e=>{e.exports={en:["Low line"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"]}},72423:e=>{e.exports={en:["Last day change values"]}},11626:e=>{e.exports={en:["Left"],hu_HU:["Bal"]}},8249:e=>{e.exports={en:["Money"],hu_HU:["Pénz"]}},70937:e=>{
|
||||
e.exports={en:["Margins"],hu_HU:["Fedezeti Letét"]}},68833:e=>{e.exports={en:["Middle"]}},58589:e=>{e.exports={en:["No overlapping labels"]}},60798:e=>{e.exports={en:["None"]}},51019:e=>{e.exports={en:["Navigation"]}},99709:e=>{e.exports={en:["Name"],hu_HU:["Érme"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"]}},93968:e=>{e.exports={en:["Scales"],hu_HU:["Skálák"]}},90275:e=>{e.exports={en:["Scales and lines"]}},30042:e=>{e.exports={en:["Scales placement"]}},28715:e=>{e.exports={en:["Status line"]}},95481:e=>{e.exports={en:["Symbol"],hu_HU:["Szimbólum"]}},53263:e=>{e.exports={en:["Pane"]}},82894:e=>{e.exports={en:["Pane separators"]}},16207:e=>{e.exports={en:["Percentage"],hu_HU:["Százalék"]}},94408:e=>{e.exports={en:["Pips"],hu_HU:["Pipek"]}},60904:e=>{e.exports={en:["Pre/post market"]}},88327:e=>{e.exports={en:["Pre/post market hours background"]}},59766:e=>{e.exports={en:["Precision"],hu_HU:["Pontosság"]}},83811:e=>{e.exports={en:["Previous day close"]}},35082:e=>{e.exports={en:["Price Scale"]}},27632:e=>{e.exports={en:["Price and percentage value"]}},62142:e=>{e.exports={en:["Price labels & lines"]}},84684:e=>{e.exports={en:["Price source"]}},73466:e=>{e.exports={en:["Projection up bars"]}},77430:e=>{e.exports={en:["Projection candles"]}},88367:e=>{e.exports={en:["Projection down bars"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"]}},50421:e=>{e.exports={en:["Right"],hu_HU:["Jobb"]}},62532:e=>{e.exports={en:["Right Margin"]}},41571:e=>{e.exports={en:["Watermark"],hu_HU:["Vízjel"]}},32163:e=>{e.exports={en:["Wick"],hu_HU:["Kanóc"]}},97118:e=>{e.exports={en:["Top"],hu_HU:["Felső"]}},89349:e=>{e.exports={en:["Top line"],hu_HU:["Top Line"]}},70320:e=>{e.exports={en:["Text"],hu_HU:["Szöveg"]}},25485:e=>{e.exports={en:["Text alignment"]}},67781:e=>{e.exports={en:["Text orientation"]}},20215:e=>{e.exports={en:["Thin bars"],hu_HU:["Thin Bars"]}},70198:e=>{e.exports={en:["Title"],hu_HU:["Cím"]}},29854:e=>{e.exports={en:["Titles"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"]}},24821:e=>{e.exports={en:["Ticks"]}},93965:e=>{e.exports={en:["Time Scale"]}},5591:e=>{e.exports={en:["Time hours format"]}},77073:e=>{e.exports={en:["Timezone"],hu_HU:["Időzóna"]}},76495:e=>{e.exports={en:["Trading"],hu_HU:["Kereskedés"]}},33564:e=>{e.exports={en:["Unit"]}},23091:e=>{e.exports={en:["Up color"]}},36957:e=>{e.exports={en:["Up bars"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"]}},37644:e=>{e.exports={en:["Volume"],hu_HU:["Volumen"]}},51514:e=>{e.exports={en:["Value"],hu_HU:["Érték"]}},31218:e=>{e.exports={en:["Value according to scale"]}},60092:e=>{e.exports={en:["Values"]}},83594:e=>{e.exports={en:["Vert and horz"]}},8402:e=>{e.exports={en:["Vert only"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{
|
||||
e.exports={en:["change navigation buttons visibility"]}},96227:e=>{e.exports={en:["change open market status visibility"]}},43231:e=>{e.exports={en:["change average close price line width"]}},47026:e=>{e.exports={en:["change average close price line color"]}},86866:e=>{e.exports={en:["change area fill color"]}},89346:e=>{e.exports={en:["change area line width"]}},29605:e=>{e.exports={en:["change area line color"]}},4640:e=>{e.exports={en:["change area price source"]}},98407:e=>{e.exports={en:["change ask line color"]}},42190:e=>{e.exports={en:["change base level"]}},71785:e=>{e.exports={en:["change baseline bottom line color"]}},56175:e=>{e.exports={en:["change baseline bottom line width"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"]}},92873:e=>{e.exports={en:["change baseline fill top area color"]}},68609:e=>{e.exports={en:["change baseline price source"]}},69044:e=>{e.exports={en:["change baseline top line color"]}},68197:e=>{e.exports={en:["change baseline top line width"]}},33464:e=>{e.exports={en:["change bar up color"]}},27426:e=>{e.exports={en:["change bar change visibility"]}},59622:e=>{e.exports={en:["change bar down color"]}},17919:e=>{e.exports={en:["change bid line color"]}},32094:e=>{e.exports={en:["change bottom margin"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"]}},64003:e=>{e.exports={en:["change currency label visibility"]}},42803:e=>{e.exports={en:["change chart background color"]}},41382:e=>{e.exports={en:["change chart background type"]}},79637:e=>{e.exports={en:["change chart values visibility"]}},43090:e=>{e.exports={en:["change color bars based on previous close"]}},88324:e=>{e.exports={en:["change column up color"]}},93890:e=>{e.exports={en:["change column down color"]}},4727:e=>{e.exports={en:["change column price source"]}},50544:e=>{e.exports={en:["change crosshair width"]}},92885:e=>{e.exports={en:["change crosshair color"]}},68418:e=>{e.exports={en:["change crosshair style"]}},43109:e=>{e.exports={en:["change date format"]}},30418:e=>{e.exports={en:["change day of week on labels"]}},82063:e=>{e.exports={en:["change decimal places"]}},44223:e=>{e.exports={en:["change extended hours color"]}},47393:e=>{e.exports={en:["change electronic trading hours"]}},73844:e=>{e.exports={en:["change grid lines visibility"]}},61407:e=>{e.exports={en:["change high and low price line color"]}},39581:e=>{e.exports={en:["change high and low price line width"]}},6026:e=>{e.exports={en:["change high-low body color"]}},73021:e=>{e.exports={en:["change high-low body visibility"]}},46844:e=>{e.exports={en:["change high-low border color"]}},15801:e=>{e.exports={en:["change high-low borders visibility"]}},72399:e=>{e.exports={en:["change high-low labels visibility"]}},56961:e=>{e.exports={en:["change high-low labels color"]}},21133:e=>{e.exports={en:["change horz grid lines color"]}},63050:e=>{e.exports={en:["change indicator titles visibility"]}},49583:e=>{e.exports={en:["change indicator values visibility"]}},78310:e=>{e.exports={
|
||||
en:["change indicator arguments visibility"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"]}},66307:e=>{e.exports={en:["change last day change visibility"]}},91873:e=>{e.exports={en:["change legend background transparency"]}},14246:e=>{e.exports={en:["change legend background visibility"]}},88640:e=>{e.exports={en:["change line color"]}},41837:e=>{e.exports={en:["change line price source"]}},48339:e=>{e.exports={en:["change line width"]}},18378:e=>{e.exports={en:["change pane buttons visibility"]}},52203:e=>{e.exports={en:["change pane separators color"]}},38730:e=>{e.exports={en:["change post market color"]}},28075:e=>{e.exports={en:["change post market line color"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"]}},44371:e=>{e.exports={en:["change pre market color"]}},96114:e=>{e.exports={en:["change pre market line color"]}},69814:e=>{e.exports={en:["change previous close price line color"]}},13660:e=>{e.exports={en:["change previous close price line width"]}},87861:e=>{e.exports={en:["change price line color"]}},29353:e=>{e.exports={en:["change price line width"]}},16241:e=>{e.exports={en:["change range bars style"]}},65821:e=>{e.exports={en:["change range thin bars"]}},75487:e=>{e.exports={en:["change renko wick down color"]}},92277:e=>{e.exports={en:["change renko wick up color"]}},79604:e=>{e.exports={en:["change renko wick visibility"]}},82946:e=>{e.exports={en:["change right margin"]}},79545:e=>{e.exports={en:["change right margin percentage"]}},78995:e=>{e.exports={en:["change symbol watermark color"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"]}},88167:e=>{e.exports={en:["change symbol description visibility"]}},12050:e=>{e.exports={en:["change symbol field visibility"]}},46066:e=>{e.exports={en:["change symbol last value mode"]}},902:e=>{e.exports={en:["change symbol legend format"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"]}},76131:e=>{e.exports={en:["change scales text color"]}},27792:e=>{e.exports={en:["change scales font size"]}},94997:e=>{e.exports={en:["change scales lines color"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"]}},28175:e=>{e.exports={en:["change sessions breaks width"]}},33895:e=>{e.exports={en:["change sessions breaks color"]}},21641:e=>{e.exports={en:["change sessions breaks style"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"]}},60834:e=>{e.exports={en:["change thin bars"]}},39754:e=>{e.exports={en:["change time hours format"]}},74883:e=>{e.exports={en:["change top margin"]}},51250:e=>{e.exports={en:["change unit label visibility"]}},71805:e=>{e.exports={en:["change vert grid lines color"]}},96201:e=>{e.exports={en:["change volume values visibility"]}},17214:e=>{e.exports={en:["change {candleType} up border color"]}},
|
||||
36697:e=>{e.exports={en:["change {candleType} up color"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"]}},20291:e=>{e.exports={en:["change {candleType} down border color"]}},64571:e=>{e.exports={en:["change {candleType} down color"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"]}},5012:e=>{e.exports={en:["change {chartType} down color"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"]}},6970:e=>{e.exports={en:["change {chartType} up color"]}},66110:e=>{e.exports={en:["change {inputName} property"]}},18077:e=>{e.exports={en:["adjust data for dividends"]}},1433:e=>{e.exports={en:["adjust for contract changes"]}},92598:e=>{e.exports={en:["hollow candles"],hu_HU:["Áttetsző Gyertyák"]}},57243:e=>{e.exports={en:["range","ranges"]}},70282:e=>{e.exports={en:["renko"],hu_HU:["Renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"]}}}]);
|
||||
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],id_ID:["#{count} (harga, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],id_ID:["Warnai bar berdasarkan penutupan sebelumnya"]}},78930:e=>{e.exports={en:["Coordinates"],id_ID:["Koordinat"]}},24197:e=>{e.exports={en:["Center"],id_ID:["Tengah"]}},84831:e=>{e.exports={en:["Close line"],id_ID:["Garis Penutupan"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],id_ID:["Sesuaikan data untuk dividen"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},27567:e=>{e.exports={en:["Bottom"],id_ID:["Dasar"]}},3159:e=>{e.exports={en:["Bottom line"],id_ID:["Garis Dasar"]}},74406:e=>{e.exports={en:["Body"],id_ID:["Badan"]}},333:e=>{e.exports={en:["Borders"],id_ID:["Batas-Batas"]}},42398:e=>{e.exports={en:["Base"],id_ID:["Dasar"]}},28975:e=>{e.exports={en:["Base level"],id_ID:["Level Dasar"]}},71776:e=>{e.exports={en:["Down"],id_ID:["Turun"]}},17611:e=>{e.exports={en:["Down bars"],id_ID:["Bar turun"]}},23743:e=>{e.exports={en:["Down color"],id_ID:["Warna Turun"]}},48225:e=>{e.exports={en:["Data modification"],id_ID:["Modifikasi data"]}},72942:e=>{e.exports={en:["Days"],id_ID:["Hari"]}},16564:e=>{e.exports={en:["Default"],id_ID:["Bawaan"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],id_ID:["Pemindahan (harga, bar)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],id_ID:["Latar belakang jam trading elektronik"]}},819:e=>{e.exports={en:["Extend lines"],id_ID:["Perpanjang Garis"]}},41129:e=>{e.exports={en:["Fill"],id_ID:["Mengisi"]}},61112:e=>{e.exports={en:["Fill top area"],id_ID:["Isi area atas"]}},73185:e=>{e.exports={en:["Fill bottom area"],id_ID:["Isi Area Dasar"]}},886:e=>{e.exports={en:["HLC bars"],id_ID:["Bar HLC"]}},56796:e=>{e.exports={en:["Hours"],id_ID:["Jam"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],id_ID:["Garis High"]}},47326:e=>{e.exports={en:["Integer"],id_ID:["Bilangan bulat"]}},21429:e=>{e.exports={en:["Inputs"],id_ID:["Input"]}},64075:e=>{e.exports={en:["Override min tick"],id_ID:["Menimpa Tick Min"]}},34579:e=>{e.exports={en:["Low line"],id_ID:["Garis Low"]}},11626:e=>{e.exports={en:["Left"],id_ID:["Kiri"]}},43154:e=>{e.exports={en:["Months"],id_ID:["Bulan"]}},68833:e=>{e.exports={en:["Middle"],id_ID:["Tengah"]}},42562:e=>{e.exports={en:["Minutes"],id_ID:["Menit"]}},65188:e=>{e.exports={en:["Seconds"],id_ID:["Detik"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],id_ID:["Latar jam pra/pasca pasar"]}},59766:e=>{e.exports={en:["Precision"],id_ID:["Presisi"]}},84684:e=>{e.exports={en:["Price source"],id_ID:["Sumber Harga"]}},73466:e=>{e.exports={en:["Projection up bars"],id_ID:["Proyeksi bar naik"]}},
|
||||
77430:e=>{e.exports={en:["Projection candles"],id_ID:["Bar proyeksi"]}},88367:e=>{e.exports={en:["Projection down bars"],id_ID:["Proyeksi bar turun"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],id_ID:["Harga sebenarnya pada skala harga (bukan harga Heikin-Ashi)"]}},50421:e=>{e.exports={en:["Right"],id_ID:["Kanan"]}},835:e=>{e.exports={en:["Weeks"],id_ID:["Minggu"]}},32163:e=>{e.exports={en:["Wick"],id_ID:["Sumbu"]}},97118:e=>{e.exports={en:["Top"],id_ID:["Teratas"]}},89349:e=>{e.exports={en:["Top line"],id_ID:["Garis Atas"]}},70320:e=>{e.exports={en:["Text"],id_ID:["Teks"]}},25485:e=>{e.exports={en:["Text alignment"],id_ID:["Perataan teks"]}},67781:e=>{e.exports={en:["Text orientation"],id_ID:["Orientasi teks"]}},20215:e=>{e.exports={en:["Thin bars"],id_ID:["Bar-Bar Tipis"]}},24821:e=>{e.exports={en:["Ticks"],id_ID:["Tick"]}},77073:e=>{e.exports={en:["Timezone"],id_ID:["Zona waktu"]}},22691:e=>{e.exports={en:["Up"],id_ID:["Naik"]}},23091:e=>{e.exports={en:["Up color"],id_ID:["Warna Naik"]}},36957:e=>{e.exports={en:["Up bars"],id_ID:["Bar naik"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"],id_ID:["ubah bar HLC"]}},86866:e=>{e.exports={en:["change area fill color"],id_ID:["ubah isian warna area"]}},89346:e=>{e.exports={en:["change area line width"],id_ID:["ubah lebar area garis"]}},29605:e=>{e.exports={en:["change area line color"],id_ID:["ubah warna area garis"]}},4640:e=>{e.exports={en:["change area price source"],id_ID:["ubah sumber area harga"]}},42190:e=>{e.exports={en:["change base level"],id_ID:["ubah level dasar"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],id_ID:["ubah warna garis dasar bawah"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],id_ID:["ubah lebar garis dasar bawah"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],id_ID:["ubah isian warna area bawah dari garis dasar"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],id_ID:["ubah isian warna area atas dari garis dasar"]}},68609:e=>{e.exports={en:["change baseline price source"],id_ID:["ubah sumber garis dasar harga"]}},69044:e=>{e.exports={en:["change baseline top line color"],id_ID:["ubah warna garis dasar atas"]}},68197:e=>{e.exports={en:["change baseline top line width"],id_ID:["ubah lebar garis dasar atas"]}},33464:e=>{e.exports={en:["change bar up color"],id_ID:["ubah warna bar naik"]}},2066:e=>{e.exports={en:["change bar X coordinate"],id_ID:["Ubah koordinat bar X"]}},59622:e=>{e.exports={en:["change bar down color"],id_ID:["ubah warna bar turun"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],id_ID:["ubah warna bar berdasarkan penutupan sebelumnya"]}},88324:e=>{e.exports={en:["change column up color"],id_ID:["ubah warna kolom atas"]}},93890:e=>{e.exports={en:["change column down color"],
|
||||
id_ID:["ubah warna kolom bawah"]}},4727:e=>{e.exports={en:["change column price source"],id_ID:["ubah sumber kolom harga"]}},82063:e=>{e.exports={en:["change decimal places"],id_ID:["ubah jumlah desimal"]}},44223:e=>{e.exports={en:["change extended hours color"],id_ID:["ubah warna perpanjangan jam"]}},47393:e=>{e.exports={en:["change electronic trading hours"],id_ID:["Ubah jam trading elektronik"]}},6026:e=>{e.exports={en:["change high-low body color"],id_ID:["ubah warna badan tertinggi-terendah"]}},73021:e=>{e.exports={en:["change high-low body visibility"],id_ID:["ubah visibilitas badan tertinggi-terendah"]}},46844:e=>{e.exports={en:["change high-low border color"],id_ID:["ubah warna batas tertinggi-terendah"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],id_ID:["ubah visibilitas batas tertinggi-terendah"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],id_ID:["ubah visibilitas label tertinggi-terendah"]}},56961:e=>{e.exports={en:["change high-low labels color"],id_ID:["ubah warna label tertinggi-terendah"]}},88640:e=>{e.exports={en:["change line color"],id_ID:["ubah warna garis"]}},41837:e=>{e.exports={en:["change line price source"],id_ID:["ubah sumber garis harga"]}},48339:e=>{e.exports={en:["change line width"],id_ID:["ubah lebar garis"]}},38730:e=>{e.exports={en:["change post market color"],id_ID:["ubah warna pasca pasar"]}},44371:e=>{e.exports={en:["change pre market color"],id_ID:["ubah warna pra pasar"]}},11737:e=>{e.exports={en:["change price Y coordinate"],id_ID:["Ubah koordinat harga Y"]}},16241:e=>{e.exports={en:["change range bars style"],id_ID:["Ubah corak bar rentang"]}},65821:e=>{e.exports={en:["change range thin bars"],id_ID:["ubah rentang bar tipis"]}},75487:e=>{e.exports={en:["change renko wick down color"],id_ID:["ubah warna sumbu bawah renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],id_ID:["ubah warna sumbu atas renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],id_ID:["ubah visibilitas sumbu renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],id_ID:["ubah minimun tick overlay studi"]}},82924:e=>{e.exports={en:["change study overlay style"],id_ID:["ubah corak overlay studi"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],id_ID:["ubah tampilan dari harga sebenarnya pada skala harga (bukan harga Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],id_ID:["ubah bar tipis"]}},78509:e=>{e.exports={en:["change {title} base line color"],id_ID:["ubah warna garis dasar {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],id_ID:["ubah corak garis dasar {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],id_ID:["ubah visibilitas garis dasar {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],id_ID:["ubah lebar garis dasar {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],id_ID:["ubah warna garis bawah {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],
|
||||
id_ID:["ubah corak garis bawah {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],id_ID:["ubah visibilitas garis bawah {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],id_ID:["ubah lebar garis bawah {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],id_ID:["ubah {title} hari ke"]}},91201:e=>{e.exports={en:["change {title} days from"],id_ID:["ubah {title} hari dari"]}},76295:e=>{e.exports={en:["change {title} extend lines"],id_ID:["ubah perpanjangan garis {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],id_ID:["ubah {title} jam dari"]}},67233:e=>{e.exports={en:["change {title} hours to"],id_ID:["ubah {title} jam ke"]}},99122:e=>{e.exports={en:["change {title} months from"],id_ID:["ubah {title} bulan dari"]}},10518:e=>{e.exports={en:["change {title} months to"],id_ID:["ubah {title} bulan ke"]}},38011:e=>{e.exports={en:["change {title} minutes to"],id_ID:["ubah {title} menit ke"]}},59820:e=>{e.exports={en:["change {title} minutes from"],id_ID:["ubah {title} menit dari"]}},6573:e=>{e.exports={en:["change {title} seconds to"],id_ID:["ubah {title} detik ke"]}},86780:e=>{e.exports={en:["change {title} seconds from"],id_ID:["ubah {title} detik dari"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],id_ID:["ubah {title} menampilkan r pearson"]}},32481:e=>{e.exports={en:["change {title} weeks from"],id_ID:["ubah {title} minggu dari"]}},18678:e=>{e.exports={en:["change {title} weeks to"],id_ID:["ubah {title} minggu ke"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],id_ID:["ubah visibilitas garis atas {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],id_ID:["ubah lebar garis atas {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],id_ID:["ubah warna garis atas {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],id_ID:["ubah corak garis atas {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],id_ID:["ubah visibilitas {title} pada tick"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],id_ID:["ubah visibilitas {title} dalam minggu"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],id_ID:["ubah visibilitas {title} di dalam {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],id_ID:["ubah visibilitas {title} dalam hari"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],id_ID:["ubah visibilitas {title} dalam jam"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],id_ID:["ubah visibilitas {title} dalam menit"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],id_ID:["ubah visibilitas {title} dalam bulan"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],id_ID:["ubah visibilitas {title} pada detik"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],id_ID:["ubah warna batas {candleType} naik"]}},36697:e=>{e.exports={en:["change {candleType} up color"],id_ID:["ubah warna {candleType} naik"]}},48091:e=>{e.exports={
|
||||
en:["change {candleType} wick down color"],id_ID:["ubah warna sumbu {candleType} turun"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],id_ID:["ubah warna sumbu {candleType} naik"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],id_ID:["ubah visibilitas sumbu {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],id_ID:["ubah visibilitas badan {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],id_ID:["ubah visibilitas batas {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],id_ID:["ubah warna batas {candleType} turun"]}},64571:e=>{e.exports={en:["change {candleType} down color"],id_ID:["ubah warna {candleType} turun"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],id_ID:["ubah warna batas bar {chartType} turun"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],id_ID:["ubah warna batas bar {chartType} naik"]}},5012:e=>{e.exports={en:["change {chartType} down color"],id_ID:["ubah warna {chartType} turun"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],id_ID:["ubah warna batas bar proyeksi {chartType} naik"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],id_ID:["ubah warna bar proyeksi {chartType} turun"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],id_ID:["ubah warna bar proyeksi {chartType} naik"]}},6970:e=>{e.exports={en:["change {chartType} up color"],id_ID:["ubah warna {chartType} naik"]}},66110:e=>{e.exports={en:["change {inputName} property"],id_ID:["ubah properti {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],id_ID:["ubah properti {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],id_ID:["sesuaikan data untuk dividen"]}},1433:e=>{e.exports={en:["adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},35813:e=>{e.exports={en:["days"],id_ID:["Hari"]}},89919:e=>{e.exports={en:["days to"],id_ID:["hari ke"]}},59215:e=>{e.exports={en:["days from"],id_ID:["dari dari"]}},2359:e=>{e.exports={en:["hours"],id_ID:["Jam"]}},82267:e=>{e.exports={en:["hours from"],id_ID:["jam dari"]}},15600:e=>{e.exports={en:["hours to"],id_ID:["jam ke"]}},92598:e=>{e.exports={en:["hollow candles"],id_ID:["candle kosong"]}},76261:e=>{e.exports={en:["move drawings"],id_ID:["Pindahkan gambar"]}},95300:e=>{e.exports={en:["months"],id_ID:["Bulan"]}},17250:e=>{e.exports={en:["months from"],id_ID:["bulan dari"]}},2828:e=>{e.exports={en:["months to"],id_ID:["bulan ke"]}},18726:e=>{e.exports={en:["minutes"],id_ID:["menit"]}},67649:e=>{e.exports={en:["minutes to"],id_ID:["menit ke"]}},22476:e=>{e.exports={en:["minutes from"],id_ID:["menit dari"]}},751:e=>{e.exports={en:["seconds"],id_ID:["detik"]}},73419:e=>{e.exports={en:["seconds to"],id_ID:["detik ke"]}},35801:e=>{e.exports={en:["seconds from"],id_ID:["detik dari"]}},57243:e=>{e.exports={en:["range","ranges"],id_ID:["rentang"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{
|
||||
e.exports={en:["weeks"],id_ID:["minggu"]}},92859:e=>{e.exports={en:["weeks from"],id_ID:["minggu dari"]}},44127:e=>{e.exports={en:["weeks to"],id_ID:["minggu ke"]}},3539:e=>{e.exports={en:["ticks"],id_ID:["Tick"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],id_ID:["{value} desimal"]}}}]);
|
||||
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],id_ID:["#{count} (harga, bar)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],id_ID:["Warnai bar berdasarkan penutupan sebelumnya"]}},78930:e=>{e.exports={en:["Coordinates"],id_ID:["Koordinat"]}},24197:e=>{e.exports={en:["Center"],id_ID:["Tengah"]}},84831:e=>{e.exports={en:["Close line"],id_ID:["Garis Penutupan"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],id_ID:["Sesuaikan data untuk dividen"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},27567:e=>{e.exports={en:["Bottom"],id_ID:["Dasar"]}},3159:e=>{e.exports={en:["Bottom line"],id_ID:["Garis Dasar"]}},74406:e=>{e.exports={en:["Body"],id_ID:["Badan"]}},333:e=>{e.exports={en:["Borders"],id_ID:["Batas-Batas"]}},42398:e=>{e.exports={en:["Base"],id_ID:["Dasar"]}},28975:e=>{e.exports={en:["Base level"],id_ID:["Level Dasar"]}},71776:e=>{e.exports={en:["Down"],id_ID:["Turun"]}},17611:e=>{e.exports={en:["Down bars"],id_ID:["Bar turun"]}},23743:e=>{e.exports={en:["Down color"],id_ID:["Warna Turun"]}},48225:e=>{e.exports={en:["Data modification"],id_ID:["Modifikasi data"]}},72942:e=>{e.exports={en:["Days"],id_ID:["Hari"]}},16564:e=>{e.exports={en:["Default"],id_ID:["Bawaan"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],id_ID:["Pemindahan (harga, bar)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],id_ID:["Latar belakang jam trading elektronik"]}},819:e=>{e.exports={en:["Extend lines"],id_ID:["Perpanjang Garis"]}},41129:e=>{e.exports={en:["Fill"],id_ID:["Mengisi"]}},61112:e=>{e.exports={en:["Fill top area"],id_ID:["Isi area atas"]}},73185:e=>{e.exports={en:["Fill bottom area"],id_ID:["Isi Area Dasar"]}},56796:e=>{e.exports={en:["Hours"],id_ID:["Jam"]}},95406:e=>{e.exports={en:["Horizontal"]}},56359:e=>{e.exports={en:["High line"],id_ID:["Garis High"]}},47326:e=>{e.exports={en:["Integer"],id_ID:["Bilangan bulat"]}},21429:e=>{e.exports={en:["Inputs"],id_ID:["Input"]}},64075:e=>{e.exports={en:["Override min tick"],id_ID:["Menimpa Tick Min"]}},34579:e=>{e.exports={en:["Low line"],id_ID:["Garis Low"]}},11626:e=>{e.exports={en:["Left"],id_ID:["Kiri"]}},43154:e=>{e.exports={en:["Months"],id_ID:["Bulan"]}},68833:e=>{e.exports={en:["Middle"],id_ID:["Tengah"]}},42562:e=>{e.exports={en:["Minutes"],id_ID:["Menit"]}},65188:e=>{e.exports={en:["Seconds"],id_ID:["Detik"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],id_ID:["Latar jam pra/pasca pasar"]}},59766:e=>{e.exports={en:["Precision"],id_ID:["Presisi"]}},84684:e=>{e.exports={en:["Price source"],id_ID:["Sumber Harga"]}},73466:e=>{e.exports={en:["Projection up bars"],
|
||||
id_ID:["Proyeksi bar naik"]}},77430:e=>{e.exports={en:["Projection candles"],id_ID:["Bar proyeksi"]}},88367:e=>{e.exports={en:["Projection down bars"],id_ID:["Proyeksi bar turun"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],id_ID:["Harga sebenarnya pada skala harga (bukan harga Heikin-Ashi)"]}},50421:e=>{e.exports={en:["Right"],id_ID:["Kanan"]}},835:e=>{e.exports={en:["Weeks"],id_ID:["Minggu"]}},32163:e=>{e.exports={en:["Wick"],id_ID:["Sumbu"]}},97118:e=>{e.exports={en:["Top"],id_ID:["Teratas"]}},89349:e=>{e.exports={en:["Top line"],id_ID:["Garis Atas"]}},70320:e=>{e.exports={en:["Text"],id_ID:["Teks"]}},25485:e=>{e.exports={en:["Text alignment"],id_ID:["Perataan teks"]}},67781:e=>{e.exports={en:["Text orientation"],id_ID:["Orientasi teks"]}},20215:e=>{e.exports={en:["Thin bars"],id_ID:["Bar-Bar Tipis"]}},24821:e=>{e.exports={en:["Ticks"],id_ID:["Tick"]}},77073:e=>{e.exports={en:["Timezone"],id_ID:["Zona waktu"]}},22691:e=>{e.exports={en:["Up"],id_ID:["Naik"]}},23091:e=>{e.exports={en:["Up color"],id_ID:["Warna Naik"]}},36957:e=>{e.exports={en:["Up bars"],id_ID:["Bar naik"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},69526:e=>{e.exports={en:["Vertical"]}},21105:e=>{e.exports={en:["candle"]}},27068:e=>{e.exports={en:["change HLC bars"],id_ID:["ubah bar HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],id_ID:["ubah isian warna area"]}},89346:e=>{e.exports={en:["change area line width"],id_ID:["ubah lebar area garis"]}},29605:e=>{e.exports={en:["change area line color"],id_ID:["ubah warna area garis"]}},4640:e=>{e.exports={en:["change area price source"],id_ID:["ubah sumber area harga"]}},42190:e=>{e.exports={en:["change base level"],id_ID:["ubah level dasar"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],id_ID:["ubah warna garis dasar bawah"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],id_ID:["ubah lebar garis dasar bawah"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],id_ID:["ubah isian warna area bawah dari garis dasar"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],id_ID:["ubah isian warna area atas dari garis dasar"]}},68609:e=>{e.exports={en:["change baseline price source"],id_ID:["ubah sumber garis dasar harga"]}},69044:e=>{e.exports={en:["change baseline top line color"],id_ID:["ubah warna garis dasar atas"]}},68197:e=>{e.exports={en:["change baseline top line width"],id_ID:["ubah lebar garis dasar atas"]}},33464:e=>{e.exports={en:["change bar up color"],id_ID:["ubah warna bar naik"]}},2066:e=>{e.exports={en:["change bar X coordinate"],id_ID:["Ubah koordinat bar X"]}},59622:e=>{e.exports={en:["change bar down color"],id_ID:["ubah warna bar turun"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],id_ID:["ubah warna bar berdasarkan penutupan sebelumnya"]}},88324:e=>{e.exports={en:["change column up color"],
|
||||
id_ID:["ubah warna kolom atas"]}},93890:e=>{e.exports={en:["change column down color"],id_ID:["ubah warna kolom bawah"]}},4727:e=>{e.exports={en:["change column price source"],id_ID:["ubah sumber kolom harga"]}},82063:e=>{e.exports={en:["change decimal places"],id_ID:["ubah jumlah desimal"]}},44223:e=>{e.exports={en:["change extended hours color"],id_ID:["ubah warna perpanjangan jam"]}},47393:e=>{e.exports={en:["change electronic trading hours"],id_ID:["Ubah jam trading elektronik"]}},6026:e=>{e.exports={en:["change high-low body color"],id_ID:["ubah warna badan tertinggi-terendah"]}},73021:e=>{e.exports={en:["change high-low body visibility"],id_ID:["ubah visibilitas badan tertinggi-terendah"]}},46844:e=>{e.exports={en:["change high-low border color"],id_ID:["ubah warna batas tertinggi-terendah"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],id_ID:["ubah visibilitas batas tertinggi-terendah"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],id_ID:["ubah visibilitas label tertinggi-terendah"]}},56961:e=>{e.exports={en:["change high-low labels color"],id_ID:["ubah warna label tertinggi-terendah"]}},88640:e=>{e.exports={en:["change line color"],id_ID:["ubah warna garis"]}},41837:e=>{e.exports={en:["change line price source"],id_ID:["ubah sumber garis harga"]}},48339:e=>{e.exports={en:["change line width"],id_ID:["ubah lebar garis"]}},38730:e=>{e.exports={en:["change post market color"],id_ID:["ubah warna pasca pasar"]}},44371:e=>{e.exports={en:["change pre market color"],id_ID:["ubah warna pra pasar"]}},11737:e=>{e.exports={en:["change price Y coordinate"],id_ID:["Ubah koordinat harga Y"]}},16241:e=>{e.exports={en:["change range bars style"],id_ID:["Ubah corak bar rentang"]}},65821:e=>{e.exports={en:["change range thin bars"],id_ID:["ubah rentang bar tipis"]}},75487:e=>{e.exports={en:["change renko wick down color"],id_ID:["ubah warna sumbu bawah renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],id_ID:["ubah warna sumbu atas renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],id_ID:["ubah visibilitas sumbu renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],id_ID:["ubah minimun tick overlay studi"]}},82924:e=>{e.exports={en:["change study overlay style"],id_ID:["ubah corak overlay studi"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],id_ID:["ubah tampilan dari harga sebenarnya pada skala harga (bukan harga Heiken-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],id_ID:["ubah bar tipis"]}},78509:e=>{e.exports={en:["change {title} base line color"],id_ID:["ubah warna garis dasar {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],id_ID:["ubah corak garis dasar {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],id_ID:["ubah visibilitas garis dasar {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],id_ID:["ubah lebar garis dasar {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],
|
||||
id_ID:["ubah warna garis bawah {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],id_ID:["ubah corak garis bawah {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],id_ID:["ubah visibilitas garis bawah {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],id_ID:["ubah lebar garis bawah {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],id_ID:["ubah {title} hari ke"]}},91201:e=>{e.exports={en:["change {title} days from"],id_ID:["ubah {title} hari dari"]}},76295:e=>{e.exports={en:["change {title} extend lines"],id_ID:["ubah perpanjangan garis {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],id_ID:["ubah {title} jam dari"]}},67233:e=>{e.exports={en:["change {title} hours to"],id_ID:["ubah {title} jam ke"]}},99122:e=>{e.exports={en:["change {title} months from"],id_ID:["ubah {title} bulan dari"]}},10518:e=>{e.exports={en:["change {title} months to"],id_ID:["ubah {title} bulan ke"]}},38011:e=>{e.exports={en:["change {title} minutes to"],id_ID:["ubah {title} menit ke"]}},59820:e=>{e.exports={en:["change {title} minutes from"],id_ID:["ubah {title} menit dari"]}},6573:e=>{e.exports={en:["change {title} seconds to"],id_ID:["ubah {title} detik ke"]}},86780:e=>{e.exports={en:["change {title} seconds from"],id_ID:["ubah {title} detik dari"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],id_ID:["ubah {title} menampilkan r pearson"]}},32481:e=>{e.exports={en:["change {title} weeks from"],id_ID:["ubah {title} minggu dari"]}},18678:e=>{e.exports={en:["change {title} weeks to"],id_ID:["ubah {title} minggu ke"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],id_ID:["ubah visibilitas garis atas {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],id_ID:["ubah lebar garis atas {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],id_ID:["ubah warna garis atas {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],id_ID:["ubah corak garis atas {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],id_ID:["ubah visibilitas {title} pada tick"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],id_ID:["ubah visibilitas {title} dalam minggu"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],id_ID:["ubah visibilitas {title} di dalam {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],id_ID:["ubah visibilitas {title} dalam hari"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],id_ID:["ubah visibilitas {title} dalam jam"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],id_ID:["ubah visibilitas {title} dalam menit"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],id_ID:["ubah visibilitas {title} dalam bulan"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],id_ID:["ubah visibilitas {title} pada detik"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],id_ID:["ubah warna batas {candleType} naik"]}},36697:e=>{e.exports={
|
||||
en:["change {candleType} up color"],id_ID:["ubah warna {candleType} naik"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],id_ID:["ubah warna sumbu {candleType} turun"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],id_ID:["ubah warna sumbu {candleType} naik"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],id_ID:["ubah visibilitas sumbu {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],id_ID:["ubah visibilitas badan {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],id_ID:["ubah visibilitas batas {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],id_ID:["ubah warna batas {candleType} turun"]}},64571:e=>{e.exports={en:["change {candleType} down color"],id_ID:["ubah warna {candleType} turun"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],id_ID:["ubah warna batas bar {chartType} turun"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],id_ID:["ubah warna batas bar {chartType} naik"]}},5012:e=>{e.exports={en:["change {chartType} down color"],id_ID:["ubah warna {chartType} turun"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],id_ID:["ubah warna batas bar proyeksi {chartType} naik"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],id_ID:["ubah warna bar proyeksi {chartType} turun"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],id_ID:["ubah warna bar proyeksi {chartType} naik"]}},6970:e=>{e.exports={en:["change {chartType} up color"],id_ID:["ubah warna {chartType} naik"]}},66110:e=>{e.exports={en:["change {inputName} property"],id_ID:["ubah properti {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],id_ID:["ubah properti {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],id_ID:["sesuaikan data untuk dividen"]}},1433:e=>{e.exports={en:["adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},35813:e=>{e.exports={en:["days"],id_ID:["Hari"]}},89919:e=>{e.exports={en:["days to"],id_ID:["hari ke"]}},59215:e=>{e.exports={en:["days from"],id_ID:["dari dari"]}},2359:e=>{e.exports={en:["hours"],id_ID:["Jam"]}},82267:e=>{e.exports={en:["hours from"],id_ID:["jam dari"]}},15600:e=>{e.exports={en:["hours to"],id_ID:["jam ke"]}},92598:e=>{e.exports={en:["hollow candles"],id_ID:["candle kosong"]}},76261:e=>{e.exports={en:["move drawings"],id_ID:["Pindahkan gambar"]}},95300:e=>{e.exports={en:["months"],id_ID:["Bulan"]}},17250:e=>{e.exports={en:["months from"],id_ID:["bulan dari"]}},2828:e=>{e.exports={en:["months to"],id_ID:["bulan ke"]}},18726:e=>{e.exports={en:["minutes"],id_ID:["menit"]}},67649:e=>{e.exports={en:["minutes to"],id_ID:["menit ke"]}},22476:e=>{e.exports={en:["minutes from"],id_ID:["menit dari"]}},751:e=>{e.exports={en:["seconds"],id_ID:["detik"]}},73419:e=>{e.exports={en:["seconds to"],id_ID:["detik ke"]}},35801:e=>{e.exports={en:["seconds from"],id_ID:["detik dari"]}},57243:e=>{
|
||||
e.exports={en:["range","ranges"],id_ID:["rentang"]}},70282:e=>{e.exports={en:["renko"]}},45537:e=>{e.exports={en:["weeks"],id_ID:["minggu"]}},92859:e=>{e.exports={en:["weeks from"],id_ID:["minggu dari"]}},44127:e=>{e.exports={en:["weeks to"],id_ID:["minggu ke"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],id_ID:["Tick"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],id_ID:["{value} desimal"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],id_ID:["Titik"]}},41256:e=>{e.exports={en:["Back"],id_ID:["Kembali"]}},53174:e=>{e.exports={en:["Right"],id_ID:["Kanan"]}},57e3:e=>{e.exports={en:["Compare"],id_ID:["Bandingkan"]}},93111:e=>{e.exports={en:["Content"],id_ID:["Konten"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],id_ID:["Salin tautan menuju gambar chart"]}},4543:e=>{e.exports={en:["Cancel"],id_ID:["Batal"]}},59934:e=>{e.exports={en:["Channels"],id_ID:["Kanal / Channel"]}},63245:e=>{e.exports={en:["Change symbol"],id_ID:["Ubah simbol"]}},56281:e=>{e.exports={en:["Chart style Columns"],id_ID:["Corak chart Kolom"]}},64526:e=>{e.exports={en:["Chart style Candles"],id_ID:["Corak chart Candle"]}},9537:e=>{e.exports={en:["Chart style Area"],id_ID:["Corak chart Area"]}},19265:e=>{e.exports={en:["Chart style Bars"],id_ID:["Corak chart Bar"]}},19579:e=>{e.exports={en:["Chart style Baseline"],id_ID:["Corak chart Garis Dasar"]}},47189:e=>{e.exports={en:["Chart style Kagi"],id_ID:["Corak chart Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],id_ID:["Corak chart Area HLC"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],id_ID:["Corak chart Candle Kosong"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],id_ID:["Corak chart Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],id_ID:["Corak chart High-low"]}},92911:e=>{e.exports={en:["Chart style Line"],id_ID:["Corak chart Garis"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],id_ID:["Corak chart Garis dengan penanda"]}},11604:e=>{e.exports={en:["Chart style Line break"],id_ID:["Corak chart Garis Jeda"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],id_ID:["Corak chart Profil Volume Sesi"]}},40447:e=>{e.exports={en:["Chart style Step line"],id_ID:["Corak chart Garis Tahap"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],id_ID:["Motif chart Poin & Figur"]}},49942:e=>{e.exports={en:["Chart style Range"],id_ID:["Corak chart Rentang"]}},80082:e=>{e.exports={en:["Chart style Renko"],id_ID:["Corak chart Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],id_ID:["Corak chart Peluang Harga Waktu"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],id_ID:["Corak chart Candle Volume"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],id_ID:["Corak chart Footprint Volume"]}},53438:e=>{e.exports={en:["Chart template"],id_ID:["Template chart"]}},47742:e=>{e.exports={en:["Close menu"],id_ID:["Pilih menu"]}},81578:e=>{e.exports={en:["Cursors"],id_ID:["Kursor"]}},77915:e=>{e.exports={en:["Cycles"],id_ID:["Siklus"]}},32064:e=>{e.exports={en:["Annotation tools"],id_ID:["Peralatan Catatan"]}},69207:e=>{e.exports={en:["Add to favorites"],id_ID:["Tambah ke daftar favorit"]}},34040:e=>{e.exports={en:["All sources"],id_ID:["Seluruh sumber"]}},19147:e=>{e.exports={en:["Arrows"],id_ID:["Panah"]}},42358:e=>{e.exports={en:["Bond"],id_ID:["Surat hutang"]}},65695:e=>{e.exports={en:["Brushes"],
|
||||
id_ID:["Kuas"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],id_ID:["Peralatan Gann dan Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],id_ID:["Bentuk-Bentuk Geometris"]}},57157:e=>{e.exports={en:["Dot"],id_ID:["Titik"]}},25848:e=>{e.exports={en:["Dark theme"],id_ID:["Tema gelap"]}},14939:e=>{e.exports={en:["Demonstration"],id_ID:["Demonstrasi"]}},78734:e=>{e.exports={en:["Description"],id_ID:["Deskripsi"]}},74385:e=>{e.exports={en:["Drawings"],id_ID:["Gambar"]}},44255:e=>{e.exports={en:["Elliott waves"],id_ID:["Gelombang Elliott"]}},8727:e=>{e.exports={en:["Eraser"],id_ID:["Penghapus"]}},93308:e=>{e.exports={en:["Extended session"],id_ID:["Sesi perpanjangan"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],id_ID:["Peralatan Prediksi dan Pengukuran"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],id_ID:["Mode layar penuh"]}},83576:e=>{e.exports={en:["Function"],id_ID:["Fungsi"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],id_ID:["Tahan tombol {hotKey_0} untuk gambar sementara"]}},27077:e=>{e.exports={en:["Open Object Tree"],id_ID:["Buka pohon objek"]}},7386:e=>{e.exports={en:["Open chart layout"],id_ID:["Buka layout chart"]}},79451:e=>{e.exports={en:["Lock all drawings"],id_ID:["Kunci Semua Peralatan Gambar"]}},35112:e=>{e.exports={en:["Move chart back"],id_ID:["Pindahkan chart ke belakang"]}},12754:e=>{e.exports={en:["Move chart forward"],id_ID:["Pindahkan chart ke depan"]}},37117:e=>{e.exports={en:["More"],id_ID:["Lebih lanjut"]}},35553:e=>{e.exports={en:["Magic"],id_ID:["Sihir"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],id_ID:["Mode Magnet menempelkan gambar didekat bar harga dengan nilai OHLC yang terdekat"]}},81031:e=>{e.exports={en:["Manage layout drawings"],id_ID:["Kelola layout gambar"]}},91563:e=>{e.exports={en:["Measure"],id_ID:["Mengukur"]}},97050:e=>{e.exports={en:["Measurer"],id_ID:["Alat pengukur"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],id_ID:["Gabungkan seluruh skala ke kiri"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],id_ID:["Gabungkan seluruh skala ke kanan"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],id_ID:["Tidak ada bursa yang sesuai dengan kriteria anda"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],id_ID:["Tidak ada Simbol yang sesuai dengan kriteria anda"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],id_ID:["Tidak ada yang cocok dengan kriteria anda"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],id_ID:["Gambar baru akan direplikasi ke seluruh chart didalam layout dan ditampilkan saat ticker yang sama dipilih"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],id_ID:["Gambar baru akan disinkronisasikan secara global"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],
|
||||
id_ID:["Gambar baru akan disinkronisasikan pada layout"]}},28628:e=>{e.exports={en:["Sources"],id_ID:["Sumber"]}},41569:e=>{e.exports={en:["Save chart layout"],id_ID:["Simpan layout chart"]}},8573:e=>{e.exports={en:["Search"],id_ID:["Cari"]}},79354:e=>{e.exports={en:["Search tool or function"],id_ID:["Alat atau fungsi pencarian"]}},57640:e=>{e.exports={en:["Select source"],id_ID:["Pilih sumber"]}},65781:e=>{e.exports={en:["Shapes"],id_ID:["Bentuk"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],id_ID:["Perlihatkan Alat Tersembunyi"]}},85786:e=>{e.exports={en:["Show Object Tree"],id_ID:["Tampilkan Pohon Objek"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],id_ID:["Tetap Dalam Mode Menggambar"]}},94593:e=>{e.exports={en:["Strong Magnet"],id_ID:["Magnet Kuat"]}},95481:e=>{e.exports={en:["Symbol"],id_ID:["Simbol"]}},74007:e=>{e.exports={en:["Symbol & description"],id_ID:["Simbol & deskripsi"]}},51165:e=>{e.exports={en:["Symbol Search"],id_ID:["Pencarian Simbol"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],id_ID:["Sinkronisasi gambar pada semua chart"]}},46417:e=>{e.exports={en:["Patterns"],id_ID:["Motif-Motif"]}},36167:e=>{e.exports={en:["Pitchforks"],id_ID:["Pitchfork"]}},79366:e=>{e.exports={en:["Previous day close price line"],id_ID:["Garis Harga Penutupan Hari Sebelumnya"]}},76753:e=>{e.exports={en:["Recent search"],id_ID:["Pencarian terbaru"]}},28051:e=>{e.exports={en:["Regular session"],id_ID:["Sesi reguler"]}},57118:e=>{e.exports={en:["Remove Drawings"],id_ID:["Hilangkan Gambar"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],id_ID:["Hilangkan seluruh indikator dan alat gambar"]}},96374:e=>{e.exports={en:["Remove drawings"],id_ID:["Hilangkan Gambar"]}},85106:e=>{e.exports={en:["Remove from favorites"],id_ID:["Hilangkan dari favorit"]}},99984:e=>{e.exports={en:["Remove indicators"],id_ID:["Hilangkan Indikator"]}},38206:e=>{e.exports={en:["Rename chart layout"],id_ID:["Ubah nama layout chart"]}},31789:e=>{e.exports={en:["Reset chart"],id_ID:["Atur ulang chart"]}},3519:e=>{e.exports={en:["Weak Magnet"],id_ID:["Magnet Lemah"]}},65831:e=>{e.exports={en:["Text & Notes"],id_ID:["Teks & Catatan"]}},48773:e=>{e.exports={en:["Trend line tools"],id_ID:["Peralatan Garis Tren"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],id_ID:["Ketik untuk mencari gambar, fungsi dan pengaturan"]}},69260:e=>{e.exports={en:["Volume-based"],id_ID:["Berbasis volume"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],id_ID:["Anda mengubah interface pengguna ke tema {name}. Apakah anda ingin mengganti tema template chartnya juga?"]}},55774:e=>{e.exports={en:["Zoom In"],id_ID:["Perbesar"]}},37310:e=>{e.exports={en:["Zoom Out"],id_ID:["Perkecil"]}},70932:e=>{e.exports={en:["commodity"],id_ID:["komiditas"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],id_ID:["ubah visibilitas ide pada chart"]}},35111:e=>{e.exports={
|
||||
en:["change indicators and financials name labels visibility"],id_ID:["ubah visibilitas label nama indikator dan finansial"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],id_ID:["ubah visibilitas label nilai indikator dan finansial"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],id_ID:["Ubah visibilitas harga pra/pasca pasar"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],id_ID:["ekonomi"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"],id_ID:["kontrak berjangka"]}},87464:e=>{e.exports={en:["index"],id_ID:["indeks"]}},90250:e=>{e.exports={en:["indices"],id_ID:["indeks"]}},76752:e=>{e.exports={en:["stock"],id_ID:["saham"]}},94521:e=>{e.exports={en:["sync drawings"],id_ID:["sinkronisasikan gambar"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],id_ID:["{hotKey_0} + Klik pada chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],id_ID:["{hotKey_0} — lingkaran"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],id_ID:["{hotKey_0} — menggambar garis lurus dengan sudut 45 derajat"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],id_ID:["{hotKey_0} — kenaikan tetap"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],id_ID:["{hotKey_0} — persegi"]}}}]);
|
||||
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],id_ID:["Titik"]}},41256:e=>{e.exports={en:["Back"],id_ID:["Kembali"]}},53174:e=>{e.exports={en:["Right"],id_ID:["Kanan"]}},57e3:e=>{e.exports={en:["Compare"],id_ID:["Bandingkan"]}},93111:e=>{e.exports={en:["Content"],id_ID:["Konten"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],id_ID:["Salin tautan menuju gambar chart"]}},4543:e=>{e.exports={en:["Cancel"],id_ID:["Batal"]}},59934:e=>{e.exports={en:["Channels"],id_ID:["Kanal / Channel"]}},63245:e=>{e.exports={en:["Change symbol"],id_ID:["Ubah simbol"]}},56281:e=>{e.exports={en:["Chart style Columns"],id_ID:["Corak chart Kolom"]}},64526:e=>{e.exports={en:["Chart style Candles"],id_ID:["Corak chart Candle"]}},9537:e=>{e.exports={en:["Chart style Area"],id_ID:["Corak chart Area"]}},19265:e=>{e.exports={en:["Chart style Bars"],id_ID:["Corak chart Bar"]}},19579:e=>{e.exports={en:["Chart style Baseline"],id_ID:["Corak chart Garis Dasar"]}},47189:e=>{e.exports={en:["Chart style Kagi"],id_ID:["Corak chart Kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],id_ID:["Corak chart Area HLC"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],id_ID:["Corak chart Candle Kosong"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],id_ID:["Corak chart Heikin Ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],id_ID:["Corak chart High-low"]}},92911:e=>{e.exports={en:["Chart style Line"],id_ID:["Corak chart Garis"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],id_ID:["Corak chart Garis dengan penanda"]}},11604:e=>{e.exports={en:["Chart style Line break"],id_ID:["Corak chart Garis Jeda"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],id_ID:["Corak chart Profil Volume Sesi"]}},40447:e=>{e.exports={en:["Chart style Step line"],id_ID:["Corak chart Garis Tahap"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],id_ID:["Motif chart Poin & Figur"]}},49942:e=>{e.exports={en:["Chart style Range"],id_ID:["Corak chart Rentang"]}},80082:e=>{e.exports={en:["Chart style Renko"],id_ID:["Corak chart Renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],id_ID:["Corak chart Peluang Harga Waktu"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],id_ID:["Corak chart Candle Volume"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],id_ID:["Corak chart Footprint Volume"]}},53438:e=>{e.exports={en:["Chart template"],id_ID:["Template chart"]}},47742:e=>{e.exports={en:["Close menu"],id_ID:["Pilih menu"]}},81578:e=>{e.exports={en:["Cursors"],id_ID:["Kursor"]}},77915:e=>{e.exports={en:["Cycles"],id_ID:["Siklus"]}},32064:e=>{e.exports={en:["Annotation tools"],id_ID:["Peralatan Catatan"]}},69207:e=>{e.exports={en:["Add to favorites"],id_ID:["Tambah ke daftar favorit"]}},34040:e=>{e.exports={en:["All sources"],id_ID:["Seluruh sumber"]}},19147:e=>{e.exports={en:["Arrows"],id_ID:["Panah"]}},42358:e=>{e.exports={en:["Bond"],
|
||||
id_ID:["Surat hutang"]}},65695:e=>{e.exports={en:["Brushes"],id_ID:["Kuas"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],id_ID:["Peralatan Gann dan Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],id_ID:["Bentuk-Bentuk Geometris"]}},57157:e=>{e.exports={en:["Dot"],id_ID:["Titik"]}},25848:e=>{e.exports={en:["Dark theme"],id_ID:["Tema gelap"]}},14939:e=>{e.exports={en:["Demonstration"],id_ID:["Demonstrasi"]}},78734:e=>{e.exports={en:["Description"],id_ID:["Deskripsi"]}},74385:e=>{e.exports={en:["Drawings"],id_ID:["Gambar"]}},44255:e=>{e.exports={en:["Elliott waves"],id_ID:["Gelombang Elliott"]}},8727:e=>{e.exports={en:["Eraser"],id_ID:["Penghapus"]}},93308:e=>{e.exports={en:["Extended session"],id_ID:["Sesi perpanjangan"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],id_ID:["Peralatan Prediksi dan Pengukuran"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],id_ID:["Mode layar penuh"]}},83576:e=>{e.exports={en:["Function"],id_ID:["Fungsi"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],id_ID:["Tahan tombol {hotKey_0} untuk gambar sementara"]}},27077:e=>{e.exports={en:["Open Object Tree"],id_ID:["Buka pohon objek"]}},7386:e=>{e.exports={en:["Open chart layout"],id_ID:["Buka layout chart"]}},79451:e=>{e.exports={en:["Lock all drawings"],id_ID:["Kunci Semua Peralatan Gambar"]}},35112:e=>{e.exports={en:["Move chart back"],id_ID:["Pindahkan chart ke belakang"]}},12754:e=>{e.exports={en:["Move chart forward"],id_ID:["Pindahkan chart ke depan"]}},37117:e=>{e.exports={en:["More"],id_ID:["Lebih lanjut"]}},35553:e=>{e.exports={en:["Magic"],id_ID:["Sihir"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],id_ID:["Mode Magnet menempelkan gambar didekat bar harga dengan nilai OHLC yang terdekat"]}},81031:e=>{e.exports={en:["Manage layout drawings"],id_ID:["Kelola layout gambar"]}},91563:e=>{e.exports={en:["Measure"],id_ID:["Mengukur"]}},97050:e=>{e.exports={en:["Measurer"],id_ID:["Alat pengukur"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],id_ID:["Gabungkan seluruh skala ke kiri"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],id_ID:["Gabungkan seluruh skala ke kanan"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],id_ID:["Tidak ada bursa yang sesuai dengan kriteria anda"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],id_ID:["Tidak ada Simbol yang sesuai dengan kriteria anda"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],id_ID:["Tidak ada yang cocok dengan kriteria anda"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],id_ID:["Gambar baru akan direplikasi ke seluruh chart didalam layout dan ditampilkan saat ticker yang sama dipilih"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],id_ID:["Gambar baru akan disinkronisasikan secara global"]}},93027:e=>{e.exports={
|
||||
en:["New drawings will sync in layout"],id_ID:["Gambar baru akan disinkronisasikan pada layout"]}},28628:e=>{e.exports={en:["Sources"],id_ID:["Sumber"]}},41569:e=>{e.exports={en:["Save chart layout"],id_ID:["Simpan layout chart"]}},8573:e=>{e.exports={en:["Search"],id_ID:["Cari"]}},79354:e=>{e.exports={en:["Search tool or function"],id_ID:["Alat atau fungsi pencarian"]}},57640:e=>{e.exports={en:["Select source"],id_ID:["Pilih sumber"]}},65781:e=>{e.exports={en:["Shapes"],id_ID:["Bentuk"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],id_ID:["Perlihatkan Alat Tersembunyi"]}},85786:e=>{e.exports={en:["Show Object Tree"],id_ID:["Tampilkan Pohon Objek"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],id_ID:["Tetap Dalam Mode Menggambar"]}},94593:e=>{e.exports={en:["Strong Magnet"],id_ID:["Magnet Kuat"]}},95481:e=>{e.exports={en:["Symbol"],id_ID:["Simbol"]}},74007:e=>{e.exports={en:["Symbol & description"],id_ID:["Simbol & deskripsi"]}},51165:e=>{e.exports={en:["Symbol Search"],id_ID:["Pencarian Simbol"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],id_ID:["Sinkronisasi gambar pada semua chart"]}},46417:e=>{e.exports={en:["Patterns"],id_ID:["Motif-Motif"]}},36167:e=>{e.exports={en:["Pitchforks"],id_ID:["Pitchfork"]}},79366:e=>{e.exports={en:["Previous day close price line"],id_ID:["Garis Harga Penutupan Hari Sebelumnya"]}},76753:e=>{e.exports={en:["Recent search"],id_ID:["Pencarian terbaru"]}},28051:e=>{e.exports={en:["Regular session"],id_ID:["Sesi reguler"]}},57118:e=>{e.exports={en:["Remove Drawings"],id_ID:["Hilangkan Gambar"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],id_ID:["Hilangkan seluruh indikator dan alat gambar"]}},96374:e=>{e.exports={en:["Remove drawings"],id_ID:["Hilangkan Gambar"]}},85106:e=>{e.exports={en:["Remove from favorites"],id_ID:["Hilangkan dari favorit"]}},99984:e=>{e.exports={en:["Remove indicators"],id_ID:["Hilangkan Indikator"]}},38206:e=>{e.exports={en:["Rename chart layout"],id_ID:["Ubah nama layout chart"]}},31789:e=>{e.exports={en:["Reset chart"],id_ID:["Atur ulang chart"]}},3519:e=>{e.exports={en:["Weak Magnet"],id_ID:["Magnet Lemah"]}},65831:e=>{e.exports={en:["Text & Notes"],id_ID:["Teks & Catatan"]}},48773:e=>{e.exports={en:["Trend line tools"],id_ID:["Peralatan Garis Tren"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],id_ID:["Ketik untuk mencari gambar, fungsi dan pengaturan"]}},69260:e=>{e.exports={en:["Volume-based"],id_ID:["Berbasis volume"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],id_ID:["Anda mengubah interface pengguna ke tema {name}. Apakah anda ingin mengganti tema template chartnya juga?"]}},55774:e=>{e.exports={en:["Zoom In"],id_ID:["Perbesar"]}},37310:e=>{e.exports={en:["Zoom Out"],id_ID:["Perkecil"]}},70932:e=>{e.exports={en:["commodity"],id_ID:["komiditas"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],id_ID:["ubah visibilitas ide pada chart"]}
|
||||
},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],id_ID:["ubah visibilitas label nama indikator dan finansial"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],id_ID:["ubah visibilitas label nilai indikator dan finansial"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],id_ID:["Ubah visibilitas harga pra/pasca pasar"]}},46128:e=>{e.exports={en:["crypto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],id_ID:["ekonomi"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"],id_ID:["kontrak berjangka"]}},87464:e=>{e.exports={en:["index"],id_ID:["indeks"]}},90250:e=>{e.exports={en:["indices"],id_ID:["indeks"]}},76752:e=>{e.exports={en:["stock"],id_ID:["saham"]}},94521:e=>{e.exports={en:["sync drawings"],id_ID:["sinkronisasikan gambar"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],id_ID:["{hotKey_0} + Klik pada chart"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],id_ID:["{hotKey_0} — lingkaran"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],id_ID:["{hotKey_0} — menggambar garis lurus dengan sudut 45 derajat"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],id_ID:["{hotKey_0} — kenaikan tetap"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],id_ID:["{hotKey_0} — persegi"]}}}]);
|
||||
@@ -1,7 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:a=>{a.exports={en:["bars"],id_ID:["bar"]}},4348:a=>{a.exports={en:["(O + H + L + C)/4"]}},27311:a=>{a.exports={en:["(H + L + C)/3"]}},69303:a=>{a.exports={en:["(H + L)/2"]}},31882:a=>{a.exports={en:["12-hours"],id_ID:["12-jam"]}},5797:a=>{a.exports={en:["24-hours"],id_ID:["24-jam"]}},23111:a=>{a.exports={en:["Color bars based on previous close"],id_ID:["Warnai bar berdasarkan penutupan sebelumnya"]}},23739:a=>{a.exports={en:["Canvas"]}},24197:a=>{a.exports={en:["Center"],id_ID:["Tengah"]}},15153:a=>{a.exports={en:["Chart basic styles"],id_ID:["Chart corak basic"]}},45639:a=>{a.exports={en:["Chart values"],id_ID:["Nilai chart"]}},84831:a=>{a.exports={en:["Close line"],id_ID:["Garis Penutupan"]}},74622:a=>{a.exports={en:["Crosshair"]}},81849:a=>{a.exports={en:["Currency"],id_ID:["Mata Uang"]}},3015:a=>{a.exports={en:["Currency and Unit"],id_ID:["Mata uang dan unit"]}},93020:a=>{a.exports={en:["Adjust data for dividends"],id_ID:["Sesuaikan data untuk dividen"]}},68921:a=>{a.exports={en:["Adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},36620:a=>{a.exports={en:["Alerts"],id_ID:["Peringatan"]}},14119:a=>{a.exports={en:["Arguments"],id_ID:["Argumen"]}},68650:a=>{a.exports={en:["Average close"],id_ID:["Rata-rata penutupan"]}},27567:a=>{a.exports={en:["Bottom"],id_ID:["Dasar"]}},3159:a=>{a.exports={en:["Bottom line"],id_ID:["Garis Dasar"]}},74406:a=>{a.exports={en:["Body"],id_ID:["Badan"]}},333:a=>{a.exports={en:["Borders"],id_ID:["Batas-Batas"]}},79468:a=>{a.exports={en:["Background"],id_ID:["Latar"]}},10842:a=>{a.exports={en:["Bar change values"],id_ID:["Nilai Perubahan Bar"]}},28975:a=>{a.exports={en:["Base level"],id_ID:["Level Dasar"]}},76473:a=>{a.exports={en:["Bid and ask"],id_ID:["Bid dan Ask"]}},32744:a=>{a.exports={en:["Buttons"],id_ID:["Tombol-tombol"]}},68662:a=>{a.exports={en:["Grid lines"],id_ID:["Garis grid"]}},17611:a=>{a.exports={en:["Down bars"],id_ID:["Bar turun"]}},23743:a=>{a.exports={en:["Down color"],id_ID:["Warna Turun"]}},48225:a=>{a.exports={en:["Data modification"],id_ID:["Modifikasi data"]}},84838:a=>{a.exports={en:["Date format"],id_ID:["Format Tanggal"]}},42357:a=>{a.exports={en:["Day of week on labels"],id_ID:["Hari dalam seminggu pada label"]}},16564:a=>{a.exports={en:["Default"],id_ID:["Bawaan"]}},78734:a=>{a.exports={en:["Description"],id_ID:["Deskripsi"]}},59777:a=>{a.exports={en:["Electronic trading hours background"],id_ID:["Latar belakang jam trading elektronik"]}},69808:a=>{a.exports={en:["Events"],id_ID:["Peristiwa"]}},41129:a=>{a.exports={en:["Fill"],id_ID:["Mengisi"]}},61112:a=>{a.exports={en:["Fill top area"],id_ID:["Isi area atas"]}},73185:a=>{a.exports={en:["Fill bottom area"],id_ID:["Isi Area Dasar"]}},886:a=>{a.exports={en:["HLC bars"],id_ID:["Bar HLC"]}},95406:a=>{a.exports={en:["Horizontal"]}},61900:a=>{a.exports={en:["Horz only"],id_ID:["Hanya horizontal"]}},14180:a=>{a.exports={en:["High and low"],id_ID:["Tertinggi dan terendah"]}},56359:a=>{a.exports={
|
||||
en:["High line"],id_ID:["Garis High"]}},47326:a=>{a.exports={en:["Integer"],id_ID:["Bilangan bulat"]}},84549:a=>{a.exports={en:["Indicators"],id_ID:["Indikator"]}},78082:a=>{a.exports={en:["Indicators and financials"],id_ID:["Indikator dan finansial"]}},25765:a=>{a.exports={en:["Open market status"],id_ID:["Tampilkan status pasar Buka"]}},34579:a=>{a.exports={en:["Low line"],id_ID:["Garis Low"]}},14876:a=>{a.exports={en:["Logo"]}},89315:a=>{a.exports={en:["Long Description"],id_ID:["Deskripsi Panjang"]}},72423:a=>{a.exports={en:["Last day change values"],id_ID:["Nilai perubahan hari terakhir"]}},11626:a=>{a.exports={en:["Left"],id_ID:["Kiri"]}},8249:a=>{a.exports={en:["Money"],id_ID:["Uang"]}},70937:a=>{a.exports={en:["Margins"],id_ID:["Marjin"]}},68833:a=>{a.exports={en:["Middle"],id_ID:["Tengah"]}},58589:a=>{a.exports={en:["No overlapping labels"],id_ID:["Label Tertumpuk Tidak Diperbolehkan"]}},60798:a=>{a.exports={en:["None"],id_ID:["Tidak satu pun"]}},51019:a=>{a.exports={en:["Navigation"],id_ID:["Navigasi"]}},99709:a=>{a.exports={en:["Name"],id_ID:["Nama"]}},8852:a=>{a.exports={en:["Save chart left edge position when changing interval"],id_ID:["Simpan posisi tepi kiri chart saat mengubah interval"]}},26204:a=>{a.exports={en:["Scale modes (A and L)"],id_ID:["Mode skala (A dan L)"]}},93968:a=>{a.exports={en:["Scales"],id_ID:["Skala"]}},90275:a=>{a.exports={en:["Scales and lines"],id_ID:["Skala dan garis"]}},30042:a=>{a.exports={en:["Scales placement"],id_ID:["Penempatan Skala"]}},28715:a=>{a.exports={en:["Status line"],id_ID:["Baris status"]}},95481:a=>{a.exports={en:["Symbol"],id_ID:["Simbol"]}},53263:a=>{a.exports={en:["Pane"],id_ID:["Panel"]}},82894:a=>{a.exports={en:["Pane separators"],id_ID:["Pemisah panel"]}},16207:a=>{a.exports={en:["Percentage"],id_ID:["Persentase"]}},94408:a=>{a.exports={en:["Pips"],id_ID:["Pip"]}},60904:a=>{a.exports={en:["Pre/post market"],id_ID:["Pra/Pasca pasar"]}},88327:a=>{a.exports={en:["Pre/post market hours background"],id_ID:["Latar jam pra/pasca pasar"]}},59766:a=>{a.exports={en:["Precision"],id_ID:["Presisi"]}},83811:a=>{a.exports={en:["Previous day close"],id_ID:["Penutupan hari sebelumnya"]}},35082:a=>{a.exports={en:["Price Scale"],id_ID:["Skala Harga"]}},27632:a=>{a.exports={en:["Price and percentage value"],id_ID:["Nilai Harga dan Persentase"]}},62142:a=>{a.exports={en:["Price labels & lines"],id_ID:["Label harga & garis"]}},84684:a=>{a.exports={en:["Price source"],id_ID:["Sumber Harga"]}},73466:a=>{a.exports={en:["Projection up bars"],id_ID:["Proyeksi bar naik"]}},77430:a=>{a.exports={en:["Projection candles"],id_ID:["Bar proyeksi"]}},88367:a=>{a.exports={en:["Projection down bars"],id_ID:["Proyeksi bar turun"]}},6160:a=>{a.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],id_ID:["Harga sebenarnya pada skala harga (bukan harga Heikin-Ashi)"]}},50421:a=>{a.exports={en:["Right"],id_ID:["Kanan"]}},62532:a=>{a.exports={en:["Right Margin"],id_ID:["Margin Kanan"]}},41571:a=>{a.exports={en:["Watermark"],id_ID:["Tanda air"]}},32163:a=>{a.exports={
|
||||
en:["Wick"],id_ID:["Sumbu"]}},97118:a=>{a.exports={en:["Top"],id_ID:["Teratas"]}},89349:a=>{a.exports={en:["Top line"],id_ID:["Garis Atas"]}},70320:a=>{a.exports={en:["Text"],id_ID:["Teks"]}},25485:a=>{a.exports={en:["Text alignment"],id_ID:["Perataan teks"]}},67781:a=>{a.exports={en:["Text orientation"],id_ID:["Orientasi teks"]}},20215:a=>{a.exports={en:["Thin bars"],id_ID:["Bar-Bar Tipis"]}},70198:a=>{a.exports={en:["Title"],id_ID:["Judul"]}},29854:a=>{a.exports={en:["Titles"],id_ID:["Judul"]}},5791:a=>{a.exports={en:["Ticker"]}},16816:a=>{a.exports={en:["Ticker and description"],id_ID:["Ticker dan deskripsi"]}},24821:a=>{a.exports={en:["Ticks"],id_ID:["Tick"]}},93965:a=>{a.exports={en:["Time Scale"],id_ID:["Skala waktu"]}},5591:a=>{a.exports={en:["Time hours format"],id_ID:["Format waktu jam"]}},77073:a=>{a.exports={en:["Timezone"],id_ID:["Zona waktu"]}},76495:a=>{a.exports={en:["Trading"]}},33564:a=>{a.exports={en:["Unit"]}},23091:a=>{a.exports={en:["Up color"],id_ID:["Warna Naik"]}},36957:a=>{a.exports={en:["Up bars"],id_ID:["Bar naik"]}},49545:a=>{a.exports={en:["Use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},37644:a=>{a.exports={en:["Volume"]}},51514:a=>{a.exports={en:["Value"],id_ID:["Nilai"]}},31218:a=>{a.exports={en:["Value according to scale"],id_ID:["Nilai menurut Skala"]}},60092:a=>{a.exports={en:["Values"],id_ID:["Nilai"]}},83594:a=>{a.exports={en:["Vert and horz"],id_ID:["Vertikal dan horizontal"]}},8402:a=>{a.exports={en:["Vert only"],id_ID:["Hanya vertikal"]}},69526:a=>{a.exports={en:["Vertical"]}},21105:a=>{a.exports={en:["candle"]}},27068:a=>{a.exports={en:["change HLC bars"],id_ID:["ubah bar HLC"]}},3311:a=>{a.exports={en:["change navigation buttons visibility"],id_ID:["ubah visibilitas tombol navigasi"]}},96227:a=>{a.exports={en:["change open market status visibility"],id_ID:["ubah visibilitas status market yang terbuka"]}},43231:a=>{a.exports={en:["change average close price line width"],id_ID:["ubah lebar garis harga rata-rata penutupan"]}},47026:a=>{a.exports={en:["change average close price line color"],id_ID:["ubah warna garis harga rata-rata penutupan"]}},86866:a=>{a.exports={en:["change area fill color"],id_ID:["ubah isian warna area"]}},89346:a=>{a.exports={en:["change area line width"],id_ID:["ubah lebar area garis"]}},29605:a=>{a.exports={en:["change area line color"],id_ID:["ubah warna area garis"]}},4640:a=>{a.exports={en:["change area price source"],id_ID:["ubah sumber area harga"]}},98407:a=>{a.exports={en:["change ask line color"],id_ID:["ubah warna garis harga ask"]}},42190:a=>{a.exports={en:["change base level"],id_ID:["ubah level dasar"]}},71785:a=>{a.exports={en:["change baseline bottom line color"],id_ID:["ubah warna garis dasar bawah"]}},56175:a=>{a.exports={en:["change baseline bottom line width"],id_ID:["ubah lebar garis dasar bawah"]}},97216:a=>{a.exports={en:["change baseline fill bottom area color"],id_ID:["ubah isian warna area bawah dari garis dasar"]}},92873:a=>{a.exports={
|
||||
en:["change baseline fill top area color"],id_ID:["ubah isian warna area atas dari garis dasar"]}},68609:a=>{a.exports={en:["change baseline price source"],id_ID:["ubah sumber garis dasar harga"]}},69044:a=>{a.exports={en:["change baseline top line color"],id_ID:["ubah warna garis dasar atas"]}},68197:a=>{a.exports={en:["change baseline top line width"],id_ID:["ubah lebar garis dasar atas"]}},33464:a=>{a.exports={en:["change bar up color"],id_ID:["ubah warna bar naik"]}},27426:a=>{a.exports={en:["change bar change visibility"],id_ID:["ubah visibilitas perubahan bar"]}},59622:a=>{a.exports={en:["change bar down color"],id_ID:["ubah warna bar turun"]}},17919:a=>{a.exports={en:["change bid line color"],id_ID:["ubah warna garis harga bid"]}},32094:a=>{a.exports={en:["change bottom margin"],id_ID:["ubah margin bawah"]}},63119:a=>{a.exports={en:["change currency and unit labels visibility"],id_ID:["ubah visibilitas label mata uang dan unit"]}},64003:a=>{a.exports={en:["change currency label visibility"],id_ID:["ubah visibilitas label mata uang"]}},42803:a=>{a.exports={en:["change chart background color"],id_ID:["ubah warna latar belakang chart"]}},41382:a=>{a.exports={en:["change chart background type"],id_ID:["ubah tipe latar belakang chart"]}},79637:a=>{a.exports={en:["change chart values visibility"],id_ID:["Ubah visibilitas nilai chart"]}},43090:a=>{a.exports={en:["change color bars based on previous close"],id_ID:["ubah warna bar berdasarkan penutupan sebelumnya"]}},88324:a=>{a.exports={en:["change column up color"],id_ID:["ubah warna kolom atas"]}},93890:a=>{a.exports={en:["change column down color"],id_ID:["ubah warna kolom bawah"]}},4727:a=>{a.exports={en:["change column price source"],id_ID:["ubah sumber kolom harga"]}},50544:a=>{a.exports={en:["change crosshair width"],id_ID:["ubah lebar crosshair"]}},92885:a=>{a.exports={en:["change crosshair color"],id_ID:["ubah warna crosshair"]}},68418:a=>{a.exports={en:["change crosshair style"],id_ID:["ubah corak crosshair"]}},43109:a=>{a.exports={en:["change date format"],id_ID:["ubah format tanggal"]}},30418:a=>{a.exports={en:["change day of week on labels"],id_ID:["ubah hari dalam seminggu pada label"]}},82063:a=>{a.exports={en:["change decimal places"],id_ID:["ubah jumlah desimal"]}},44223:a=>{a.exports={en:["change extended hours color"],id_ID:["ubah warna perpanjangan jam"]}},47393:a=>{a.exports={en:["change electronic trading hours"],id_ID:["Ubah jam trading elektronik"]}},73844:a=>{a.exports={en:["change grid lines visibility"],id_ID:["ubah visibilitas garis grid"]}},61407:a=>{a.exports={en:["change high and low price line color"],id_ID:["ubah warna garis harga tertinggi dan terendah"]}},39581:a=>{a.exports={en:["change high and low price line width"],id_ID:["ubah lebar garis harga tertinggi dan terendah"]}},6026:a=>{a.exports={en:["change high-low body color"],id_ID:["ubah warna badan tertinggi-terendah"]}},73021:a=>{a.exports={en:["change high-low body visibility"],id_ID:["ubah visibilitas badan tertinggi-terendah"]}},46844:a=>{a.exports={
|
||||
en:["change high-low border color"],id_ID:["ubah warna batas tertinggi-terendah"]}},15801:a=>{a.exports={en:["change high-low borders visibility"],id_ID:["ubah visibilitas batas tertinggi-terendah"]}},72399:a=>{a.exports={en:["change high-low labels visibility"],id_ID:["ubah visibilitas label tertinggi-terendah"]}},56961:a=>{a.exports={en:["change high-low labels color"],id_ID:["ubah warna label tertinggi-terendah"]}},21133:a=>{a.exports={en:["change horz grid lines color"],id_ID:["ubah warna garis grid horizontal"]}},63050:a=>{a.exports={en:["change indicator titles visibility"],id_ID:["ubah visibilitas judul indikator"]}},49583:a=>{a.exports={en:["change indicator values visibility"],id_ID:["ubah visibilitas nilai indikator"]}},78310:a=>{a.exports={en:["change indicator arguments visibility"],id_ID:["ubah visibilitas argumen indikator"]}},35111:a=>{a.exports={en:["change indicators and financials name labels visibility"],id_ID:["ubah visibilitas label nama indikator dan finansial"]}},71161:a=>{a.exports={en:["change indicators and financials value labels visibility"],id_ID:["ubah visibilitas label nilai indikator dan finansial"]}},66307:a=>{a.exports={en:["change last day change visibility"],id_ID:["ubah visibilitas perubahan hari terakhir"]}},91873:a=>{a.exports={en:["change legend background transparency"],id_ID:["ubah transparansi latar belakang legenda"]}},14246:a=>{a.exports={en:["change legend background visibility"],id_ID:["ubah visibilitas latar belakang legenda"]}},88640:a=>{a.exports={en:["change line color"],id_ID:["ubah warna garis"]}},41837:a=>{a.exports={en:["change line price source"],id_ID:["ubah sumber garis harga"]}},48339:a=>{a.exports={en:["change line width"],id_ID:["ubah lebar garis"]}},18378:a=>{a.exports={en:["change pane buttons visibility"],id_ID:["ubah visibilitas tombol pane"]}},52203:a=>{a.exports={en:["change pane separators color"],id_ID:["Ubah warna pemisah panel"]}},38730:a=>{a.exports={en:["change post market color"],id_ID:["ubah warna pasca pasar"]}},28075:a=>{a.exports={en:["change post market line color"],id_ID:["ubah warna garis pasca pasar"]}},91978:a=>{a.exports={en:["change pre/post market price lines visibility"],id_ID:["Ubah visibilitas harga pra/pasca pasar"]}},44371:a=>{a.exports={en:["change pre market color"],id_ID:["ubah warna pra pasar"]}},96114:a=>{a.exports={en:["change pre market line color"],id_ID:["ubah warna garis pra pasar"]}},69814:a=>{a.exports={en:["change previous close price line color"],id_ID:["ubah warna garis harga penutupan sebelumnya"]}},13660:a=>{a.exports={en:["change previous close price line width"],id_ID:["ubah lebar garis harga penutupan sebelumnya"]}},87861:a=>{a.exports={en:["change price line color"],id_ID:["ubah warna garis harga"]}},29353:a=>{a.exports={en:["change price line width"],id_ID:["ubah lebar garis harga"]}},16241:a=>{a.exports={en:["change range bars style"],id_ID:["Ubah corak bar rentang"]}},65821:a=>{a.exports={en:["change range thin bars"],id_ID:["ubah rentang bar tipis"]}},75487:a=>{a.exports={
|
||||
en:["change renko wick down color"],id_ID:["ubah warna sumbu bawah renko"]}},92277:a=>{a.exports={en:["change renko wick up color"],id_ID:["ubah warna sumbu atas renko"]}},79604:a=>{a.exports={en:["change renko wick visibility"],id_ID:["ubah visibilitas sumbu renko"]}},82946:a=>{a.exports={en:["change right margin"],id_ID:["ubah margin kanan"]}},79545:a=>{a.exports={en:["change right margin percentage"],id_ID:["ubah persentase margin kanan"]}},78995:a=>{a.exports={en:["change symbol watermark color"],id_ID:["ubah warna watermark simbol"]}},73227:a=>{a.exports={en:["change symbol watermark visibility"],id_ID:["ubah visibilitas watermark simbol"]}},88167:a=>{a.exports={en:["change symbol description visibility"],id_ID:["ubah visibilitas deskripsi simbol"]}},12050:a=>{a.exports={en:["change symbol field visibility"],id_ID:["ubah visibilitas bidang simbol"]}},46066:a=>{a.exports={en:["change symbol last value mode"],id_ID:["ubah mode nilai terakhir simbol"]}},902:a=>{a.exports={en:["change symbol legend format"],id_ID:["ubah format legenda simbol"]}},77408:a=>{a.exports={en:["change save chart left edge position when changing interval"],id_ID:["ubah simpan posisi tepi kiri chart saat mengubah interval"]}},69023:a=>{a.exports={en:["change scale modes buttons visibility"],id_ID:["Ubah visibilitas tombol mode skala"]}},76131:a=>{a.exports={en:["change scales text color"],id_ID:["ubah warna skala teks"]}},27792:a=>{a.exports={en:["change scales font size"],id_ID:["ubah ukuran font skala"]}},94997:a=>{a.exports={en:["change scales lines color"],id_ID:["ubah warna garis skala"]}},60067:a=>{a.exports={en:["change sessions breaks visibility"],id_ID:["ubah visibilitas jeda sesi"]}},28175:a=>{a.exports={en:["change sessions breaks width"],id_ID:["ubah lebar jeda sesi"]}},33895:a=>{a.exports={en:["change sessions breaks color"],id_ID:["ubah warna jeda sesi"]}},21641:a=>{a.exports={en:["change sessions breaks style"],id_ID:["ubah corak jeda sesi"]}},16660:a=>{a.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],id_ID:["ubah tampilan dari harga sebenarnya pada skala harga (bukan harga Heiken-Ashi)"]}},60834:a=>{a.exports={en:["change thin bars"],id_ID:["ubah bar tipis"]}},39754:a=>{a.exports={en:["change time hours format"],id_ID:["Ubah format waktu jam"]}},74883:a=>{a.exports={en:["change top margin"],id_ID:["ubah margin atas"]}},51250:a=>{a.exports={en:["change unit label visibility"],id_ID:["ubah visibilitas label unit"]}},71805:a=>{a.exports={en:["change vert grid lines color"],id_ID:["ubah warna garis grid vertikal"]}},96201:a=>{a.exports={en:["change volume values visibility"],id_ID:["ubah visibilitas nilai volume"]}},17214:a=>{a.exports={en:["change {candleType} up border color"],id_ID:["ubah warna batas {candleType} naik"]}},36697:a=>{a.exports={en:["change {candleType} up color"],id_ID:["ubah warna {candleType} naik"]}},48091:a=>{a.exports={en:["change {candleType} wick down color"],id_ID:["ubah warna sumbu {candleType} turun"]}},47664:a=>{a.exports={
|
||||
en:["change {candleType} wick up color"],id_ID:["ubah warna sumbu {candleType} naik"]}},94750:a=>{a.exports={en:["change {candleType} wick visibility"],id_ID:["ubah visibilitas sumbu {candleType}"]}},60608:a=>{a.exports={en:["change {candleType} body visibility"],id_ID:["ubah visibilitas badan {candleType}"]}},11114:a=>{a.exports={en:["change {candleType} border visibility"],id_ID:["ubah visibilitas batas {candleType}"]}},20291:a=>{a.exports={en:["change {candleType} down border color"],id_ID:["ubah warna batas {candleType} turun"]}},64571:a=>{a.exports={en:["change {candleType} down color"],id_ID:["ubah warna {candleType} turun"]}},23053:a=>{a.exports={en:["change {chartType} border bar down color"],id_ID:["ubah warna batas bar {chartType} turun"]}},28394:a=>{a.exports={en:["change {chartType} border bar up color"],id_ID:["ubah warna batas bar {chartType} naik"]}},5012:a=>{a.exports={en:["change {chartType} down color"],id_ID:["ubah warna {chartType} turun"]}},42826:a=>{a.exports={en:["change {chartType} projection border bar up color"],id_ID:["ubah warna batas bar proyeksi {chartType} naik"]}},72545:a=>{a.exports={en:["change {chartType} projection bar down color"],id_ID:["ubah warna bar proyeksi {chartType} turun"]}},85032:a=>{a.exports={en:["change {chartType} projection bar up color"],id_ID:["ubah warna bar proyeksi {chartType} naik"]}},6970:a=>{a.exports={en:["change {chartType} up color"],id_ID:["ubah warna {chartType} naik"]}},66110:a=>{a.exports={en:["change {inputName} property"],id_ID:["ubah properti {inputName}"]}},18077:a=>{a.exports={en:["adjust data for dividends"],id_ID:["sesuaikan data untuk dividen"]}},1433:a=>{a.exports={en:["adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},92598:a=>{a.exports={en:["hollow candles"],id_ID:["candle kosong"]}},57243:a=>{a.exports={en:["range","ranges"],id_ID:["rentang"]}},70282:a=>{a.exports={en:["renko"]}},92978:a=>{a.exports={en:["use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},59644:a=>{a.exports={en:["{value} decimal","{value} decimals"],id_ID:["{value} desimal"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"],id_ID:["ulangi"]}},85119:e=>{e.exports={en:["Dark"],id_ID:["Gelap"]}},96870:e=>{e.exports={en:["Light"],id_ID:["Terang"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],id_ID:["Salinan {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],id_ID:["Warna Level -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],id_ID:["Warna Level -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],id_ID:["Warna Level -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],id_ID:["Warna Level -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],id_ID:["Warna Level 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],id_ID:["Warna Level 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],id_ID:["Warna Level 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],id_ID:["Warna Level 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],id_ID:["Warna Level 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],id_ID:["Warna Level 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],id_ID:["Warna Level 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],id_ID:["Warna Level 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],id_ID:["Warna Level 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],id_ID:["Warna Level 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],id_ID:["Warna Level 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],id_ID:["Warna Level 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],id_ID:["Periode ke-1"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],id_ID:["Warna Level 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],id_ID:["Warna Level 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],id_ID:["Periode ke-2"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],id_ID:["Warna Level 3.618"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"],id_ID:["ulangi"]}},85119:e=>{e.exports={en:["Dark"],id_ID:["Gelap"]}},96870:e=>{e.exports={en:["Light"],id_ID:["Terang"]}},85886:e=>{e.exports={en:["d"]}},44634:e=>{e.exports={en:["h"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],id_ID:["Salinan {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"]}},43253:e=>{e.exports={en:["H"]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"]}},46728:e=>{e.exports={en:["O"]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],id_ID:["Warna Level -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],id_ID:["Warna Level -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],id_ID:["Warna Level -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],id_ID:["Warna Level -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],id_ID:["Warna Level 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],id_ID:["Warna Level 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],id_ID:["Warna Level 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],id_ID:["Warna Level 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],id_ID:["Warna Level 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],id_ID:["Warna Level 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],id_ID:["Warna Level 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],id_ID:["Warna Level 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],id_ID:["Warna Level 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],id_ID:["Warna Level 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],id_ID:["Warna Level 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],id_ID:["Warna Level 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],id_ID:["Periode ke-1"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],id_ID:["Warna Level 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],id_ID:["Warna Level 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],id_ID:["Periode ke-2"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],id_ID:["Warna Level 3.618"]},e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],
|
||||
id_ID:["Warna Level 3.65"]},e.exports["3rd Period_input"]={en:["3rd Period"],id_ID:["Periode ke-3"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],id_ID:["Warna Level 4.236"]},e.exports["4th Period_input"]={en:["4th Period"],id_ID:["Periode ke-4"]},e.exports["5th Period_input"]={en:["5th Period"],id_ID:["Periode ke-5"]},e.exports["6th Period_input"]={en:["6th Period"],id_ID:["Periode ke-6"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"],id_ID:["Penghalusan ADX"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"],id_ID:["Penghalusan ADX"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"],id_ID:["Panjang ATR"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],id_ID:["Akumulasi/Distribusi"]},e.exports["All items_combobox_input"]={en:["All items"],id_ID:["Seluruh item"]},e.exports.All_input={en:["All"],id_ID:["Semua"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],id_ID:["Periode Jangkar"]},e.exports["Another symbol_input"]={en:["Another symbol"],id_ID:["Simbol lainnya"]},e.exports["Aroon Down_input"]={en:["Aroon Down"],id_ID:["Aroon Turun"]},e.exports["Aroon Up_input"]={en:["Aroon Up"],id_ID:["Aroon Naik"]},e.exports.Average_input={en:["Average"],id_ID:["Rata-Rata"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],id_ID:["Periode Perata-Rataan"]},e.exports.Back_input={en:["Back"],id_ID:["Kembali"]},e.exports["Bands style_input"]={en:["Bands style"],id_ID:["Corak Pita"]},e.exports.Bar_input={en:["Bar"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],id_ID:["Periode Garis Dasar"]},e.exports["Base Line_input"]={en:["Base Line"],id_ID:["Garis Dasar"]},e.exports.Basis_input={en:["Basis"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],id_ID:["%B Ikat Bollinger"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],id_ID:["Lebar Ikat Bollinger"]},e.exports.Borders_input={en:["Borders"],id_ID:["Batas-Batas"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],id_ID:["Metode penempatan ukuran kotak"]},e.exports["Box size_input"]={en:["Box size"],id_ID:["Ukuran kotak"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"],id_ID:["Batalkan"]},e.exports.Candles_input={en:["Candles"],id_ID:["Candle"]},e.exports.Centered_input={en:["Centered"],id_ID:["Dipusatkan"]},e.exports.Century_input={en:["Century"],id_ID:["Abad"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"],id_ID:["Osilator Chaikin"]},e.exports["Chande MO_input"]={en:["Chande MO"],id_ID:["MO Chande"]},e.exports.Close_input={en:["Close"],id_ID:["Tutup"]},e.exports["Color 0_input"]={en:["Color 0"],id_ID:["Warna 0"]},e.exports["Color 1_input"]={en:["Color 1"],id_ID:["Warna 1"]},e.exports["Color 2_input"]={en:["Color 2"],id_ID:["Warna 2"]
|
||||
},e.exports["Color 3_input"]={en:["Color 3"],id_ID:["Warna 3"]},e.exports["Color 4_input"]={en:["Color 4"],id_ID:["Warna 4"]},e.exports["Color 5_input"]={en:["Color 5"],id_ID:["Warna 5"]},e.exports["Color 6_input"]={en:["Color 6"],id_ID:["Warna 6"]},e.exports["Color 7_input"]={en:["Color 7"],id_ID:["Warna 7"]},e.exports["Color 8_input"]={en:["Color 8"],id_ID:["Warna 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],id_ID:["Warnai bar berdasarkan penutupan sebelumnya"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],id_ID:["Warna dengan basis penutupan sebelumnya"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],id_ID:["Periode Garis Konversi"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],id_ID:["Garis Konversi"]},e.exports.Correlation_input={en:["Correlation"],id_ID:["Korelasi"]},e.exports.Count_input={en:["Count"],id_ID:["Hitung"]},e.exports.Crosses_input={en:["Crosses"],id_ID:["Persilangan"]},e.exports.Custom_input={en:["Custom"],id_ID:["Kustom"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],id_ID:["Panjang DI"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],id_ID:["Hari"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],id_ID:["Hari Per Tahun"]},e.exports.Decade_input={en:["Decade"],id_ID:["Dekade"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"],id_ID:["Kedalaman"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"],id_ID:["Osilator Harga Detrended / Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],id_ID:["POC Berjalan"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],id_ID:["Deviasi (%)"]},e.exports.Deviation_input={en:["Deviation"],id_ID:["Deviasi"]},e.exports.Divisor_input={en:["Divisor"],id_ID:["Pembagi"]},e.exports["Down Volume_input"]={en:["Down Volume"],id_ID:["Volume Turun"]},e.exports["Down bars_input"]={en:["Down bars"],id_ID:["Bar turun"]},e.exports["Down color_input"]={en:["Down color"],id_ID:["Warna Turun"]},e.exports["Down fractals_input"]={en:["Down fractals"],id_ID:["Fraktal Turun"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],id_ID:["Masing-masing (pra-pasar, pasar, pasca-pasar)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],id_ID:["Indeks Kekuatan Elder / Elder's Force Index"]},e.exports["Equality Line_input"]={en:["Equality Line"],id_ID:["Garis Kesetaraan"]},e.exports.Exponential_input={en:["Exponential"],id_ID:["Eksponensial"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"],id_ID:["Perpanjang POC Kekanan"]},e.exports["Extend Right_input"]={en:["Extend Right"],id_ID:["Perpanjang Kanan"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],id_ID:["Perpanjangan VAH ke Kanan"]},e.exports["Extend VAL Right_input"]={
|
||||
en:["Extend VAL Right"],id_ID:["Perpanjangan VAL ke Kanan"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"],id_ID:["Perpanjang hingga bar terakhir"]},e.exports.Falling_input={en:["Falling"],id_ID:["Jatuh"]},e.exports["Fast Length_input"]={en:["Fast Length"],id_ID:["Panjang Cepat"]},e.exports["Fast length_input"]={en:["Fast length"],id_ID:["Panjang Cepat"]},e.exports.Fill_input={en:["Fill"],id_ID:["Isian"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],id_ID:["Berkembang"]},e.exports["HLC bars_input"]={en:["HLC bars"],id_ID:["Bar HLC"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],id_ID:["Kotak Histogram"]},e.exports.Histogram_input={en:["Histogram"]},e.exports["Hull MA_input"]={en:["Hull MA"],id_ID:["MA Hull"]},e.exports.Increment_input={en:["Increment"],id_ID:["Kenaikan"]},e.exports.Indicator_input={en:["Indicator"],id_ID:["Indikator"]},e.exports["Instrument 1_input"]={en:["Instrument 1"],id_ID:["Instrumen 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"],id_ID:["Instrumen 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],id_ID:["EMA Investor panjang 1"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],id_ID:["EMA Investor panjang 2"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],id_ID:["EMA Investor panjang 3"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],id_ID:["EMA Investor panjang 4"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],id_ID:["EMA Investor panjang 5"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],id_ID:["EMA Investor panjang 6"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],id_ID:["Panjang Rahang"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"],id_ID:["Offset Jaw"]},e.exports.Jaw_input={en:["Jaw"],id_ID:["Rahang"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],id_ID:["Posisi Label"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],id_ID:["Label pada skala harga"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],id_ID:["Periode Lagging Span"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],id_ID:["Periode Shift Leading"]},e.exports["Leading Span A_input"]={en:["Leading Span A"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],id_ID:["Periode Leading Span"]},e.exports["Length EMA_input"]={en:["Length EMA"],id_ID:["Panjang EMA"]},e.exports["Length MA_input"]={en:["Length MA"],id_ID:["Panjang MA"]},e.exports.Length1_input={en:["Length1"],id_ID:["Panjang1"]},e.exports.Length2_input={en:["Length2"],id_ID:["Panjang2"]},e.exports.Length3_input={en:["Length3"],id_ID:["Panjang3"]},e.exports.Length_input={en:["Length"],id_ID:["Panjang"]},e.exports.Level_input={en:["Level"]},
|
||||
@@ -27,32 +27,32 @@ e.exports["Zig Zag_study"]={en:["Zig Zag"]},e.exports["Zmijewski score_study"]={
|
||||
36549:e=>{e.exports={en:["Chatham Islands"],id_ID:["Kepulauan Chatham"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"],id_ID:["Lingkaran"]}},14985:e=>{e.exports={en:["Click to set a point"],id_ID:["Klik untuk menentukan sebuah poin"]}},12537:e=>{e.exports={en:["Clone"],id_ID:["Gandakan"]}},62578:e=>{e.exports={en:["Close"],id_ID:["Penutupan"]}},264:e=>{e.exports={en:["Create limit order"],id_ID:["Buat order baru"]}},6969:e=>{e.exports={en:["Cross"]}},74334:e=>{e.exports={en:["Cross Line"],id_ID:["Garis Perpotongan"]}},59396:e=>{e.exports={en:["Currencies"],id_ID:["Mata Uang"]}},20177:e=>{e.exports={en:["Current interval and above"],id_ID:["Interval saat ini dan di atasnya"]}},494:e=>{e.exports={en:["Current interval and below"],id_ID:["Interval saat ini dan di bawahnya"]}},60668:e=>{e.exports={en:["Current interval only"],id_ID:["Hanya interval saat ini"]}},78609:e=>{e.exports={en:["Curve"],id_ID:["Kurva"]}},87380:e=>{e.exports={en:["Cycle"],id_ID:["Siklus"]}},84031:e=>{e.exports={en:["Cyclic Lines"],id_ID:["Garis Siklus"]}},93191:e=>{e.exports={en:["Cypher Pattern"],id_ID:["Motif Cypher"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],id_ID:["Layout dengan nama tersebut sudah ada"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],id_ID:["Layout dengan nama tersebut sudah ada. Apakah anda ingin menimpanya?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],id_ID:["Motif ABCD"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"],id_ID:["Jangkar"]}},42630:e=>{e.exports={en:["Anchorage"],id_ID:["Penjangkaran"]}},42669:e=>{e.exports={en:["Anchored Text"],id_ID:["Teks Terjangkar"]}},84541:e=>{e.exports={en:["Anchored VWAP"],id_ID:["VWAP Terjangkar"]}},77401:e=>{e.exports={en:["Access error"],id_ID:["Error akses"]}},46501:e=>{e.exports={en:["Add Symbol"],id_ID:["Tambah Simbol"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],id_ID:["Tambah metrik Finansial untuk {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],id_ID:["Tambah Indikator/Strategi pada {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],id_ID:["Tambah Metrik Finansial ini ke Seluruh Layout"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],id_ID:["Tambahkan metrik keuangan ini ke favorit"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],id_ID:["Tambah Indikator ini ke Seluruh Layout"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],id_ID:["Tambahkan indikator ini ke favorit"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],id_ID:["Tambah Strategi ini ke Seluruh Layout"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],id_ID:["Tambah Simbol ini ke Seluruh Layout"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],id_ID:["Selalu Tidak Terlihat"]}},36299:e=>{e.exports={en:["Always visible"],
|
||||
id_ID:["Selalu Terlihat"]}},58026:e=>{e.exports={en:["All intervals"],id_ID:["Seluruh interval"]}},78358:e=>{e.exports={en:["Apply default"],id_ID:["Terapkan Bawaan"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],id_ID:["Terapkan Indikator berikut ini ke Seluruh Layout"]}},27072:e=>{e.exports={en:["Apr"]}},59324:e=>{e.exports={en:["Arc"],id_ID:["Busur"]}},34456:e=>{e.exports={en:["Area"]}},11858:e=>{e.exports={en:["Arrow"],id_ID:["Panah"]}},34247:e=>{e.exports={en:["Arrow Down"],id_ID:["Panah Turun"]}},36352:e=>{e.exports={en:["Arrow Marker"],id_ID:["Penanda panah"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],id_ID:["Tanda Panah Turun"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],id_ID:["Tanda Panah Kiri"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],id_ID:["Tanda Panah Kanan"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],id_ID:["Tanda Panah Naik"]}},77231:e=>{e.exports={en:["Arrow Up"],id_ID:["Panah Naik"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],id_ID:["Ashkhabad"]}},72445:e=>{e.exports={en:["At close"],id_ID:["Pada penutupan"]}},73702:e=>{e.exports={en:["Athens"],id_ID:["Athena"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],id_ID:["Auto (Mengepaskan Data Pada Layar)"]}},46450:e=>{e.exports={en:["Aug"],id_ID:["Agst"]}},21841:e=>{e.exports={en:["Average close price label"],id_ID:["Label rata-rata harga penutupan"]}},16138:e=>{e.exports={en:["Average close price line"],id_ID:["Garis harga rata-rata penutupan"]}},73025:e=>{e.exports={en:["Avg"],id_ID:["Rata-rata"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"]}},70540:e=>{e.exports={en:["Balloon"],id_ID:["Balon"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],id_ID:["Putar Ulang Bar tidak tersedia untuk tipe chart ini. Apakah anda ingin keluar dari Putar Ulang Bar?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],id_ID:["Putar Ulang Bar tidak tersedia untuk simbol ini. Apakah anda ingin keluar dari Putar Ulang Bar?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],id_ID:["Putar Ulang Bar tidak tersedia untuk interval waktu ini. Apakah anda ingin keluar dari Putar Ulang Bar?"]}},27377:e=>{e.exports={en:["Bars"],id_ID:["Bar"]}},81994:e=>{e.exports={en:["Bars Pattern"],id_ID:["Motif Bar"]}},59213:e=>{e.exports={en:["Baseline"],id_ID:["Garis dasar"]}},71797:e=>{e.exports={en:["Belgrade"]}},64313:e=>{e.exports={en:["Berlin"]}},43539:e=>{e.exports={en:["Brush"],id_ID:["Kuas"]}},91499:e=>{e.exports={en:["Brussels"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={en:["Bring forward"],id_ID:["Bawa Maju"]}},17293:e=>{e.exports={en:["Bring to front"],id_ID:["Bawa ke Depan"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"]}},20313:e=>{e.exports={en:["Budapest"]}
|
||||
},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],id_ID:["Oleh TradingView"]}},54280:e=>{e.exports={en:["Go to date"],id_ID:["Menuju ke tanggal"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],id_ID:["Menuju ke {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],id_ID:["Mengerti"]}},47460:e=>{e.exports={en:["Gann Box"],id_ID:["Kotak Gann"]}},48683:e=>{e.exports={en:["Gann Fan"],id_ID:["Kipas Gann"]}},44763:e=>{e.exports={en:["Gann Square"],id_ID:["Persegi Gann"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],id_ID:["Kotak Gann Paten"]}},46808:e=>{e.exports={en:["Ghost Feed"]}},57726:e=>{e.exports={en:["Grand supercycle"],id_ID:["Supercycle Besar"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"],id_ID:["Apakah anda yakin ingin menghapus template indikator '{name}'?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],id_ID:["Apakah benar anda ingin menghapus studi beserta semua turunannya?"]}},77125:e=>{e.exports={en:["Double Curve"],id_ID:["Kurva Ganda"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],id_ID:["Dobel-klik di tepi mana pun untuk mengatur ulang kisi layout"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],id_ID:["Klik dua kali untuk menyelesaikan Jalur"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],id_ID:["Klik dua kali untuk menyelesaikan Polyline"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"],id_ID:["Ketuk dua kali di tepi mana pun untuk mereset grid layout"]}},57131:e=>{e.exports={en:["Data Provided by"],id_ID:["Data Disediakan oleh"]}},22677:e=>{e.exports={en:["Date"],id_ID:["Tanggal"]}},85444:e=>{e.exports={en:["Date Range"],id_ID:["Rentang Tanggal"]}},47017:e=>{e.exports={en:["Date and Price Range"],id_ID:["Rentang Tanggal dan Harga"]}},32084:e=>{e.exports={en:["Dec"],id_ID:["Des"]}},23403:e=>{e.exports={en:["Degree"],id_ID:["Derajat"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],id_ID:["Berlian"]}},91544:e=>{e.exports={en:["Disjoint Channel"],id_ID:["Kanal Disjoint"]}},70132:e=>{e.exports={en:["Displacement"],id_ID:["Pemindahan"]}},93864:e=>{e.exports={en:["Drawings toolbar"],id_ID:["Toolbar Alat Gambar"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],id_ID:["Gambar Garis Line di {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],id_ID:["Masukkan nama layout chart yang baru"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],id_ID:["Gelombang Koreksi Elliott (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],id_ID:["Gelombang Kombinasi Dobel Elliott (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],id_ID:["Gelombang Impulse Elliott (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],
|
||||
id_ID:["Gelombang Segitiga Elliott / Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],id_ID:["Gelombang Kombinasi Tripel Elliott (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],id_ID:["Elips"]}},52788:e=>{e.exports={en:["Extended Line"],id_ID:["Garis Perpanjangan"]}},86905:e=>{e.exports={en:["Exchange"],id_ID:["Bursa"]}},19271:e=>{e.exports={en:["Existing pane above"],id_ID:["Pane Yang Telah Ada Diatas"]}},46545:e=>{e.exports={en:["Existing pane below"],id_ID:["Pane Yang Telah Ada Dibawah"]}},20138:e=>{e.exports={en:["Forecast"],id_ID:["Prakiraan"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],id_ID:["Kanal Fib"]}},82330:e=>{e.exports={en:["Fib Circles"],id_ID:["Lingkaran Fib"]}},55986:e=>{e.exports={en:["Fib Retracement"],id_ID:["Retracemen Fib"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],id_ID:["Busur Resisten Kecepatan Fib"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],id_ID:["Kipas Resisten Kecepatan Fib"]}},39014:e=>{e.exports={en:["Fib Spiral"],id_ID:["Spiral Fib"]}},30622:e=>{e.exports={en:["Fib Time Zone"],id_ID:["Zona Waktu Fib"]}},85042:e=>{e.exports={en:["Fib Wedge"],id_ID:["Baji Fib"]}},33885:e=>{e.exports={en:["Flag"],id_ID:["Bendera"]}},14600:e=>{e.exports={en:["Flag Mark"],id_ID:["Tanda Bendera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],id_ID:["Puncak/Dasar Datar"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],id_ID:["Bagian fraksi tidak valid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],id_ID:["Studi-Studi Fundamental tidak lagi tersedia pada chart"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],id_ID:["Area HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],id_ID:["Candle Kosong"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],id_ID:["Garis Horisontal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],id_ID:["Sinar Horisontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],id_ID:["Head dan Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],id_ID:["Sembunyikan"]}},47074:e=>{e.exports={en:["Hide all"],id_ID:["Sembunyikan seluruhnya"]}},52563:e=>{e.exports={en:["Hide all drawings"],id_ID:["Sembunyikan seluruh gambar"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],id_ID:["Sembunyikan seluruh gambar dan indikator"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],id_ID:["Sembunyikan seluruh gambar, indikator, posisi & order"]}},78525:e=>{e.exports={en:["Hide all indicators"],id_ID:["Sembunyikan seluruh indikator"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],
|
||||
id_ID:["Sembunyikan seluruh posisi & order"]}},3217:e=>{e.exports={en:["Hide drawings"],id_ID:["Sembunyikan gambar"]}},97878:e=>{e.exports={en:["Hide events on chart"],id_ID:["Sembunyikan Peristiwa di Chart"]}},72351:e=>{e.exports={en:["Hide indicators"],id_ID:["Sembunyikan indikator"]}},28345:e=>{e.exports={en:["Hide marks on bars"],id_ID:["Sembunyikan Tanda-Tanda pada Bar"]}},92226:e=>{e.exports={en:["Hide positions & orders"],id_ID:["Sembunyikan posisi & order"]}},78254:e=>{e.exports={en:["High"],id_ID:["Tertinggi"]}},98236:e=>{e.exports={en:["High-low"],id_ID:["Tertinggi-Terendah"]}},99479:e=>{e.exports={en:["High and low price labels"],id_ID:["Label harga tertinggi dan terendah"]}},33766:e=>{e.exports={en:["High and low price lines"],id_ID:["Garis harga tertinggi dan terendah"]}},69476:e=>{e.exports={en:["Highlighter"],id_ID:["Penanda"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],id_ID:["Histogram terlalu besar, harap tambah {boldHighlightStart}Ukuran Baris{boldHighlightEnd} di jendela pengaturan."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],id_ID:["Histogram terlalu besar, harap tambah {boldHighlightStart}Tick Per Baris{boldHighlightEnd} di jendela pengaturan."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],id_ID:["Histogram terlalu besar, harap kurangi {boldHighlightStart}Ukuran Baris{boldHighlightEnd} di jendela pengaturan."]}},68065:e=>{e.exports={en:["Image"],id_ID:["Gambar"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],id_ID:["Interval kurang dari {resolution} tidak didukung untuk {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],id_ID:["Menengah"]}},14285:e=>{e.exports={en:["Invalid Symbol"],id_ID:["Simbol Tidak Valid"]}},52969:e=>{e.exports={en:["Invalid symbol"],id_ID:["Simbol tidak valid"]}},37189:e=>{e.exports={en:["Invert scale"],id_ID:["Inversikan Skala"]}},89999:e=>{e.exports={en:["Indexed to 100"],id_ID:["Diindeks ke 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],id_ID:["Label nilai indikator"]}},54418:e=>{e.exports={en:["Indicators name labels"],id_ID:["Label nama indikator"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],id_ID:["Indikator, Metrik dan Strategi. Tekan garis miring"]}},15992:e=>{e.exports={en:["Info Line"],id_ID:["Garis Info"]}},87829:e=>{e.exports={en:["Insert indicator"],id_ID:["Masukkan Indikator"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],id_ID:["Pitchfork Bagian Dalam"]}},37913:e=>{e.exports={en:["Icon"],id_ID:["Ikon"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"],id_ID:["Yerusalem"]}},53786:e=>{e.exports={en:["Jul"]}},429:e=>{e.exports={
|
||||
en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],id_ID:["Di Sebelah Kiri"]}},55813:e=>{e.exports={en:["On the right"],id_ID:["Di Sebelah Kanan"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],id_ID:["Hanya interval {availableResolutions} yang didukung oleh {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"],id_ID:["Pohon Objek"]}},12179:e=>{e.exports={en:["Oct"],id_ID:["Okt"]}},16610:e=>{e.exports={en:["Open"],id_ID:["Pembukaan"]}},27884:e=>{e.exports={en:["Open layout. Press period"],id_ID:["Buka layout. Tekan periode"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],id_ID:["Terendah"]}},51077:e=>{e.exports={en:["Lock"],id_ID:["Kunci"]}},79777:e=>{e.exports={en:["Lock/unlock"],id_ID:["Kunci/Buka Kunci"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],id_ID:["Kunci garis kursor vertikal berdasarkan waktu"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],id_ID:["Kunci Harga Ke Rasio Bar"]}},16170:e=>{e.exports={en:["Logarithmic"],id_ID:["Logaritma"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"],id_ID:["Posisi Pembelian"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],id_ID:["Label Turun"]}},52402:e=>{e.exports={en:["Label Up"],id_ID:["Label Naik"]}},5119:e=>{e.exports={en:["Labels"],id_ID:["Label"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],id_ID:["Perubahan hari terakhir"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],id_ID:["Garis"]}},9394:e=>{e.exports={en:["Line with markers"],id_ID:["Garis dengan penanda"]}},43588:e=>{e.exports={en:["Line break"],id_ID:["Garis Jeda"]}},56982:e=>{e.exports={en:["Lines"],id_ID:["Garis"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],id_ID:["Tautan ke gambar chart yang disalin ke clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],id_ID:["Pindahkan titiknya untuk memposisikan jangkar lalu tap untuk meletakkan"]}},35049:e=>{e.exports={en:["Move to"],id_ID:["Pindah Ke"]}},26493:e=>{e.exports={en:["Move scale to left"],id_ID:["Pindahkan Skala ke Kiri"]}},40789:e=>{e.exports={en:["Move scale to right"],id_ID:["Pindahkan Skala ke Kanan"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],id_ID:["Pitchfork Schiff Termodifikasi"]}},93907:e=>{e.exports={en:["More settings"],id_ID:["Pengaturan lainnya"]}},64039:e=>{e.exports={en:["Moscow"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"],id_ID:["Kota Meksiko"]}},88314:e=>{e.exports={en:["Merge all scales into one"],id_ID:["Gabungkan Seluruh Skala Menjadi Satu"]}},54215:e=>{e.exports={en:["Mixed"],id_ID:["Campuran"]}},24866:e=>{e.exports={
|
||||
en:["Micro"],id_ID:["Mikro"]}},87957:e=>{e.exports={en:["Millennium"],id_ID:["Milenium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"],id_ID:["Amat kecil"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"],id_ID:["Tidak Tersedia"]}},36252:e=>{e.exports={en:["No data here"],id_ID:["Belum ada data disini"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],id_ID:["Tanpa Skala (Layar Penuh)"]}},9140:e=>{e.exports={en:["No sync"],id_ID:["Tidak ada sinkronisasi"]}},50910:e=>{e.exports={en:["No volume data"],id_ID:["Tidak ada data volume"]}},99024:e=>{e.exports={en:["No, keep them"],id_ID:["Tidak, simpan saja"]}},94389:e=>{e.exports={en:["Note"],id_ID:["Catatan"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],id_ID:["Pulai Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],id_ID:["Selandia Baru"]}},15512:e=>{e.exports={en:["New pane above"],id_ID:["Panel baru diatas"]}},52160:e=>{e.exports={en:["New pane below"],id_ID:["Panel baru dibawah"]}},94600:e=>{e.exports={en:["Nicosia"],id_ID:["Nikosia"]}},73013:e=>{e.exports={en:["Something went wrong"],id_ID:["Terjadi masalah"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],id_ID:["Terjadi kesalahan saat membuat indikator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],id_ID:["Terjadi kesalahan. Harap coba kembali nanti."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],id_ID:["Simpan Layout Chart Baru"]}},76266:e=>{e.exports={en:["Save as"],id_ID:["Simpan Sebagai"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],id_ID:["Mata uang skala"]}},43758:e=>{e.exports={en:["Scale price chart only"],id_ID:["Skalakan Chart Harga Saja"]}},40012:e=>{e.exports={en:["Scale unit"],id_ID:["Unit skala"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],id_ID:["Pitchfork Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],id_ID:["Skrip mungkin tidak diperbaharui apabila anda menginggalkan halaman ini."]}},32514:e=>{e.exports={en:["Settings"],id_ID:["Pengaturan"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],id_ID:["Bagian pecahan kedua tidak valid."]}},75594:e=>{e.exports={en:["Security info"],id_ID:["Informasi keamanan"]}},21973:e=>{e.exports={en:["Send to back"],id_ID:["Kirim ke Belakang"]}},71179:e=>{e.exports={en:["Send backward"],id_ID:["Kirim Mundur"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"],id_ID:["Sesi"]}},83298:e=>{e.exports={en:["Session volume profile"],id_ID:["Profil volume sesi"]}},66707:e=>{e.exports={en:["Session breaks"],id_ID:["Jeda Sesi"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],id_ID:["Posisi Penjualan"]}},98334:e=>{e.exports={en:["Show"],id_ID:["Perlihatkan"]}},85891:e=>{
|
||||
e.exports={en:["Show all drawings"],id_ID:["Tampilkan seluruh gambar"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],id_ID:["Tampilkan seluruh gambar dan indikator"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],id_ID:["Tampilkan seluruh gambar, indikator, posisi & order"]}},98753:e=>{e.exports={en:["Show all indicators"],id_ID:["Tampilkan seluruh indikator"]}},55418:e=>{e.exports={en:["Show all ideas"],id_ID:["Tampilkan seluruh ide"]}},20506:e=>{e.exports={en:["Show all positions & orders"],id_ID:["Tampilkan seluruh posisi & order"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],id_ID:["Tampilkan perubahan kontrak berlanjut"]}},81465:e=>{e.exports={en:["Show contract expiration"],id_ID:["Tampilkan kedaluwarsa kontrak"]}},29449:e=>{e.exports={en:["Show dividends"],id_ID:["Perlihatkan dividen"]}},37113:e=>{e.exports={en:["Show earnings"],id_ID:["Perlihatkan perolehan"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],id_ID:["Tampilkan ide dari pengguna yang diikuti"]}},62986:e=>{e.exports={en:["Show latest news"],id_ID:["Tampilkan berita terkini"]}},44020:e=>{e.exports={en:["Show my ideas only"],id_ID:["Tampilkan ide saya saja"]}},50849:e=>{e.exports={en:["Show splits"],id_ID:["Perlihatkan pemecahan"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],id_ID:["Singapura"]}},39090:e=>{e.exports={en:["Sine Line"],id_ID:["Garis Sinus"]}},66205:e=>{e.exports={en:["Square"],id_ID:["Persegi"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],id_ID:["Batas studi terlewati. {number} studi per layout.\nHarap menghilangkan beberapa studi."]}},92516:e=>{e.exports={en:["Style"],id_ID:["Corak"]}},61507:e=>{e.exports={en:["Stack on the left"],id_ID:["Susun di Kiri"]}},97800:e=>{e.exports={en:["Stack on the right"],id_ID:["Susun di Kanan"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],id_ID:["Mulai gunakan mode navigasi keyboard. Tekan {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],id_ID:["Tetap Dalam Mode Menggambar"]}},69217:e=>{e.exports={en:["Step line"],id_ID:["Garis tahap"]}},43114:e=>{e.exports={en:["Sticker"],id_ID:["Stiker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"],id_ID:["Submikro"]}},63375:e=>{e.exports={en:["Submillennium"],id_ID:["Submilenium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"],id_ID:["Supermilenium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],id_ID:["Beralih ke {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],id_ID:["Simbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],id_ID:["Label Nama Simbol"]}},10127:e=>{e.exports={en:["Symbol last price label"],id_ID:["Label Nilai Terakhir Simbol"]}},39079:e=>{e.exports={en:["Sync globally"],id_ID:["Sinkronisasikan secara global"]}},46607:e=>{e.exports={
|
||||
en:["Sync in layout"],id_ID:["Sinkronisasi pada layout"]}},76519:e=>{e.exports={en:["Point & figure"],id_ID:["Poin & Figur"]}},39949:e=>{e.exports={en:["Polyline"]}},371:e=>{e.exports={en:["Path"],id_ID:["Jalur"]}},59256:e=>{e.exports={en:["Parallel Channel"],id_ID:["Kanal Paralel"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"],id_ID:["Persen"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"],id_ID:["Pin ke Skala Kiri Baru"]}},28280:e=>{e.exports={en:["Pin to new right scale"],id_ID:["Pin ke Skala Kanan Baru"]}},14115:e=>{e.exports={en:["Pin to left scale"],id_ID:["Pin ke Skala Kiri"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],id_ID:["Pin ke Skala Kiri (Tersembunyi)"]}},81054:e=>{e.exports={en:["Pin to right scale"],id_ID:["Pin ke skala kanan"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],id_ID:["Pin ke Skala Kanan (Tersembunyi)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],id_ID:["Pin ke Skala (Saat ini Kiri)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],id_ID:["Pin ke Skala (Saat ini Tanpa Skala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],id_ID:["Pin ke Skala (Saat ini Kanan)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],id_ID:["Pin ke Skala ({label} Saat ini)"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],id_ID:["Pin ke Skala {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],id_ID:["Pin ke Skala {label} (Tersembunyi)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],id_ID:["Di Pin ke Skala Kiri"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],id_ID:["Di Pin ke Skala Kiri (Tersembunyi)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],id_ID:["Di Pin ke Skala Kanan"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],id_ID:["Pin ke Skala Kanan (Tersembunyi)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],id_ID:["Di Pin ke Skala {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],id_ID:["Di Pin ke Skala {label} (Tersembunyi)"]}},71566:e=>{e.exports={en:["Plus button"],id_ID:["Tanda tambah"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],id_ID:["Harap beri kami izin menulis clipboard di browser anda atau tekan {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],id_ID:["Praha"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],id_ID:["Tekan dan tahan {key} saat melakukan zoom untuk mempertahankan posisi chart"]}},91282:e=>{e.exports={en:["Price Label"],id_ID:["Label Harga"]}},97512:e=>{e.exports={en:["Price Note"],id_ID:["Catatan Harga"]}},68941:e=>{e.exports={en:["Price Range"],id_ID:["Rentang Harga"]}},66123:e=>{e.exports={en:["Price format is invalid."],id_ID:["Format harga tidak valid."]}},72926:e=>{
|
||||
e.exports={en:["Price line"],id_ID:["Garis Harga"]}},59189:e=>{e.exports={en:["Primary"],id_ID:["Primer"]}},75747:e=>{e.exports={en:["Projection"],id_ID:["Proyeksi"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],id_ID:["Dipublikasikan pada {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],id_ID:["Pencarian cepat. Tekan {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],id_ID:["Persegi Terputar"]}},52961:e=>{e.exports={en:["Rome"],id_ID:["Roma"]}},50318:e=>{e.exports={en:["Ray"],id_ID:["Sinar"]}},55169:e=>{e.exports={en:["Range"],id_ID:["Rentang"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],id_ID:["Persegi"]}},48236:e=>{e.exports={en:["Redo"],id_ID:["Ulangi"]}},2460:e=>{e.exports={en:["Regression Trend"],id_ID:["Tren Regresi"]}},67410:e=>{e.exports={en:["Remove"],id_ID:["Hilangkan"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],id_ID:["Hapus metrik keuangan ini dari favorit"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],id_ID:["Hapus indikator ini dari favorit"]}},86285:e=>{e.exports={en:["Remove {drawings}"],id_ID:["Hilangkan {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],id_ID:["Hilangkan {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],id_ID:["Hilangkan {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],id_ID:["Ganti Nama Layout Chart"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],id_ID:["Atur ulang tampilan chart"]}},88853:e=>{e.exports={en:["Reset points"],id_ID:["Reset poin"]}},15332:e=>{e.exports={en:["Reset price scale"],id_ID:["Atur ulang skala harga"]}},54170:e=>{e.exports={en:["Reset time scale"],id_ID:["Reset Skala Waktu"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],id_ID:["Error runtime"]}},66719:e=>{e.exports={en:["Warning"],id_ID:["Peringatan"]}},5959:e=>{e.exports={en:["Warsaw"],id_ID:["Warsawa"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],id_ID:["Tabel"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],id_ID:["Teheran"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],id_ID:["Vendor data tidak menyediakan data volume untuk simbol ini."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],id_ID:["Kilasan publikasi tidak dapat dimuat. Harap matikan ekstensi browser anda lalu coba kembali."]}},99274:e=>{e.exports={
|
||||
en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],id_ID:["Permintaan tersebut membutuhkan waktu terlalu lama untuk diproses. Pastikan anda memiliki koneksi internet yang stabil. Jika masalah masih berlanjut, cobalah untuk mengurangi durasi interval waktu yang diminta."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],id_ID:["Tidak ada data untuk periode dan kerangka waktu chart yang anda pilih."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],id_ID:["File terlalu besar. Ukuran maksimum adalah {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],id_ID:["Indikator ini tidak dapat diterapkan pada indikator lain"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],id_ID:["Skrip ini mengandung error. Silahkan hubungi penulisnya."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],id_ID:["Skrip ini hanya-undangan. Untuk meminta akses, silakan hubungi penulisnya."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],id_ID:["Simbol tersebut hanya tersedia di {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],id_ID:["Interval berbasis tick tidak tersedia untuk {ticker}."]}},12806:e=>{e.exports={en:["Time"],id_ID:["Waktu"]}},20909:e=>{e.exports={en:["Time zone"],id_ID:["Zona Waktu"]}},46852:e=>{e.exports={en:["Time Cycles"],id_ID:["Siklus Waktu"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],id_ID:["Peluang Harga Waktu"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],id_ID:["Tradingview bersifat interaktif dan memiliki perintah untuk digunakan dengan pembaca layar. Berikut ini adalah daftar perintah keyboard yang tersedia untuk berinteraksi di platform"]}},35757:e=>{e.exports={en:["Trend Angle"],id_ID:["Sudut Tren"]}},97339:e=>{e.exports={en:["Trend Line"],id_ID:["Garis Tren"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],id_ID:["Ekstensi Fib Berbasis Tren"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],id_ID:["Waktu Fib Berbasis Tren"]}},1671:e=>{e.exports={en:["Triangle"],id_ID:["Segitiga"]}},76152:e=>{e.exports={en:["Triangle Down"],id_ID:["Segitiga Turun"]}},90148:e=>{e.exports={en:["Triangle Pattern"],id_ID:["Motif Segitiga"]}},21236:e=>{e.exports={en:["Triangle Up"],id_ID:["Segitiga Naik"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],id_ID:["Kembalikan"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],
|
||||
id_ID:["Error tak terduga dalam mode Backtesting Mendalam. Hubungi dukungan untuk informasi lebih lanjut."]}},15432:e=>{e.exports={en:["Units"],id_ID:["Unit"]}},11768:e=>{e.exports={en:["Unknown error"],id_ID:["Kesalahan tidak diketahui"]}},99894:e=>{e.exports={en:["Unlock"],id_ID:["Buka Kunci"]}},75546:e=>{e.exports={en:["Unsupported interval"],id_ID:["Interval tidak didukung"]}},8580:e=>{e.exports={en:["User-defined error"],id_ID:["Error yang ditentukan pengguna"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],id_ID:["Profil Volume Rentang Tetap"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],id_ID:["Indikator Profil Volume hanya tersedia pada skema terupgrade kami."]}},93722:e=>{e.exports={en:["Volume candles"],id_ID:["Candle volume"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],id_ID:["Data volume tidak disediakan dalam paket data BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],id_ID:["Jejak volume"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],id_ID:["Garis Vertikal"]}},23160:e=>{e.exports={en:["Vienna"],id_ID:["Wina"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],id_ID:["Visibilitas"]}},54853:e=>{e.exports={en:["Visibility on intervals"],id_ID:["Visibilitas interval"]}},58302:e=>{e.exports={en:["Visible on tap"],id_ID:["Terlihat dengan mengetuk"]}},10309:e=>{e.exports={en:["Visible on mouse over"],id_ID:["Terlihat saat Mouse Diatas"]}},4077:e=>{e.exports={en:["Visual order"],id_ID:["Urutan visual"]}},11316:e=>{e.exports={en:["X Cross"],id_ID:["Persilangan X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],id_ID:["Motif XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],id_ID:["Anda tidak dapat melihat kerangka waktu pivot pada resolusi ini"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],id_ID:["Anda telah mengunci gambar pada simbol ini. Apakah anda ingin menghapus gambar yang terkunci tersebut juga?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"],id_ID:["Ya, hapus"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"],id_ID:["ubah derajat Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],id_ID:["ubah label tidak tumpang tindih"]}},76852:e=>{e.exports={en:["change average close price label visibility"],id_ID:["Ubah visibilitas label rata-rata harga penutupan"]}},1022:e=>{e.exports={en:["change average close price line visibility"],id_ID:["Ubah visibilitas garis rata-rata harga penutupan"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],id_ID:["Ubah visibilitas label penawaran dan permintaan"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],id_ID:["Ubah visibilitas garis penawaran dan permintaan"]}},32302:e=>{e.exports={en:["change currency"],id_ID:["ubah mata uang"]}},68846:e=>{e.exports={
|
||||
en:["change chart layout to {title}"],id_ID:["ubah layout chart ke {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],id_ID:["ubah visibilitas perubahan kontrak berlanjut"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],id_ID:["Ubah visibilitas perhitungan mundur ke penutupan bar"]}},16979:e=>{e.exports={en:["change date range"],id_ID:["ubah rentang tanggal"]}},53929:e=>{e.exports={en:["change dividends visibility"],id_ID:["Ubah visibilitas dividen"]}},6119:e=>{e.exports={en:["change events visibility on chart"],id_ID:["Ubah visibilitas peristiwa pada chart"]}},6819:e=>{e.exports={en:["change earnings visibility"],id_ID:["Ubah visibilitas laba"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],id_ID:["ubah visibilitas kedaluwarsa kontrak berjangka"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],id_ID:["Ubah visibilitas label harga tertinggi dan terendah"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],id_ID:["Ubah visibilitas garis harga tertinggi dan terendah"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],id_ID:["Ubah visibilitas label nama indikator"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],id_ID:["Ubah visibilitas label nilai indikator"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],id_ID:["Ubah visibilitas update terkini"]}},88849:e=>{e.exports={en:["change linking group"],id_ID:["Ubah penghubungan grup"]}},14691:e=>{e.exports={en:["change pane height"],id_ID:["ubah ketinggian panel"]}},96379:e=>{e.exports={en:["change plus button visibility"],id_ID:["Ubah visibilitas tombol plus"]}},76660:e=>{e.exports={en:["change point"],id_ID:["ubah titik"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],id_ID:["Ubah visibilitas label harga pra/pasca pasar"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],id_ID:["Ubah visibilitas garis harga pra/pasca pasar"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],id_ID:["Ubah visibilitas garis penutupan harga sebelumnya"]}},8662:e=>{e.exports={en:["change price line visibility"],id_ID:["Ubah Garis Harga"]}},2509:e=>{e.exports={en:["change price to bar ratio"],id_ID:["Ubah harga ke rasio bar"]}},32829:e=>{e.exports={en:["change resolution"],id_ID:["Ubah Resolusi"]}},35400:e=>{e.exports={en:["change symbol"],id_ID:["Ubah simbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],id_ID:["Ubah visibilitas label simbol"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],id_ID:["Ubah visibilitas nilai terakhir simbol"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],id_ID:["Ubah visibilitas nilai penutupan simbol sebelumnya"]}},87041:e=>{e.exports={en:["change session"],id_ID:["Ubah sesi"]}},38413:e=>{e.exports={en:["change session breaks visibility"],id_ID:["ubah visibilitas jeda sesi"]}},49965:e=>{e.exports={en:["change series style"],
|
||||
id_ID:["ubah corak seri"]}},47474:e=>{e.exports={en:["change splits visibility"],id_ID:["Ubah visibilitas pemecahan"]}},20137:e=>{e.exports={en:["change timezone"],id_ID:["Ubah zona waktu"]}},85975:e=>{e.exports={en:["change unit"],id_ID:["ubah unit"]}},1924:e=>{e.exports={en:["change visibility"],id_ID:["Ubah Visibilitas"]}},84331:e=>{e.exports={en:["change visibility at current interval"],id_ID:["Ubah visibilitas pada interval saat ini"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],id_ID:["Ubah visibilitas pada interval saat ini dan di atasnya"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],id_ID:["Ubah visibilitas pada interval saat ini dan di bawahnya"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],id_ID:["Ubah visibilitas pada semua interval"]}},94566:e=>{e.exports={en:["charts by TradingView"],id_ID:["chart oleh TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],id_ID:["Klon peralatan garis"]}},46219:e=>{e.exports={en:["create line tools group"],id_ID:["Buat kelompok alat garis"]}},95394:e=>{e.exports={en:["create line tools group from selection"],id_ID:["Buat kelompok alat garis dari pilihan"]}},12898:e=>{e.exports={en:["create {tool}"],id_ID:["buat {tool}"]}},94227:e=>{e.exports={en:["cut sources"],id_ID:["cut sumber"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"],id_ID:["jangkarkan objek"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],id_ID:["Tambahkan alat garis {lineTool} ke kelompok {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],id_ID:["tambahkan alat garis ke kelompok {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],id_ID:["Tambah Metrik Finansial ini ke Seluruh Layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],id_ID:["Tambah Indikator ini ke Seluruh Layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],id_ID:["Tambah Strategi ini ke Seluruh Layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],id_ID:["Tambah Simbol ini ke Seluruh Layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"],id_ID:["sejajarkan hingga 45 derajat"]}},68231:e=>{e.exports={en:["apply chart theme"],id_ID:["terapkan tema chart"]}},99551:e=>{e.exports={en:["apply all chart properties"],id_ID:["terapkan semua properti chart"]}},89720:e=>{e.exports={en:["apply drawing template"],id_ID:["Terapkan Template Gambar"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],id_ID:["terapkan setelan pabrik ke sumber yang dipilih"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],id_ID:["Terapkan indikator ke seluruh layout"]}},69604:e=>{e.exports={en:["apply study template {template}"],id_ID:["Terapkan template studi {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],id_ID:["terapkan tema toolbar"]}},1979:e=>{e.exports={en:["bring group {title} forward"],id_ID:["bawa ke depan {title} grup"]}},53159:e=>{e.exports={
|
||||
en:["bring {title} to front"],id_ID:["bawa {title} ke depan"]}},41966:e=>{e.exports={en:["bring {title} forward"],id_ID:["Bawa {title} ke depan"]}},44676:e=>{e.exports={en:["by TradingView"],id_ID:["oleh TradingView"]}},58850:e=>{e.exports={en:["date range lock"],id_ID:["kunci rentang tanggal"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],id_ID:["Keluarkan alat garis dari kelompok {group}"]}},13017:e=>{e.exports={en:["hide {title}"],id_ID:["sembunyikan {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],id_ID:["Sembunyikan Tanda-Tanda pada Bar"]}},56558:e=>{e.exports={en:["interval lock"],id_ID:["pengunci interval"]}},6830:e=>{e.exports={en:["invert scale"],id_ID:["Inversikan Skala"]}},48818:e=>{e.exports={en:["insert {title}"],id_ID:["masukkan {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],id_ID:["masukkan {title} setelah {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],id_ID:["Masukkan {title} setelah {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],id_ID:["Masukkan {title} sebelum {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],id_ID:["Masukkan {title} sebelum {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],id_ID:["memuat template gambar default"]}},62011:e=>{e.exports={en:["loading..."],id_ID:["memuat..."]}},76104:e=>{e.exports={en:["lock {title}"],id_ID:["Kunci {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],id_ID:["Kunci kelompok {group}"]}},18942:e=>{e.exports={en:["lock objects"],id_ID:["kunci objek"]}},98277:e=>{e.exports={en:["move"],id_ID:["pindah"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],id_ID:["Pindahkan {title} ke Skala Kiri Baru"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],id_ID:["pindahkan {title} ke skala kanan yang baru"]}},64077:e=>{e.exports={en:["move all scales to left"],id_ID:["Pindahkan Seluruh Skala ke Kiri"]}},19013:e=>{e.exports={en:["move all scales to right"],id_ID:["Pindahkan Seluruh Skala ke Kanan"]}},52510:e=>{e.exports={en:["move drawing(s)"],id_ID:["Pindahkan Gambar"]}},79209:e=>{e.exports={en:["move left"],id_ID:["Pindahkan ke kiri"]}},60114:e=>{e.exports={en:["move right"],id_ID:["Pindahkan ke kanan"]}},44854:e=>{e.exports={en:["move scale"],id_ID:["Pindahkan skala"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],id_ID:["Jadikan {title} tanpa skala (Layar Penuh)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],id_ID:["Jadikan kelompok {group} tidak terlihat"]}},45987:e=>{e.exports={en:["make group {group} visible"],id_ID:["Jadikan kelompok {group} terlihat"]}},78055:e=>{e.exports={en:["merge down"],id_ID:["gabungkan ke bawah"]}},41866:e=>{e.exports={en:["merge to pane"],id_ID:["gabungkan ke panel"]}},52458:e=>{e.exports={en:["merge up"],id_ID:["gabungkan ke atas"]}},90091:e=>{e.exports={en:["n/a"],id_ID:["Tidak Tersedia"]}},94981:e=>{e.exports={en:["scale price"],id_ID:["skala harga"]}},63796:e=>{e.exports={en:["scale price chart only"],
|
||||
id_ID:["Skalakan Chart Harga Saja"]}},70771:e=>{e.exports={en:["scale time"],id_ID:["skala waktu"]}},42070:e=>{e.exports={en:["scroll"],id_ID:["gulir"]}},87840:e=>{e.exports={en:["scroll time"],id_ID:["gulirkan waktu"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],id_ID:["atur skala harga strategi yang dipilih ke {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],id_ID:["Kirim {title} kebelakang"]}},5005:e=>{e.exports={en:["send {title} to back"],id_ID:["kirim {title} ke belakang"]}},69546:e=>{e.exports={en:["send group {title} backward"],id_ID:["bawa mundur {title} grup"]}},63934:e=>{e.exports={en:["share line tools globally"],id_ID:["Bagikan peralatan garis secara global"]}},90221:e=>{e.exports={en:["share line tools in layout"],id_ID:["Bagikan peralatan garis pada layout"]}},13336:e=>{e.exports={en:["show all ideas"],id_ID:["tampilkan seluruh ide"]}},91395:e=>{e.exports={en:["show ideas of followed users"],id_ID:["tampilkan ide dari pengguna yang diikuti"]}},57460:e=>{e.exports={en:["show my ideas only"],id_ID:["tampilkan ide saya saja"]}},4114:e=>{e.exports={en:["stay in drawing mode"],id_ID:["Tetap dalam mode menggambar"]}},3350:e=>{e.exports={en:["stop syncing drawing"],id_ID:["hentikan sinkronisasi gambar"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],id_ID:["hentikan sinkronisasi peralatan menggaris"]}},53278:e=>{e.exports={en:["symbol lock"],id_ID:["pengunci simbol"]}},91677:e=>{e.exports={en:["sync time"],id_ID:["waktu sinkronisasi"]}},3140:e=>{e.exports={en:["powered by"],id_ID:["diberdayakan oleh"]}},92800:e=>{e.exports={en:["powered by TradingView"],id_ID:["diberdayakan oleh TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],id_ID:["paste gambar"]}},1064:e=>{e.exports={en:["paste indicator"],id_ID:["paste indikator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],id_ID:["Pin ke skala kiri"]}},7495:e=>{e.exports={en:["pin to right scale"],id_ID:["Pin ke Skala Kanan"]}},81566:e=>{e.exports={en:["pin to scale {label}"],id_ID:["Pin ke Skala {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],id_ID:["atur ulang pane"]}},60806:e=>{e.exports={en:["remove all indicators"],id_ID:["Hapus seluruh Indikator"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],id_ID:["Hapus seluruh indikator dan peralatan gambar"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],id_ID:["hapus alat garis kosong yang tidak dipilih"]}},30538:e=>{e.exports={en:["remove drawings"],id_ID:["Hilangkan Gambar"]}},1193:e=>{e.exports={en:["remove drawings group"],id_ID:["lepaskan kelompok gambar"]}},38199:e=>{e.exports={en:["remove line data sources"],id_ID:["hapus garis sumber data"]}},93333:e=>{e.exports={en:["remove pane"],id_ID:["lepaskan panel"]}},94543:e=>{e.exports={en:["remove {title}"],id_ID:["lepaskan {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],id_ID:["Hilangkan kelompok alat garis {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],
|
||||
id_ID:["Ubah nama kelompok {group} menjadi {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],id_ID:["atur ulang ukuran layout"]}},3323:e=>{e.exports={en:["reset scales"],id_ID:["atur ulang skala"]}},17336:e=>{e.exports={en:["reset time scale"],id_ID:["Reset Skala Waktu"]}},47418:e=>{e.exports={en:["resize layout"],id_ID:["ubah ukuran layout"]}},85815:e=>{e.exports={en:["restore defaults"],id_ID:["kembali ke bawaan"]}},96881:e=>{e.exports={en:["restore study defaults"],id_ID:["Pulihkan studi ke bawaan"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],id_ID:["alihkan status panel yang dimaksimalkan"]}},42240:e=>{e.exports={en:["toggle auto scale"],id_ID:["toggle skala otomatis"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],id_ID:["ubah status panel yang tertutup"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],id_ID:["toggle skala diindeks ke 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],id_ID:["toggle pengunci skala"]}},49403:e=>{e.exports={en:["toggle log scale"],id_ID:["toggle skala Log"]}},98994:e=>{e.exports={en:["toggle percentage scale"],id_ID:["toggle skala persentase"]}},80688:e=>{e.exports={en:["toggle regular scale"],id_ID:["toggle skala reguler"]}},46807:e=>{e.exports={en:["track time"],id_ID:["waktu pelacakan"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],id_ID:["matikan pembagian peralatan garis"]}},99234:e=>{e.exports={en:["unanchor objects"],id_ID:["lepaskan jangkar objek"]}},23230:e=>{e.exports={en:["unlock objects"],id_ID:["buka kunci objek"]}},74590:e=>{e.exports={en:["unlock group {group}"],id_ID:["Buka kunci kelompok {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],id_ID:["Buka kunci {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],id_ID:["pisahkan ke panel bawah yang baru"]}},79443:e=>{e.exports={en:["unmerge up"],id_ID:["pisahkan ke atas"]}},46453:e=>{e.exports={en:["unmerge down"],id_ID:["pisahkan ke bawah"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],id_ID:["Oh tidak! Jenis chart {chartStyle} saat ini tidak tersedia untuk interval berbasis tick."]}},41643:e=>{e.exports={en:["{count} bars"],id_ID:["{count} bar"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],id_ID:["{symbol} finansial oleh TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],id_ID:["{userName} dipublikasikan pada {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],id_ID:["perbesar"]}},73638:e=>{e.exports={en:["zoom out"],id_ID:["perkecil"]}},41807:e=>{e.exports={en:["day","days"],id_ID:["hari"]}},42328:e=>{e.exports={en:["hour","hours"],id_ID:["jam"]}},98393:e=>{e.exports={en:["month","months"],id_ID:["bulan"]}},78318:e=>{e.exports={en:["minute","minutes"],id_ID:["menit"]}},33232:e=>{e.exports={en:["second","seconds"],id_ID:["detik"]}},89937:e=>{e.exports={en:["range","ranges"],id_ID:["rentang"]}},48898:e=>{e.exports={en:["week","weeks"],id_ID:["minggu"]}},11913:e=>{e.exports={
|
||||
en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],id_ID:["{amount} gambar"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],id_ID:["{amount} indikator"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],id_ID:["{count} bulan"]}},47801:e=>{e.exports={en:["{count}d","{count}d"],id_ID:["{count} hari"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],id_ID:["{count} tahun"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],id_ID:["ETF Departemen Keuangan AS Jangka Pendek Schwab"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"],id_ID:["Saham 0-5 TAHUN ETF Obligasi Perusahan Dengan Hasil Tinggi"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],id_ID:["Indeks S&P/ASX Seluruh Australia 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],id_ID:["Indeks S&P/ASX Seluruh Australia 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],id_ID:["Indeks S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],id_ID:["Dollar Australia/Dollar Kanada"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],id_ID:["Dollar Australia / Franc Swiss"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],id_ID:["Dollar Australia / Yen Jepang"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],id_ID:["Dollar Australia / Dollar New Zealand"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],id_ID:["Dollar Australia / Ruble Rusia"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],id_ID:["Dollar Australia / Dollar AS"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],id_ID:["Indeks S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],id_ID:["Bitcoin Cash / Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],id_ID:["Indeks BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],id_ID:["Indeks BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],id_ID:["Indeks Bitcoin / Dollar A.S."]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],id_ID:["Indeks IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],id_ID:["Indeks Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],id_ID:["Indeks IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],id_ID:["Indeks Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"],
|
||||
id_ID:["Perusahaan Ford Motor"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],id_ID:["Indeks S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],id_ID:["Real Brazil / Yen Jepang"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],id_ID:["Indeks S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],id_ID:["Bitcoin/Real Brazil"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],id_ID:["Bitcoin / Dollar Kanada"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],id_ID:["Bitcoin / Yuan Cina"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],id_ID:["Bitcoin/Pound Inggris"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],id_ID:["Bitcoin/Yen Jepang"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],id_ID:["Bitcoin / Won Korea Selatan"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],id_ID:["Bitcoin/Zloty Polandia"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],id_ID:["Bitcoin / Ruble Rusia"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],id_ID:["Bitcoin / Baht Thailand"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],id_ID:["Bitcoin / Dollar AS"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],id_ID:["Emas Bitcoin / Dollar A.S."]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],id_ID:["Indeks Umum S&P / BVL Peru (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],id_ID:["Index Bovespa Brazil"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],id_ID:["Dollar Kanada / Yen Jepang"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],id_ID:["Dollar Kanada / Dollar AS"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],id_ID:["Indeks S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],id_ID:["Indeks Volatilitas S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],id_ID:["Kontrak Berjangka T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],id_ID:["Kontrak Berjangka Jagung"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],id_ID:["Kontrak Berjangka Makanan Kedelai"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],id_ID:["Kontrak Berjangka T-Note 10 Tahun"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],id_ID:["Kontrak Berjangka Oat"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],id_ID:["Kontrak Berjangka Suku Bunga Dana Federal 30 Hari"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],
|
||||
id_ID:["Kontrak Berjangka Beras"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],id_ID:["Kontrak Berjangka Kedelai"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],id_ID:["Kontrak Berjangka Gandum"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],id_ID:["Kontrak Berjangka Mini Kedelai"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],id_ID:["Kontrak Berjangka Gandum"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],id_ID:["Kontrak Berjangka E-MINI DOW JONES ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],id_ID:["Franc Swiss / Yen Jepang"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],id_ID:["Franc Swiss / Dollar AS"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],id_ID:["Kontrak Berjangka Bitcoin CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],id_ID:["Kontrak Berjangka Mentega-Kas (Berlanjut: Kontrak saat ini didepan)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],id_ID:["Kontrak Berjangka Pengumpan Ternak"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],id_ID:["Kontrak Berjangka Daging Babi"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],id_ID:["Kontrak Berjangka Ternak Hidup"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],id_ID:["Kontrak Berjangka E-mini Euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],id_ID:["Kontrak Berjangka E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],id_ID:["Kontrak Berjangka E-mini Yen Jepang"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],id_ID:["Kontrak Berjangka NASDAQ 100 E-MINI"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],id_ID:["Indeks Kontrak Berjangka E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],id_ID:["Kontrak Berjangka Aluminium Premium Eropa"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],id_ID:["Kontrak Berjangka Aluminum MW U.S Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],id_ID:["Kontrak Berjangka Emas"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],id_ID:["Kontrak Berjangka Tembaga"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],id_ID:["Kontrak Berjangka Perak"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],id_ID:["Kontrak Berjangka Tembaga E-mini"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],id_ID:["Kontrak Berjangka Perak (Mini)"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],
|
||||
id_ID:["Kontrak Berjangka Emas (mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],id_ID:["CFD pada Tembaga"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],id_ID:["CFD pada Jagung"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],id_ID:["CFD pada Kapas"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],id_ID:["Total Cap Pasar Crypto, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],id_ID:["Indeks DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],id_ID:["Indeks Rata-Rata Komposit Dow Jones"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],id_ID:["Indeks Komoditas Dow Jones Komponen Terbatas Pertanian"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],id_ID:["Indeks Komoditas Dow Jones Kokoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],id_ID:["Indeks Komoditas Dow Jones Energi"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],id_ID:["Indeks Komoditas Dow Jones Emas"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],id_ID:["Indeks Komoditas Dow Jones Gandum"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],id_ID:["Indeks Komoditas Dow Jones Nikel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],id_ID:["Indeks Komoditas Dow Jones Kopi"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],id_ID:["Indeks Komoditas Dow Jones Gula"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],id_ID:["Indeks Komoditas Dow Jones Perak"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-Rata Industri Dow Jones"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],id_ID:["Indeks Rata-Rata Transportasi Dow Jones"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],id_ID:["Indeks Utilitas Rata-RataDow Jones"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],id_ID:["Indeks Batu Bara Dow Jones A.S"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],id_ID:["Indeks EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],id_ID:["Ethereum Klasik / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],id_ID:["Ethereum Klasik / Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],id_ID:["Ethereum / Pound Inggris"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],
|
||||
id_ID:["Ethereum / Yen Jepang"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],id_ID:["Ethereum / Won Korea Selatan"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],id_ID:["Ethereum / Baht Thailand"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],id_ID:["Ethereum / Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],id_ID:["Bund Euro"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],id_ID:["Euro / Dollar Australia"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],id_ID:["Euro / Real Brazil"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],id_ID:["Euro / Dollar Kanada"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],id_ID:["Euro / Franc Swiss"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],id_ID:["Euro / Pound Inggris"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],id_ID:["Euro / Yen Jepang"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],id_ID:["Euro / Krone Norwegia"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],id_ID:["Euro / Dollar New Zealand"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],id_ID:["Indeks AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],id_ID:["Indeks BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],id_ID:["Indeks CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],id_ID:["Euro / Ruble Rusia"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],id_ID:["Euro /Ruble TOM Rusia"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],id_ID:["Euro / Krona Swedia"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],id_ID:["Euro / Lira Turki"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],id_ID:["Euro / Dollar AS"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],id_ID:["Indeks Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"],id_ID:["Cap Kecil AS 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],id_ID:["Indeks CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],id_ID:["Produk Domestik Bruto, 1 Desimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],id_ID:["Total Populasi. Seluruh Usia Termasuk Pasukan Bersenjata Di Luar Negeri"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],id_ID:["Tingkat Pengangguran Warga Sipil"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],id_ID:["Indeks KLCI FTSE Bursa Malaysia"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."],id_ID:["Key Tronic Corр"]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],
|
||||
id_ID:["Indeks S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-Rata Industri Dow Jones"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],id_ID:["Pound Inggris / Dollar Australia"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],id_ID:["Pound Inggris / Dollar Kanada"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],id_ID:["Pound Inggris / Franc Swiss"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],id_ID:["Pound Inggris / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],id_ID:["Pound Inggris / Yen Jepang"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],id_ID:["Pound Inggris / Dollar New Zealand"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],id_ID:["Pound Inggris / Zloty Polandia"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],id_ID:["Pound Inggris / Ruble Rusia"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],id_ID:["Pound Inggris / Dollar AS"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],id_ID:["Indeks DAX"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],id_ID:["Alphabet Inc (Google) Kelas C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],id_ID:["Alphabet Inc (Google) Kelas A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],id_ID:["Indeks WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],id_ID:["Indeks Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],id_ID:["Kontrak Berjangka Indeks Dollar A.S."]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],id_ID:["Indeks Harga Saham Gabungan IDX"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],id_ID:["Indeks Perusahaan Cina Hang Seng"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],id_ID:["Indeks Komposit Jakarta"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],id_ID:["Indeks KLCI Bursa Malaysia"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],id_ID:["Indeks MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],id_ID:["Indeks Euro STOXX 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],id_ID:["Indeks STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],id_ID:["Indeks Terbebani Taiwan"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],id_ID:["Indeks Komposit Shanghai"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],id_ID:["IOTA / Dollar A.S."]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],id_ID:["Indeks Nikkei 225"]},
|
||||
e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],id_ID:["Yen Jepang / Won Korea Selatan"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],id_ID:["Yen Jepang / Ruble Rusia"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],id_ID:["Yen Jepang / Dollar AS"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],id_ID:["Litecoin / Real Brazil"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],id_ID:["Litecoin / Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],id_ID:["Luna / Dollar A.S."]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],id_ID:["Kontrak Berjangka Brent Oil"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],id_ID:["Indeks MOEX Rusia"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],id_ID:["Indeks MOEX Rusia"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],id_ID:["Kontrak Berjangka Indeks MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],id_ID:["Kontrak Berjangka Indeks MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],id_ID:["Kontrak Berjangka Indeks RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],id_ID:["Indeks RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],id_ID:["CFD Cash US 100"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],id_ID:["Indeks Sektor Perumahan PHLX"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan Ishares 7-10 Tahun"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan Ishares 3-7 Tahun"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],id_ID:["Indeks Komposit Nasdaq"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={
|
||||
en:["Nasdaq 100 Index"],id_ID:["Indeks 100 Nasdaq"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],id_ID:["Indeks Sektor Layanan Minyak PHLX"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan 1-3 Tahun Ishares"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],id_ID:["Indeks Semikonduktor Philadelphia"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan 20+ Tahun Ishares"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],id_ID:["Indeks Sektor Utilitas PHLX"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],id_ID:["Indeks Sektor Emas dan Perak PHLX"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],id_ID:["NEO / Dollar A.S."]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],id_ID:["Gas Alam (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],id_ID:["Indeks Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],id_ID:["Indeks Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],id_ID:["Kontrak Berjangka Ethanol NY"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],id_ID:["Kontrak Berjangka Kokoa"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],id_ID:["Kontrak Berjangka Minyak Mentah Ringan"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],id_ID:["Kontrak Berjangka Pelabuhan NY ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],id_ID:["Kontrak Berjangka Kopi"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],id_ID:["Kontrak Berjangka Gas Alam"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],id_ID:["Kontrak Berjangka Palladium"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],id_ID:["Kontrak Berjangka Platinum"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],id_ID:["Kontrak Berjangka Bensin RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],id_ID:["Kontrak Berjangka Kapas"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],id_ID:["Kontrak Berjangka Gas Alam E-mini"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],id_ID:["Kontrak Berjangka Minyak Mentah Ringan E-mini"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],id_ID:["Kontrak Berjangka Bensin E-mini"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},
|
||||
e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"],id_ID:["Industri-Industri Elektrik Hawaii"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],id_ID:["Indeks Komposit NYSE"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],id_ID:["Indeks Komposit AMEX"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],id_ID:["Indeks Pasar Mayor NYSE ARCA"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],id_ID:["Dollar New Zealand / Yen Jepang"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],id_ID:["Dollar New Zealand / Dollar AS"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],id_ID:["SELURUH Indeks S&P/NZX (Indeks Kapital)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],id_ID:["Indeks S&P / NZX 50 Bruto"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],id_ID:["CFD pada Gas Alam"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],id_ID:["Indeks S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],id_ID:["CFD pada Tembaga (US / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],id_ID:["Indeks OMX Copenhagen 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],id_ID:["Indeks OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],id_ID:["Indeks Gross OMX Riga"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],id_ID:["Indeks OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],id_ID:["Indeks Gross OMX Tallinn"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],id_ID:["Indeks Gross OMX Vilnius"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"],id_ID:["Ishares MSCI Jepang SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],id_ID:["Indeks QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],id_ID:["Indeks RTS Rusia"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],id_ID:["Indeks Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],id_ID:["Indeks Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],id_ID:["Indeks Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],id_ID:["Perusahaan Publik Global Connections"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"],id_ID:["Perusahaan Ford Motor"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],id_ID:["Indeks Pasar Swiss"]},e.exports["#SOLUSD-symbol-description"]={
|
||||
en:["Solana / U.S. Dollar"],id_ID:["Solana / Dollar A.S."]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],id_ID:["CFD pada Kacang Kedelai"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],id_ID:["Indeks S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],id_ID:["Indeks Komoditas S&P Goldman Sachs"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],id_ID:["Indeks S&P500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],id_ID:["Indeks Nilai S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],id_ID:["Indeks S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],id_ID:["CFD pada Gula"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],id_ID:["Indeks Komponen Shenzhen"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],id_ID:["Indeks Seluruh Saham Tadawul"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],id_ID:["Indeks TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],id_ID:["Indeks Komposit S&P/TSX"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],id_ID:["Indeks S&P/TSX"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Australia 10 TH"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Australia Yield 10 TH"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],id_ID:["Indeks Mata Uang Dollar Australia"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],id_ID:["Indeks Mata Uang Pound Inggris"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],id_ID:["Kanada - Obligasi Pemerintah 10 TH"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],id_ID:["Kanada - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],id_ID:["Indeks CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Cina 10 TH"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Cina Yield 10 TH"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],id_ID:["Indeks Mata Uang Dollar Kanada"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Jerman 10 TH"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Jerman Yield 10 TH"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],id_ID:["Indeks DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],
|
||||
id_ID:["Indeks Rata-rata Industri Dow Jones"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],id_ID:["Indeks Dollar A.S."]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Spanyol 10 TH"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Spanyol Yield 10 TH"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"],id_ID:["Bund Euro"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],id_ID:["Indeks Mata Uang Euro"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Perancis 10 TH"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Perancis Yield 10 TH"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"],id_ID:["Indeks Milano Italia Borsa"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],id_ID:["Obligasi Pemerintah Inggris 2 TH"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Inggris 10 TH"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Inggris Yield 10 TH"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],id_ID:["CFD pada Emas ($AS/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],id_ID:["Indeks Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],id_ID:["Indeks IBEX 35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],id_ID:["Obligasi Pemerintah Indonesia 3 TH"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Indonesia 10 TH"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],id_ID:["Indonesia - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah India 10 TH"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah India Yield 10 TH"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Italia 10 TH"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Italia Yield 10 TH"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],id_ID:["Indeks Komposit US"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Jepang 10 TH"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Jepang Yield 10 TH"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],id_ID:["Indeks Mata Uang Yen Jepang"]},
|
||||
e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],id_ID:["Indeks Harga Saham Komposit Korea"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Korea 10 TH"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Korea Yield 10 TH"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Malaysia 10 TH"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Malaysia Yield 10 TH"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],id_ID:["Indeks US 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],id_ID:["Indeks Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],id_ID:["Belanda - Obligasi Pemerintah 10 TH"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],id_ID:["Belanda - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],id_ID:["Indeks Komposit NYSE"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],id_ID:["New Zealand - Obligasi Pemerintah 10 TH"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],id_ID:["New Zealand - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],id_ID:["CFD pada Paladium ($AS/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],id_ID:["Obligasi Pemerintah Polandia Yield 5 TH"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Polandia Yield 10 TH"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],id_ID:["CFD pada Platimun ($AS / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Portugal 10 TH"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Portugis Yield 10 TH"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],id_ID:["Indeks 40 Teratas Afrika Selatan"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],id_ID:["CFD pada Perak ($AS/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],id_ID:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],id_ID:["Indeks Pasar Swiss"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],id_ID:["Indeks Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],id_ID:["Indeks STOXX 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],id_ID:["Indeks Mata Uang Franc Swiss"]},e.exports["#TVC:TR10-symbol-description"]={
|
||||
en:["Turkey Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Turki 10 TH"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Turki Yield 10 TH"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],id_ID:["CFD pada Minyak Mentah Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],id_ID:["Indeks UK 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],id_ID:["Obligasi Pemerintah AS 2 TH"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],id_ID:["Obligasi Pemerintah A.S Yield 2 TH"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],id_ID:["Obligasi Pemerintah AS 5 TH"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],id_ID:["Obligasi Pemerintah A.S Yield 5 TH"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah AS 10 TH"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah A.S Yield 10 TH"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],id_ID:["Obligasi Pemerintah AS 30 Th"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],id_ID:["CFD pada Minyak Mentah WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],id_ID:["Indeks Volatilitas S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],id_ID:["Indeks Mata Uang Dollar New Zealand"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],id_ID:["Indeks Terbebani Taiwan"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],id_ID:["Indeks Saham Terbebani Kapitalisasi Taiwan"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],id_ID:["Indeks FTSE 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],id_ID:["CFD pada Minyak Mentah (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],id_ID:["Uniswap / Dollar A.S."]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-Rata Industri Dow Jones"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],id_ID:["Dollar AS / Dollar Australia"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],id_ID:["Dollar A.S. / Real Brazil"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],id_ID:["Dollar A.S. / Dollar Kanada"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],id_ID:["Dollar A.S. / Franc Swiss"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],id_ID:["Dollar A.S. / Yuan Cina"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],id_ID:["Dollar A.S. / Krona Denmark"]},
|
||||
e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],id_ID:["Dollar AS / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],id_ID:["Dollar AS / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],id_ID:["Dollar A.S. / Dollar Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],id_ID:["Dollar A.S / Forint Hungaria"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],id_ID:["Dollar A.S. / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],id_ID:["Dollar A.S. / Shekel Israel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],id_ID:["Dollar A.S. / Rupee India"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],id_ID:["Dollar A.S. / Yen Jepang"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],id_ID:["Dollar A.S. / Won Korea Selatan"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],id_ID:["Dollar A.S. / Peso Meksiko"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],id_ID:["Dollar AS / Dollar New Zealand"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],id_ID:["Dollar A.S. / Peso Filipina"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],id_ID:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],id_ID:["Dollar A.S. / Ruble Rusia"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],id_ID:["Dollar A.S. / Ruble TOM Rusia"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],id_ID:["Dollar A.S. / Krona Swedia"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],id_ID:["Dollar A.S. / Dollar Singapura"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],id_ID:["Dollar A.S / Baht Thailand"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],id_ID:["Dollar A.S. / Lira Turki"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],id_ID:["Dollar A.S / Rand Afrika Selatan"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],id_ID:["CFD pada Minyak Mentah (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],id_ID:["CFD pada Gandum"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],id_ID:["Perak / Dollar A.S."]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],id_ID:["Emas / Dollar A.S."]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],id_ID:["Bitcoin / Dollar Kanada"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],id_ID:["Indeks DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],id_ID:["Monero / Dollar A.S."]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],id_ID:["CFD pada Palladium"]},
|
||||
e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],id_ID:["Platinum / Dollar A.S."]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],id_ID:["XRP / Dollar A.S."]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],id_ID:["Zcash / Dollar A.S."]}}}]);
|
||||
id_ID:["Gelombang Segitiga Elliott / Elliott Triangle Wave (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],id_ID:["Gelombang Kombinasi Tripel Elliott (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],id_ID:["Elips"]}},52788:e=>{e.exports={en:["Extended Line"],id_ID:["Garis Perpanjangan"]}},86905:e=>{e.exports={en:["Exchange"],id_ID:["Bursa"]}},19271:e=>{e.exports={en:["Existing pane above"],id_ID:["Pane Yang Telah Ada Diatas"]}},46545:e=>{e.exports={en:["Existing pane below"],id_ID:["Pane Yang Telah Ada Dibawah"]}},20138:e=>{e.exports={en:["Forecast"],id_ID:["Prakiraan"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],id_ID:["Kanal Fib"]}},82330:e=>{e.exports={en:["Fib Circles"],id_ID:["Lingkaran Fib"]}},55986:e=>{e.exports={en:["Fib Retracement"],id_ID:["Retracemen Fib"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],id_ID:["Busur Resisten Kecepatan Fib"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],id_ID:["Kipas Resisten Kecepatan Fib"]}},39014:e=>{e.exports={en:["Fib Spiral"],id_ID:["Spiral Fib"]}},30622:e=>{e.exports={en:["Fib Time Zone"],id_ID:["Zona Waktu Fib"]}},85042:e=>{e.exports={en:["Fib Wedge"],id_ID:["Baji Fib"]}},33885:e=>{e.exports={en:["Flag"],id_ID:["Bendera"]}},14600:e=>{e.exports={en:["Flag Mark"],id_ID:["Tanda Bendera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],id_ID:["Puncak/Dasar Datar"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],id_ID:["Bagian fraksi tidak valid."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],id_ID:["Studi-Studi Fundamental tidak lagi tersedia pada chart"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],id_ID:["Area HLC"]}},886:e=>{e.exports={en:["HLC bars"],id_ID:["Bar HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],id_ID:["Candle Kosong"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],id_ID:["Garis Horisontal"]}},25487:e=>{e.exports={en:["Horizontal Ray"],id_ID:["Sinar Horisontal"]}},21928:e=>{e.exports={en:["Head and Shoulders"],id_ID:["Head dan Shoulders"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],id_ID:["Sembunyikan"]}},47074:e=>{e.exports={en:["Hide all"],id_ID:["Sembunyikan seluruhnya"]}},52563:e=>{e.exports={en:["Hide all drawings"],id_ID:["Sembunyikan seluruh gambar"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],id_ID:["Sembunyikan seluruh gambar dan indikator"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],id_ID:["Sembunyikan seluruh gambar, indikator, posisi & order"]}},78525:e=>{e.exports={en:["Hide all indicators"],id_ID:["Sembunyikan seluruh indikator"]}},42164:e=>{e.exports={
|
||||
en:["Hide all positions & orders"],id_ID:["Sembunyikan seluruh posisi & order"]}},3217:e=>{e.exports={en:["Hide drawings"],id_ID:["Sembunyikan gambar"]}},97878:e=>{e.exports={en:["Hide events on chart"],id_ID:["Sembunyikan Peristiwa di Chart"]}},72351:e=>{e.exports={en:["Hide indicators"],id_ID:["Sembunyikan indikator"]}},28345:e=>{e.exports={en:["Hide marks on bars"],id_ID:["Sembunyikan Tanda-Tanda pada Bar"]}},92226:e=>{e.exports={en:["Hide positions & orders"],id_ID:["Sembunyikan posisi & order"]}},78254:e=>{e.exports={en:["High"],id_ID:["Tertinggi"]}},98236:e=>{e.exports={en:["High-low"],id_ID:["Tertinggi-Terendah"]}},99479:e=>{e.exports={en:["High and low price labels"],id_ID:["Label harga tertinggi dan terendah"]}},33766:e=>{e.exports={en:["High and low price lines"],id_ID:["Garis harga tertinggi dan terendah"]}},69476:e=>{e.exports={en:["Highlighter"],id_ID:["Penanda"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],id_ID:["Histogram terlalu besar, harap tambah {boldHighlightStart}Ukuran Baris{boldHighlightEnd} di jendela pengaturan."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],id_ID:["Histogram terlalu besar, harap tambah {boldHighlightStart}Tick Per Baris{boldHighlightEnd} di jendela pengaturan."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],id_ID:["Histogram terlalu besar, harap kurangi {boldHighlightStart}Ukuran Baris{boldHighlightEnd} di jendela pengaturan."]}},68065:e=>{e.exports={en:["Image"],id_ID:["Gambar"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],id_ID:["Interval kurang dari {resolution} tidak didukung untuk {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],id_ID:["Menengah"]}},14285:e=>{e.exports={en:["Invalid Symbol"],id_ID:["Simbol Tidak Valid"]}},52969:e=>{e.exports={en:["Invalid symbol"],id_ID:["Simbol tidak valid"]}},37189:e=>{e.exports={en:["Invert scale"],id_ID:["Inversikan Skala"]}},89999:e=>{e.exports={en:["Indexed to 100"],id_ID:["Diindeks ke 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],id_ID:["Label nilai indikator"]}},54418:e=>{e.exports={en:["Indicators name labels"],id_ID:["Label nama indikator"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],id_ID:["Indikator, Metrik dan Strategi. Tekan garis miring"]}},15992:e=>{e.exports={en:["Info Line"],id_ID:["Garis Info"]}},87829:e=>{e.exports={en:["Insert indicator"],id_ID:["Masukkan Indikator"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],id_ID:["Pitchfork Bagian Dalam"]}},37913:e=>{e.exports={en:["Icon"],id_ID:["Ikon"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"]}},62310:e=>{e.exports={en:["Jan"]}},36057:e=>{e.exports={en:["Jerusalem"],id_ID:["Yerusalem"]}},53786:e=>{e.exports={
|
||||
en:["Jul"]}},429:e=>{e.exports={en:["Jun"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],id_ID:["Di Sebelah Kiri"]}},55813:e=>{e.exports={en:["On the right"],id_ID:["Di Sebelah Kanan"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],id_ID:["Hanya interval {availableResolutions} yang didukung oleh {ticker}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"],id_ID:["Pohon Objek"]}},12179:e=>{e.exports={en:["Oct"],id_ID:["Okt"]}},16610:e=>{e.exports={en:["Open"],id_ID:["Pembukaan"]}},27884:e=>{e.exports={en:["Open layout. Press period"],id_ID:["Buka layout. Tekan periode"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],id_ID:["Terendah"]}},51077:e=>{e.exports={en:["Lock"],id_ID:["Kunci"]}},79777:e=>{e.exports={en:["Lock/unlock"],id_ID:["Kunci/Buka Kunci"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],id_ID:["Kunci garis kursor vertikal berdasarkan waktu"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],id_ID:["Kunci Harga Ke Rasio Bar"]}},16170:e=>{e.exports={en:["Logarithmic"],id_ID:["Logaritma"]}},19439:e=>{e.exports={en:["London"]}},74832:e=>{e.exports={en:["Long Position"],id_ID:["Posisi Pembelian"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],id_ID:["Label Turun"]}},52402:e=>{e.exports={en:["Label Up"],id_ID:["Label Naik"]}},5119:e=>{e.exports={en:["Labels"],id_ID:["Label"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],id_ID:["Perubahan hari terakhir"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],id_ID:["Garis"]}},9394:e=>{e.exports={en:["Line with markers"],id_ID:["Garis dengan penanda"]}},43588:e=>{e.exports={en:["Line break"],id_ID:["Garis Jeda"]}},56982:e=>{e.exports={en:["Lines"],id_ID:["Garis"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],id_ID:["Tautan ke gambar chart yang disalin ke clipboard {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"]}},81038:e=>{e.exports={en:["Luxembourg"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],id_ID:["Pindahkan titiknya untuk memposisikan jangkar lalu tap untuk meletakkan"]}},35049:e=>{e.exports={en:["Move to"],id_ID:["Pindah Ke"]}},26493:e=>{e.exports={en:["Move scale to left"],id_ID:["Pindahkan Skala ke Kiri"]}},40789:e=>{e.exports={en:["Move scale to right"],id_ID:["Pindahkan Skala ke Kanan"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],id_ID:["Pitchfork Schiff Termodifikasi"]}},93907:e=>{e.exports={en:["More settings"],id_ID:["Pengaturan lainnya"]}},64039:e=>{e.exports={en:["Moscow"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"],id_ID:["Kota Meksiko"]}},88314:e=>{e.exports={en:["Merge all scales into one"],id_ID:["Gabungkan Seluruh Skala Menjadi Satu"]}},54215:e=>{e.exports={en:["Mixed"],
|
||||
id_ID:["Campuran"]}},24866:e=>{e.exports={en:["Micro"],id_ID:["Mikro"]}},87957:e=>{e.exports={en:["Millennium"],id_ID:["Milenium"]}},14724:e=>{e.exports={en:["Minuette"]}},78273:e=>{e.exports={en:["Minuscule"],id_ID:["Amat kecil"]}},9865:e=>{e.exports={en:["Muscat"]}},96935:e=>{e.exports={en:["N/A"],id_ID:["Tidak Tersedia"]}},36252:e=>{e.exports={en:["No data here"],id_ID:["Belum ada data disini"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],id_ID:["Tanpa Skala (Layar Penuh)"]}},9140:e=>{e.exports={en:["No sync"],id_ID:["Tidak ada sinkronisasi"]}},50910:e=>{e.exports={en:["No volume data"],id_ID:["Tidak ada data volume"]}},99024:e=>{e.exports={en:["No, keep them"],id_ID:["Tidak, simpan saja"]}},94389:e=>{e.exports={en:["Note"],id_ID:["Catatan"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],id_ID:["Pulai Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],id_ID:["Selandia Baru"]}},15512:e=>{e.exports={en:["New pane above"],id_ID:["Panel baru diatas"]}},52160:e=>{e.exports={en:["New pane below"],id_ID:["Panel baru dibawah"]}},94600:e=>{e.exports={en:["Nicosia"],id_ID:["Nikosia"]}},73013:e=>{e.exports={en:["Something went wrong"],id_ID:["Terjadi masalah"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],id_ID:["Terjadi kesalahan saat membuat indikator."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],id_ID:["Terjadi kesalahan. Harap coba kembali nanti."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],id_ID:["Simpan Layout Chart Baru"]}},76266:e=>{e.exports={en:["Save as"],id_ID:["Simpan Sebagai"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"]}},43931:e=>{e.exports={en:["Scale currency"],id_ID:["Mata uang skala"]}},43758:e=>{e.exports={en:["Scale price chart only"],id_ID:["Skalakan Chart Harga Saja"]}},40012:e=>{e.exports={en:["Scale unit"],id_ID:["Unit skala"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],id_ID:["Pitchfork Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],id_ID:["Skrip mungkin tidak diperbaharui apabila anda menginggalkan halaman ini."]}},32514:e=>{e.exports={en:["Settings"],id_ID:["Pengaturan"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],id_ID:["Bagian pecahan kedua tidak valid."]}},75594:e=>{e.exports={en:["Security info"],id_ID:["Informasi keamanan"]}},21973:e=>{e.exports={en:["Send to back"],id_ID:["Kirim ke Belakang"]}},71179:e=>{e.exports={en:["Send backward"],id_ID:["Kirim Mundur"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"]}},94031:e=>{e.exports={en:["Session"],id_ID:["Sesi"]}},83298:e=>{e.exports={en:["Session volume profile"],id_ID:["Profil volume sesi"]}},66707:e=>{e.exports={en:["Session breaks"],id_ID:["Jeda Sesi"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],id_ID:["Posisi Penjualan"]}},98334:e=>{e.exports={en:["Show"],
|
||||
id_ID:["Perlihatkan"]}},85891:e=>{e.exports={en:["Show all drawings"],id_ID:["Tampilkan seluruh gambar"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],id_ID:["Tampilkan seluruh gambar dan indikator"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],id_ID:["Tampilkan seluruh gambar, indikator, posisi & order"]}},98753:e=>{e.exports={en:["Show all indicators"],id_ID:["Tampilkan seluruh indikator"]}},55418:e=>{e.exports={en:["Show all ideas"],id_ID:["Tampilkan seluruh ide"]}},20506:e=>{e.exports={en:["Show all positions & orders"],id_ID:["Tampilkan seluruh posisi & order"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],id_ID:["Tampilkan perubahan kontrak berlanjut"]}},81465:e=>{e.exports={en:["Show contract expiration"],id_ID:["Tampilkan kedaluwarsa kontrak"]}},29449:e=>{e.exports={en:["Show dividends"],id_ID:["Perlihatkan dividen"]}},37113:e=>{e.exports={en:["Show earnings"],id_ID:["Perlihatkan perolehan"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],id_ID:["Tampilkan ide dari pengguna yang diikuti"]}},62986:e=>{e.exports={en:["Show latest news"],id_ID:["Tampilkan berita terkini"]}},44020:e=>{e.exports={en:["Show my ideas only"],id_ID:["Tampilkan ide saya saja"]}},50849:e=>{e.exports={en:["Show splits"],id_ID:["Perlihatkan pemecahan"]}},67751:e=>{e.exports={en:["Signpost"]}},77377:e=>{e.exports={en:["Singapore"],id_ID:["Singapura"]}},39090:e=>{e.exports={en:["Sine Line"],id_ID:["Garis Sinus"]}},66205:e=>{e.exports={en:["Square"],id_ID:["Persegi"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],id_ID:["Batas studi terlewati. {number} studi per layout.\nHarap menghilangkan beberapa studi."]}},92516:e=>{e.exports={en:["Style"],id_ID:["Corak"]}},61507:e=>{e.exports={en:["Stack on the left"],id_ID:["Susun di Kiri"]}},97800:e=>{e.exports={en:["Stack on the right"],id_ID:["Susun di Kanan"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],id_ID:["Mulai gunakan mode navigasi keyboard. Tekan {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],id_ID:["Tetap Dalam Mode Menggambar"]}},69217:e=>{e.exports={en:["Step line"],id_ID:["Garis tahap"]}},43114:e=>{e.exports={en:["Sticker"],id_ID:["Stiker"]}},86716:e=>{e.exports={en:["Stockholm"]}},1145:e=>{e.exports={en:["Submicro"],id_ID:["Submikro"]}},63375:e=>{e.exports={en:["Submillennium"],id_ID:["Submilenium"]}},30585:e=>{e.exports={en:["Subminuette"]}},67948:e=>{e.exports={en:["Supercycle"]}},3348:e=>{e.exports={en:["Supermillennium"],id_ID:["Supermilenium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],id_ID:["Beralih ke {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],id_ID:["Simbol Error"]}},32390:e=>{e.exports={en:["Symbol name label"],id_ID:["Label Nama Simbol"]}},10127:e=>{e.exports={en:["Symbol last price label"],id_ID:["Label Nilai Terakhir Simbol"]}},39079:e=>{e.exports={en:["Sync globally"],id_ID:["Sinkronisasikan secara global"]}},
|
||||
46607:e=>{e.exports={en:["Sync in layout"],id_ID:["Sinkronisasi pada layout"]}},76519:e=>{e.exports={en:["Point & figure"],id_ID:["Poin & Figur"]}},39949:e=>{e.exports={en:["Polyline"]}},371:e=>{e.exports={en:["Path"],id_ID:["Jalur"]}},59256:e=>{e.exports={en:["Parallel Channel"],id_ID:["Kanal Paralel"]}},61879:e=>{e.exports={en:["Paris"]}},35140:e=>{e.exports={en:["Paste"]}},6919:e=>{e.exports={en:["Percent"],id_ID:["Persen"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"]}},33110:e=>{e.exports={en:["Pin to new left scale"],id_ID:["Pin ke Skala Kiri Baru"]}},28280:e=>{e.exports={en:["Pin to new right scale"],id_ID:["Pin ke Skala Kanan Baru"]}},14115:e=>{e.exports={en:["Pin to left scale"],id_ID:["Pin ke Skala Kiri"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],id_ID:["Pin ke Skala Kiri (Tersembunyi)"]}},81054:e=>{e.exports={en:["Pin to right scale"],id_ID:["Pin ke skala kanan"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],id_ID:["Pin ke Skala Kanan (Tersembunyi)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],id_ID:["Pin ke Skala (Saat ini Kiri)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],id_ID:["Pin ke Skala (Saat ini Tanpa Skala)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],id_ID:["Pin ke Skala (Saat ini Kanan)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],id_ID:["Pin ke Skala ({label} Saat ini)"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],id_ID:["Pin ke Skala {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],id_ID:["Pin ke Skala {label} (Tersembunyi)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],id_ID:["Di Pin ke Skala Kiri"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],id_ID:["Di Pin ke Skala Kiri (Tersembunyi)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],id_ID:["Di Pin ke Skala Kanan"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],id_ID:["Pin ke Skala Kanan (Tersembunyi)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],id_ID:["Di Pin ke Skala {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],id_ID:["Di Pin ke Skala {label} (Tersembunyi)"]}},71566:e=>{e.exports={en:["Plus button"],id_ID:["Tanda tambah"]}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],id_ID:["Harap beri kami izin menulis clipboard di browser anda atau tekan {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],id_ID:["Praha"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],id_ID:["Tekan dan tahan {key} saat melakukan zoom untuk mempertahankan posisi chart"]}},91282:e=>{e.exports={en:["Price Label"],id_ID:["Label Harga"]}},97512:e=>{e.exports={en:["Price Note"],id_ID:["Catatan Harga"]}},68941:e=>{e.exports={en:["Price Range"],id_ID:["Rentang Harga"]}},66123:e=>{e.exports={en:["Price format is invalid."],
|
||||
id_ID:["Format harga tidak valid."]}},72926:e=>{e.exports={en:["Price line"],id_ID:["Garis Harga"]}},59189:e=>{e.exports={en:["Primary"],id_ID:["Primer"]}},75747:e=>{e.exports={en:["Projection"],id_ID:["Proyeksi"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],id_ID:["Dipublikasikan pada {customer}, {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],id_ID:["Pencarian cepat. Tekan {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],id_ID:["Persegi Terputar"]}},52961:e=>{e.exports={en:["Rome"],id_ID:["Roma"]}},50318:e=>{e.exports={en:["Ray"],id_ID:["Sinar"]}},55169:e=>{e.exports={en:["Range"],id_ID:["Rentang"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],id_ID:["Persegi"]}},48236:e=>{e.exports={en:["Redo"],id_ID:["Ulangi"]}},2460:e=>{e.exports={en:["Regression Trend"],id_ID:["Tren Regresi"]}},67410:e=>{e.exports={en:["Remove"],id_ID:["Hilangkan"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],id_ID:["Hapus metrik keuangan ini dari favorit"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],id_ID:["Hapus indikator ini dari favorit"]}},86285:e=>{e.exports={en:["Remove {drawings}"],id_ID:["Hilangkan {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],id_ID:["Hilangkan {drawings} & {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],id_ID:["Hilangkan {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],id_ID:["Ganti Nama Layout Chart"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],id_ID:["Atur ulang tampilan chart"]}},88853:e=>{e.exports={en:["Reset points"],id_ID:["Reset poin"]}},15332:e=>{e.exports={en:["Reset price scale"],id_ID:["Atur ulang skala harga"]}},54170:e=>{e.exports={en:["Reset time scale"],id_ID:["Reset Skala Waktu"]}},37974:e=>{e.exports={en:["Riyadh"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],id_ID:["Error runtime"]}},66719:e=>{e.exports={en:["Warning"],id_ID:["Peringatan"]}},5959:e=>{e.exports={en:["Warsaw"],id_ID:["Warsawa"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],id_ID:["Tabel"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"],id_ID:["Teheran"]}},93553:e=>{e.exports={en:["Template"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],id_ID:["Vendor data tidak menyediakan data volume untuk simbol ini."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],
|
||||
id_ID:["Kilasan publikasi tidak dapat dimuat. Harap matikan ekstensi browser anda lalu coba kembali."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],id_ID:["Permintaan tersebut membutuhkan waktu terlalu lama untuk diproses. Pastikan anda memiliki koneksi internet yang stabil. Jika masalah masih berlanjut, cobalah untuk mengurangi durasi interval waktu yang diminta."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],id_ID:["Tidak ada data untuk periode dan kerangka waktu chart yang anda pilih."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],id_ID:["File terlalu besar. Ukuran maksimum adalah {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],id_ID:["Indikator ini tidak dapat diterapkan pada indikator lain"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],id_ID:["Skrip ini mengandung error. Silahkan hubungi penulisnya."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],id_ID:["Skrip ini hanya-undangan. Untuk meminta akses, silakan hubungi penulisnya."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],id_ID:["Simbol tersebut hanya tersedia di {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],id_ID:["Interval berbasis tick tidak tersedia untuk {ticker}."]}},12806:e=>{e.exports={en:["Time"],id_ID:["Waktu"]}},20909:e=>{e.exports={en:["Time zone"],id_ID:["Zona Waktu"]}},46852:e=>{e.exports={en:["Time Cycles"],id_ID:["Siklus Waktu"]}},17809:e=>{e.exports={en:["Time Price Opportunity"],id_ID:["Peluang Harga Waktu"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],id_ID:["Tradingview bersifat interaktif dan memiliki perintah untuk digunakan dengan pembaca layar. Berikut ini adalah daftar perintah keyboard yang tersedia untuk berinteraksi di platform"]}},35757:e=>{e.exports={en:["Trend Angle"],id_ID:["Sudut Tren"]}},97339:e=>{e.exports={en:["Trend Line"],id_ID:["Garis Tren"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],id_ID:["Ekstensi Fib Berbasis Tren"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],id_ID:["Waktu Fib Berbasis Tren"]}},1671:e=>{e.exports={en:["Triangle"],id_ID:["Segitiga"]}},76152:e=>{e.exports={en:["Triangle Down"],id_ID:["Segitiga Turun"]}},90148:e=>{e.exports={en:["Triangle Pattern"],id_ID:["Motif Segitiga"]}},21236:e=>{e.exports={en:["Triangle Up"],id_ID:["Segitiga Naik"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],id_ID:["Kembalikan"]}},56815:e=>{
|
||||
e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],id_ID:["Error tak terduga dalam mode Backtesting Mendalam. Hubungi dukungan untuk informasi lebih lanjut."]}},15432:e=>{e.exports={en:["Units"],id_ID:["Unit"]}},11768:e=>{e.exports={en:["Unknown error"],id_ID:["Kesalahan tidak diketahui"]}},99894:e=>{e.exports={en:["Unlock"],id_ID:["Buka Kunci"]}},75546:e=>{e.exports={en:["Unsupported interval"],id_ID:["Interval tidak didukung"]}},8580:e=>{e.exports={en:["User-defined error"],id_ID:["Error yang ditentukan pengguna"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],id_ID:["Profil Volume Rentang Tetap"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],id_ID:["Indikator Profil Volume hanya tersedia pada skema terupgrade kami."]}},93722:e=>{e.exports={en:["Volume candles"],id_ID:["Candle volume"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],id_ID:["Data volume tidak disediakan dalam paket data BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],id_ID:["Jejak volume"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],id_ID:["Garis Vertikal"]}},23160:e=>{e.exports={en:["Vienna"],id_ID:["Wina"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],id_ID:["Visibilitas"]}},54853:e=>{e.exports={en:["Visibility on intervals"],id_ID:["Visibilitas interval"]}},58302:e=>{e.exports={en:["Visible on tap"],id_ID:["Terlihat dengan mengetuk"]}},10309:e=>{e.exports={en:["Visible on mouse over"],id_ID:["Terlihat saat Mouse Diatas"]}},4077:e=>{e.exports={en:["Visual order"],id_ID:["Urutan visual"]}},11316:e=>{e.exports={en:["X Cross"],id_ID:["Persilangan X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],id_ID:["Motif XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],id_ID:["Anda tidak dapat melihat kerangka waktu pivot pada resolusi ini"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],id_ID:["Anda telah mengunci gambar pada simbol ini. Apakah anda ingin menghapus gambar yang terkunci tersebut juga?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"],id_ID:["Ya, hapus"]}},62859:e=>{e.exports={en:["Zurich"]}},47977:e=>{e.exports={en:["change Elliott degree"],id_ID:["ubah derajat Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],id_ID:["ubah label tidak tumpang tindih"]}},76852:e=>{e.exports={en:["change average close price label visibility"],id_ID:["Ubah visibilitas label rata-rata harga penutupan"]}},1022:e=>{e.exports={en:["change average close price line visibility"],id_ID:["Ubah visibilitas garis rata-rata harga penutupan"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],id_ID:["Ubah visibilitas label penawaran dan permintaan"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],
|
||||
id_ID:["Ubah visibilitas garis penawaran dan permintaan"]}},32302:e=>{e.exports={en:["change currency"],id_ID:["ubah mata uang"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],id_ID:["ubah layout chart ke {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],id_ID:["ubah visibilitas perubahan kontrak berlanjut"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],id_ID:["Ubah visibilitas perhitungan mundur ke penutupan bar"]}},16979:e=>{e.exports={en:["change date range"],id_ID:["ubah rentang tanggal"]}},53929:e=>{e.exports={en:["change dividends visibility"],id_ID:["Ubah visibilitas dividen"]}},6119:e=>{e.exports={en:["change events visibility on chart"],id_ID:["Ubah visibilitas peristiwa pada chart"]}},6819:e=>{e.exports={en:["change earnings visibility"],id_ID:["Ubah visibilitas laba"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],id_ID:["ubah visibilitas kedaluwarsa kontrak berjangka"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],id_ID:["Ubah visibilitas label harga tertinggi dan terendah"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],id_ID:["Ubah visibilitas garis harga tertinggi dan terendah"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],id_ID:["Ubah visibilitas label nama indikator"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],id_ID:["Ubah visibilitas label nilai indikator"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],id_ID:["Ubah visibilitas update terkini"]}},88849:e=>{e.exports={en:["change linking group"],id_ID:["Ubah penghubungan grup"]}},14691:e=>{e.exports={en:["change pane height"],id_ID:["ubah ketinggian panel"]}},96379:e=>{e.exports={en:["change plus button visibility"],id_ID:["Ubah visibilitas tombol plus"]}},76660:e=>{e.exports={en:["change point"],id_ID:["ubah titik"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],id_ID:["Ubah visibilitas label harga pra/pasca pasar"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],id_ID:["Ubah visibilitas garis harga pra/pasca pasar"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],id_ID:["Ubah visibilitas garis penutupan harga sebelumnya"]}},8662:e=>{e.exports={en:["change price line visibility"],id_ID:["Ubah Garis Harga"]}},2509:e=>{e.exports={en:["change price to bar ratio"],id_ID:["Ubah harga ke rasio bar"]}},32829:e=>{e.exports={en:["change resolution"],id_ID:["Ubah Resolusi"]}},35400:e=>{e.exports={en:["change symbol"],id_ID:["Ubah simbol"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],id_ID:["Ubah visibilitas label simbol"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],id_ID:["Ubah visibilitas nilai terakhir simbol"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],id_ID:["Ubah visibilitas nilai penutupan simbol sebelumnya"]}},87041:e=>{e.exports={en:["change session"],id_ID:["Ubah sesi"]
|
||||
}},38413:e=>{e.exports={en:["change session breaks visibility"],id_ID:["ubah visibilitas jeda sesi"]}},49965:e=>{e.exports={en:["change series style"],id_ID:["ubah corak seri"]}},47474:e=>{e.exports={en:["change splits visibility"],id_ID:["Ubah visibilitas pemecahan"]}},20137:e=>{e.exports={en:["change timezone"],id_ID:["Ubah zona waktu"]}},85975:e=>{e.exports={en:["change unit"],id_ID:["ubah unit"]}},1924:e=>{e.exports={en:["change visibility"],id_ID:["Ubah Visibilitas"]}},84331:e=>{e.exports={en:["change visibility at current interval"],id_ID:["Ubah visibilitas pada interval saat ini"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],id_ID:["Ubah visibilitas pada interval saat ini dan di atasnya"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],id_ID:["Ubah visibilitas pada interval saat ini dan di bawahnya"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],id_ID:["Ubah visibilitas pada semua interval"]}},94566:e=>{e.exports={en:["charts by TradingView"],id_ID:["chart oleh TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],id_ID:["Klon peralatan garis"]}},46219:e=>{e.exports={en:["create line tools group"],id_ID:["Buat kelompok alat garis"]}},95394:e=>{e.exports={en:["create line tools group from selection"],id_ID:["Buat kelompok alat garis dari pilihan"]}},12898:e=>{e.exports={en:["create {tool}"],id_ID:["buat {tool}"]}},94227:e=>{e.exports={en:["cut sources"],id_ID:["cut sumber"]}},11500:e=>{e.exports={en:["cut {title}"]}},63869:e=>{e.exports={en:["anchor objects"],id_ID:["jangkarkan objek"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],id_ID:["Tambahkan alat garis {lineTool} ke kelompok {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],id_ID:["tambahkan alat garis ke kelompok {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],id_ID:["Tambah Metrik Finansial ini ke Seluruh Layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],id_ID:["Tambah Indikator ini ke Seluruh Layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],id_ID:["Tambah Strategi ini ke Seluruh Layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],id_ID:["Tambah Simbol ini ke Seluruh Layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"],id_ID:["sejajarkan hingga 45 derajat"]}},68231:e=>{e.exports={en:["apply chart theme"],id_ID:["terapkan tema chart"]}},99551:e=>{e.exports={en:["apply all chart properties"],id_ID:["terapkan semua properti chart"]}},89720:e=>{e.exports={en:["apply drawing template"],id_ID:["Terapkan Template Gambar"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],id_ID:["terapkan setelan pabrik ke sumber yang dipilih"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],id_ID:["Terapkan indikator ke seluruh layout"]}},69604:e=>{e.exports={en:["apply study template {template}"],id_ID:["Terapkan template studi {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],
|
||||
id_ID:["terapkan tema toolbar"]}},1979:e=>{e.exports={en:["bring group {title} forward"],id_ID:["bawa ke depan {title} grup"]}},53159:e=>{e.exports={en:["bring {title} to front"],id_ID:["bawa {title} ke depan"]}},41966:e=>{e.exports={en:["bring {title} forward"],id_ID:["Bawa {title} ke depan"]}},44676:e=>{e.exports={en:["by TradingView"],id_ID:["oleh TradingView"]}},58850:e=>{e.exports={en:["date range lock"],id_ID:["kunci rentang tanggal"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],id_ID:["Keluarkan alat garis dari kelompok {group}"]}},13017:e=>{e.exports={en:["hide {title}"],id_ID:["sembunyikan {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],id_ID:["Sembunyikan Tanda-Tanda pada Bar"]}},56558:e=>{e.exports={en:["interval lock"],id_ID:["pengunci interval"]}},6830:e=>{e.exports={en:["invert scale"],id_ID:["Inversikan Skala"]}},48818:e=>{e.exports={en:["insert {title}"],id_ID:["masukkan {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],id_ID:["masukkan {title} setelah {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],id_ID:["Masukkan {title} setelah {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],id_ID:["Masukkan {title} sebelum {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],id_ID:["Masukkan {title} sebelum {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],id_ID:["memuat template gambar default"]}},62011:e=>{e.exports={en:["loading..."],id_ID:["memuat..."]}},76104:e=>{e.exports={en:["lock {title}"],id_ID:["Kunci {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],id_ID:["Kunci kelompok {group}"]}},18942:e=>{e.exports={en:["lock objects"],id_ID:["kunci objek"]}},98277:e=>{e.exports={en:["move"],id_ID:["pindah"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],id_ID:["Pindahkan {title} ke Skala Kiri Baru"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],id_ID:["pindahkan {title} ke skala kanan yang baru"]}},64077:e=>{e.exports={en:["move all scales to left"],id_ID:["Pindahkan Seluruh Skala ke Kiri"]}},19013:e=>{e.exports={en:["move all scales to right"],id_ID:["Pindahkan Seluruh Skala ke Kanan"]}},52510:e=>{e.exports={en:["move drawing(s)"],id_ID:["Pindahkan Gambar"]}},79209:e=>{e.exports={en:["move left"],id_ID:["Pindahkan ke kiri"]}},60114:e=>{e.exports={en:["move right"],id_ID:["Pindahkan ke kanan"]}},44854:e=>{e.exports={en:["move scale"],id_ID:["Pindahkan skala"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],id_ID:["Jadikan {title} tanpa skala (Layar Penuh)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],id_ID:["Jadikan kelompok {group} tidak terlihat"]}},45987:e=>{e.exports={en:["make group {group} visible"],id_ID:["Jadikan kelompok {group} terlihat"]}},78055:e=>{e.exports={en:["merge down"],id_ID:["gabungkan ke bawah"]}},41866:e=>{e.exports={en:["merge to pane"],id_ID:["gabungkan ke panel"]}},52458:e=>{e.exports={en:["merge up"],id_ID:["gabungkan ke atas"]}},90091:e=>{e.exports={
|
||||
en:["n/a"],id_ID:["Tidak Tersedia"]}},94981:e=>{e.exports={en:["scale price"],id_ID:["skala harga"]}},63796:e=>{e.exports={en:["scale price chart only"],id_ID:["Skalakan Chart Harga Saja"]}},70771:e=>{e.exports={en:["scale time"],id_ID:["skala waktu"]}},42070:e=>{e.exports={en:["scroll"],id_ID:["gulir"]}},87840:e=>{e.exports={en:["scroll time"],id_ID:["gulirkan waktu"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],id_ID:["atur skala harga strategi yang dipilih ke {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],id_ID:["Kirim {title} kebelakang"]}},5005:e=>{e.exports={en:["send {title} to back"],id_ID:["kirim {title} ke belakang"]}},69546:e=>{e.exports={en:["send group {title} backward"],id_ID:["bawa mundur {title} grup"]}},63934:e=>{e.exports={en:["share line tools globally"],id_ID:["Bagikan peralatan garis secara global"]}},90221:e=>{e.exports={en:["share line tools in layout"],id_ID:["Bagikan peralatan garis pada layout"]}},13336:e=>{e.exports={en:["show all ideas"],id_ID:["tampilkan seluruh ide"]}},91395:e=>{e.exports={en:["show ideas of followed users"],id_ID:["tampilkan ide dari pengguna yang diikuti"]}},57460:e=>{e.exports={en:["show my ideas only"],id_ID:["tampilkan ide saya saja"]}},4114:e=>{e.exports={en:["stay in drawing mode"],id_ID:["Tetap dalam mode menggambar"]}},3350:e=>{e.exports={en:["stop syncing drawing"],id_ID:["hentikan sinkronisasi gambar"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],id_ID:["hentikan sinkronisasi peralatan menggaris"]}},53278:e=>{e.exports={en:["symbol lock"],id_ID:["pengunci simbol"]}},91677:e=>{e.exports={en:["sync time"],id_ID:["waktu sinkronisasi"]}},3140:e=>{e.exports={en:["powered by"],id_ID:["diberdayakan oleh"]}},92800:e=>{e.exports={en:["powered by TradingView"],id_ID:["diberdayakan oleh TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],id_ID:["paste gambar"]}},1064:e=>{e.exports={en:["paste indicator"],id_ID:["paste indikator"]}},57010:e=>{e.exports={en:["paste {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],id_ID:["Pin ke skala kiri"]}},7495:e=>{e.exports={en:["pin to right scale"],id_ID:["Pin ke Skala Kanan"]}},81566:e=>{e.exports={en:["pin to scale {label}"],id_ID:["Pin ke Skala {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],id_ID:["atur ulang pane"]}},60806:e=>{e.exports={en:["remove all indicators"],id_ID:["Hapus seluruh Indikator"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],id_ID:["Hapus seluruh indikator dan peralatan gambar"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],id_ID:["hapus alat garis kosong yang tidak dipilih"]}},30538:e=>{e.exports={en:["remove drawings"],id_ID:["Hilangkan Gambar"]}},1193:e=>{e.exports={en:["remove drawings group"],id_ID:["lepaskan kelompok gambar"]}},38199:e=>{e.exports={en:["remove line data sources"],id_ID:["hapus garis sumber data"]}},93333:e=>{e.exports={en:["remove pane"],id_ID:["lepaskan panel"]}},94543:e=>{e.exports={en:["remove {title}"],
|
||||
id_ID:["lepaskan {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],id_ID:["Hilangkan kelompok alat garis {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],id_ID:["Ubah nama kelompok {group} menjadi {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],id_ID:["atur ulang ukuran layout"]}},3323:e=>{e.exports={en:["reset scales"],id_ID:["atur ulang skala"]}},17336:e=>{e.exports={en:["reset time scale"],id_ID:["Reset Skala Waktu"]}},47418:e=>{e.exports={en:["resize layout"],id_ID:["ubah ukuran layout"]}},85815:e=>{e.exports={en:["restore defaults"],id_ID:["kembali ke bawaan"]}},96881:e=>{e.exports={en:["restore study defaults"],id_ID:["Pulihkan studi ke bawaan"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],id_ID:["alihkan status panel yang dimaksimalkan"]}},42240:e=>{e.exports={en:["toggle auto scale"],id_ID:["toggle skala otomatis"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],id_ID:["ubah status panel yang tertutup"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],id_ID:["toggle skala diindeks ke 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],id_ID:["toggle pengunci skala"]}},49403:e=>{e.exports={en:["toggle log scale"],id_ID:["toggle skala Log"]}},98994:e=>{e.exports={en:["toggle percentage scale"],id_ID:["toggle skala persentase"]}},80688:e=>{e.exports={en:["toggle regular scale"],id_ID:["toggle skala reguler"]}},46807:e=>{e.exports={en:["track time"],id_ID:["waktu pelacakan"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],id_ID:["matikan pembagian peralatan garis"]}},99234:e=>{e.exports={en:["unanchor objects"],id_ID:["lepaskan jangkar objek"]}},23230:e=>{e.exports={en:["unlock objects"],id_ID:["buka kunci objek"]}},74590:e=>{e.exports={en:["unlock group {group}"],id_ID:["Buka kunci kelompok {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],id_ID:["Buka kunci {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],id_ID:["pisahkan ke panel bawah yang baru"]}},79443:e=>{e.exports={en:["unmerge up"],id_ID:["pisahkan ke atas"]}},46453:e=>{e.exports={en:["unmerge down"],id_ID:["pisahkan ke bawah"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],id_ID:["Oh tidak! Jenis chart {chartStyle} saat ini tidak tersedia untuk interval berbasis tick."]}},41643:e=>{e.exports={en:["{count} bars"],id_ID:["{count} bar"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],id_ID:["{symbol} finansial oleh TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],id_ID:["{userName} dipublikasikan pada {customer}, {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],id_ID:["perbesar"]}},73638:e=>{e.exports={en:["zoom out"],id_ID:["perkecil"]}},41807:e=>{e.exports={en:["day","days"],id_ID:["hari"]}},42328:e=>{e.exports={en:["hour","hours"],id_ID:["jam"]}},98393:e=>{e.exports={en:["month","months"],id_ID:["bulan"]}},78318:e=>{e.exports={en:["minute","minutes"],id_ID:["menit"]}},33232:e=>{
|
||||
e.exports={en:["second","seconds"],id_ID:["detik"]}},89937:e=>{e.exports={en:["range","ranges"],id_ID:["rentang"]}},48898:e=>{e.exports={en:["week","weeks"],id_ID:["minggu"]}},11913:e=>{e.exports={en:["tick","ticks"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],id_ID:["{amount} gambar"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],id_ID:["{amount} indikator"]}},58590:e=>{e.exports={en:["{count}m","{count}m"],id_ID:["{count} bulan"]}},47801:e=>{e.exports={en:["{count}d","{count}d"],id_ID:["{count} hari"]}},46766:e=>{e.exports={en:["{count}y","{count}y"],id_ID:["{count} tahun"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"],id_ID:["ETF Departemen Keuangan AS Jangka Pendek Schwab"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"],id_ID:["Saham 0-5 TAHUN ETF Obligasi Perusahan Dengan Hasil Tinggi"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],id_ID:["Indeks S&P/ASX Seluruh Australia 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],id_ID:["Indeks S&P/ASX Seluruh Australia 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],id_ID:["Indeks S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],id_ID:["Dollar Australia/Dollar Kanada"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],id_ID:["Dollar Australia / Franc Swiss"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],id_ID:["Dollar Australia / Yen Jepang"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],id_ID:["Dollar Australia / Dollar New Zealand"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],id_ID:["Dollar Australia / Ruble Rusia"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],id_ID:["Dollar Australia / Dollar AS"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],id_ID:["Indeks S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],id_ID:["Bitcoin Cash / Dollar"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],id_ID:["Indeks BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],id_ID:["Indeks BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],id_ID:["Indeks Bitcoin / Dollar A.S."]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],id_ID:["Indeks IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],id_ID:["Indeks Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],id_ID:["Indeks IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={
|
||||
en:["Brazil 50 Index"],id_ID:["Indeks Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"],id_ID:["Perusahaan Ford Motor"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],id_ID:["Indeks S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],id_ID:["Real Brazil / Yen Jepang"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],id_ID:["Indeks S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],id_ID:["Bitcoin/Real Brazil"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],id_ID:["Bitcoin / Dollar Kanada"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],id_ID:["Bitcoin / Yuan Cina"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],id_ID:["Bitcoin/Pound Inggris"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],id_ID:["Bitcoin/Yen Jepang"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],id_ID:["Bitcoin / Won Korea Selatan"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],id_ID:["Bitcoin/Zloty Polandia"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],id_ID:["Bitcoin / Ruble Rusia"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],id_ID:["Bitcoin / Baht Thailand"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],id_ID:["Bitcoin / Dollar AS"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],id_ID:["Emas Bitcoin / Dollar A.S."]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"],id_ID:["Indeks Umum S&P / BVL Peru (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],id_ID:["Index Bovespa Brazil"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],id_ID:["Dollar Kanada / Yen Jepang"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],id_ID:["Dollar Kanada / Dollar AS"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],id_ID:["Indeks S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],id_ID:["Indeks Volatilitas S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],id_ID:["Kontrak Berjangka T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],id_ID:["Kontrak Berjangka Jagung"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],id_ID:["Kontrak Berjangka Makanan Kedelai"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],id_ID:["Kontrak Berjangka T-Note 10 Tahun"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],id_ID:["Kontrak Berjangka Oat"]},e.exports["#CBOT:ZQ1!-symbol-description"]={
|
||||
en:["30 Day Federal Funds Interest Rate Futures"],id_ID:["Kontrak Berjangka Suku Bunga Dana Federal 30 Hari"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],id_ID:["Kontrak Berjangka Beras"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],id_ID:["Kontrak Berjangka Kedelai"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],id_ID:["Kontrak Berjangka Gandum"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],id_ID:["Kontrak Berjangka Mini Kedelai"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],id_ID:["Kontrak Berjangka Gandum"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],id_ID:["Kontrak Berjangka E-MINI DOW JONES ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],id_ID:["Franc Swiss / Yen Jepang"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],id_ID:["Franc Swiss / Dollar AS"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],id_ID:["Kontrak Berjangka Bitcoin CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],id_ID:["Kontrak Berjangka Mentega-Kas (Berlanjut: Kontrak saat ini didepan)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],id_ID:["Kontrak Berjangka Pengumpan Ternak"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],id_ID:["Kontrak Berjangka Daging Babi"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],id_ID:["Kontrak Berjangka Ternak Hidup"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],id_ID:["Kontrak Berjangka E-mini Euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],id_ID:["Kontrak Berjangka E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],id_ID:["Kontrak Berjangka E-mini Yen Jepang"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],id_ID:["Kontrak Berjangka NASDAQ 100 E-MINI"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],id_ID:["Indeks Kontrak Berjangka E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],id_ID:["Kontrak Berjangka Aluminium Premium Eropa"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],id_ID:["Kontrak Berjangka Aluminum MW U.S Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],id_ID:["Kontrak Berjangka Emas"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],id_ID:["Kontrak Berjangka Tembaga"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],id_ID:["Kontrak Berjangka Perak"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],id_ID:["Kontrak Berjangka Tembaga E-mini"]},
|
||||
e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],id_ID:["Kontrak Berjangka Perak (Mini)"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],id_ID:["Kontrak Berjangka Emas (mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],id_ID:["CFD pada Tembaga"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],id_ID:["CFD pada Jagung"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],id_ID:["CFD pada Kapas"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],id_ID:["Total Cap Pasar Crypto, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],id_ID:["Indeks DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],id_ID:["Indeks Rata-Rata Komposit Dow Jones"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],id_ID:["Indeks Komoditas Dow Jones Komponen Terbatas Pertanian"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],id_ID:["Indeks Komoditas Dow Jones Kokoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],id_ID:["Indeks Komoditas Dow Jones Energi"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],id_ID:["Indeks Komoditas Dow Jones Emas"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],id_ID:["Indeks Komoditas Dow Jones Gandum"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],id_ID:["Indeks Komoditas Dow Jones Nikel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],id_ID:["Indeks Komoditas Dow Jones Kopi"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],id_ID:["Indeks Komoditas Dow Jones Gula"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],id_ID:["Indeks Komoditas Dow Jones Perak"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-Rata Industri Dow Jones"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],id_ID:["Indeks Rata-Rata Transportasi Dow Jones"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],id_ID:["Indeks Utilitas Rata-RataDow Jones"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],id_ID:["Indeks Batu Bara Dow Jones A.S"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],id_ID:["Indeks EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"],id_ID:["Ethereum Klasik / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],id_ID:["Ethereum Klasik / Dollar"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},
|
||||
e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],id_ID:["Ethereum / Pound Inggris"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],id_ID:["Ethereum / Yen Jepang"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],id_ID:["Ethereum / Won Korea Selatan"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],id_ID:["Ethereum / Baht Thailand"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],id_ID:["Ethereum / Dollar"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"],id_ID:["Bund Euro"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],id_ID:["Euro / Dollar Australia"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],id_ID:["Euro / Real Brazil"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],id_ID:["Euro / Dollar Kanada"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],id_ID:["Euro / Franc Swiss"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],id_ID:["Euro / Pound Inggris"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],id_ID:["Euro / Yen Jepang"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],id_ID:["Euro / Krone Norwegia"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],id_ID:["Euro / Dollar New Zealand"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],id_ID:["Indeks AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],id_ID:["Indeks BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],id_ID:["Indeks CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],id_ID:["Euro / Ruble Rusia"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],id_ID:["Euro /Ruble TOM Rusia"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],id_ID:["Euro / Krona Swedia"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],id_ID:["Euro / Lira Turki"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],id_ID:["Euro / Dollar AS"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],id_ID:["Indeks Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"],id_ID:["Cap Kecil AS 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],id_ID:["Indeks CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],id_ID:["Produk Domestik Bruto, 1 Desimal"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],id_ID:["Total Populasi. Seluruh Usia Termasuk Pasukan Bersenjata Di Luar Negeri"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],id_ID:["Tingkat Pengangguran Warga Sipil"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],id_ID:["Indeks KLCI FTSE Bursa Malaysia"]
|
||||
},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."],id_ID:["Key Tronic Corр"]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],id_ID:["Indeks S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-Rata Industri Dow Jones"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],id_ID:["Pound Inggris / Dollar Australia"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],id_ID:["Pound Inggris / Dollar Kanada"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],id_ID:["Pound Inggris / Franc Swiss"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],id_ID:["Pound Inggris / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],id_ID:["Pound Inggris / Yen Jepang"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],id_ID:["Pound Inggris / Dollar New Zealand"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],id_ID:["Pound Inggris / Zloty Polandia"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],id_ID:["Pound Inggris / Ruble Rusia"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],id_ID:["Pound Inggris / Dollar AS"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],id_ID:["Indeks DAX"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"],id_ID:["Alphabet Inc (Google) Kelas C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"],id_ID:["Alphabet Inc (Google) Kelas A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],id_ID:["Indeks WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],id_ID:["Indeks Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],id_ID:["Kontrak Berjangka Indeks Dollar A.S."]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],id_ID:["Indeks Harga Saham Gabungan IDX"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],id_ID:["Indeks Perusahaan Cina Hang Seng"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],id_ID:["Indeks Komposit Jakarta"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],id_ID:["Indeks KLCI Bursa Malaysia"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],id_ID:["Indeks MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],id_ID:["Indeks Euro STOXX 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],id_ID:["Indeks STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"],id_ID:["Indeks Terbebani Taiwan"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],id_ID:["Indeks Komposit Shanghai"]},e.exports["#IOTUSD-symbol-description"]={
|
||||
en:["IOTA / U.S. Dollar"],id_ID:["IOTA / Dollar A.S."]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],id_ID:["Indeks Nikkei 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],id_ID:["Yen Jepang / Won Korea Selatan"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],id_ID:["Yen Jepang / Ruble Rusia"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],id_ID:["Yen Jepang / Dollar AS"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],id_ID:["Litecoin / Real Brazil"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],id_ID:["Litecoin / Dollar"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],id_ID:["Luna / Dollar A.S."]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],id_ID:["Kontrak Berjangka Brent Oil"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],id_ID:["Indeks MOEX Rusia"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],id_ID:["Indeks MOEX Rusia"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],id_ID:["Kontrak Berjangka Indeks MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],id_ID:["Kontrak Berjangka Indeks MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],id_ID:["Kontrak Berjangka Indeks RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],id_ID:["Indeks RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"],id_ID:["CFD Cash US 100"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],id_ID:["Indeks Sektor Perumahan PHLX"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan Ishares 7-10 Tahun"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan Ishares 3-7 Tahun"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],id_ID:["Indeks Komposit Nasdaq"]},
|
||||
e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],id_ID:["Indeks 100 Nasdaq"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],id_ID:["Indeks Sektor Layanan Minyak PHLX"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan 1-3 Tahun Ishares"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],id_ID:["Indeks Semikonduktor Philadelphia"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],id_ID:["ETF Obligasi Departemen Keuangan 20+ Tahun Ishares"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],id_ID:["Indeks Sektor Utilitas PHLX"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],id_ID:["Indeks Sektor Emas dan Perak PHLX"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],id_ID:["NEO / Dollar A.S."]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"],id_ID:["Gas Alam (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],id_ID:["Indeks Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],id_ID:["Indeks Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],id_ID:["Kontrak Berjangka Ethanol NY"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],id_ID:["Kontrak Berjangka Kokoa"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],id_ID:["Kontrak Berjangka Minyak Mentah Ringan"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],id_ID:["Kontrak Berjangka Pelabuhan NY ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],id_ID:["Kontrak Berjangka Kopi"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],id_ID:["Kontrak Berjangka Gas Alam"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],id_ID:["Kontrak Berjangka Palladium"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],id_ID:["Kontrak Berjangka Platinum"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],id_ID:["Kontrak Berjangka Bensin RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],id_ID:["Kontrak Berjangka Kapas"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],id_ID:["Kontrak Berjangka Gas Alam E-mini"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],id_ID:["Kontrak Berjangka Minyak Mentah Ringan E-mini"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],id_ID:["Kontrak Berjangka Bensin E-mini"]},
|
||||
e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"],id_ID:["Industri-Industri Elektrik Hawaii"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],id_ID:["Indeks Komposit NYSE"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],id_ID:["Indeks Komposit AMEX"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],id_ID:["Indeks Pasar Mayor NYSE ARCA"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],id_ID:["Dollar New Zealand / Yen Jepang"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],id_ID:["Dollar New Zealand / Dollar AS"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],id_ID:["SELURUH Indeks S&P/NZX (Indeks Kapital)"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],id_ID:["Indeks S&P / NZX 50 Bruto"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],id_ID:["CFD pada Gas Alam"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],id_ID:["Indeks S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],id_ID:["CFD pada Tembaga (US / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],id_ID:["Indeks OMX Copenhagen 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],id_ID:["Indeks OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],id_ID:["Indeks Gross OMX Riga"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],id_ID:["Indeks OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],id_ID:["Indeks Gross OMX Tallinn"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],id_ID:["Indeks Gross OMX Vilnius"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"],id_ID:["Ishares MSCI Jepang SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],id_ID:["Indeks QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],id_ID:["Indeks RTS Rusia"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],id_ID:["Indeks Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],id_ID:["Indeks Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],id_ID:["Indeks Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"],id_ID:["Perusahaan Publik Global Connections"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"],id_ID:["Perusahaan Ford Motor"]},
|
||||
e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],id_ID:["Indeks Pasar Swiss"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],id_ID:["Solana / Dollar A.S."]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],id_ID:["CFD pada Kacang Kedelai"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],id_ID:["Indeks S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],id_ID:["Indeks Komoditas S&P Goldman Sachs"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],id_ID:["Indeks S&P500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],id_ID:["Indeks Nilai S&P 500"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],id_ID:["Indeks S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],id_ID:["CFD pada Gula"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],id_ID:["Indeks Komponen Shenzhen"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],id_ID:["Indeks Seluruh Saham Tadawul"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],id_ID:["Indeks TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],id_ID:["Indeks Komposit S&P/TSX"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],id_ID:["Indeks S&P/TSX"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Australia 10 TH"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Australia Yield 10 TH"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],id_ID:["Indeks Mata Uang Dollar Australia"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],id_ID:["Indeks Mata Uang Pound Inggris"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],id_ID:["Kanada - Obligasi Pemerintah 10 TH"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],id_ID:["Kanada - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],id_ID:["Indeks CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Cina 10 TH"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Cina Yield 10 TH"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],id_ID:["Indeks Mata Uang Dollar Kanada"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Jerman 10 TH"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Jerman Yield 10 TH"]},e.exports["#TVC:DEU30-symbol-description"]={
|
||||
en:["DAX Index"],id_ID:["Indeks DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-rata Industri Dow Jones"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],id_ID:["Indeks Dollar A.S."]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Spanyol 10 TH"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Spanyol Yield 10 TH"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"],id_ID:["Bund Euro"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],id_ID:["Indeks Mata Uang Euro"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Perancis 10 TH"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Perancis Yield 10 TH"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"],id_ID:["Indeks Milano Italia Borsa"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],id_ID:["Obligasi Pemerintah Inggris 2 TH"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Inggris 10 TH"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Inggris Yield 10 TH"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],id_ID:["CFD pada Emas ($AS/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],id_ID:["Indeks Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],id_ID:["Indeks IBEX 35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],id_ID:["Obligasi Pemerintah Indonesia 3 TH"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Indonesia 10 TH"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],id_ID:["Indonesia - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah India 10 TH"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah India Yield 10 TH"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Italia 10 TH"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Italia Yield 10 TH"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],id_ID:["Indeks Komposit US"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Jepang 10 TH"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Jepang Yield 10 TH"]},
|
||||
e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],id_ID:["Indeks Mata Uang Yen Jepang"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],id_ID:["Indeks Harga Saham Komposit Korea"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Korea 10 TH"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Korea Yield 10 TH"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Malaysia 10 TH"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Malaysia Yield 10 TH"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],id_ID:["Indeks US 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],id_ID:["Indeks Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],id_ID:["Belanda - Obligasi Pemerintah 10 TH"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],id_ID:["Belanda - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],id_ID:["Indeks Komposit NYSE"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],id_ID:["New Zealand - Obligasi Pemerintah 10 TH"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],id_ID:["New Zealand - Obligasi Pemerintah Yield 10 TH"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],id_ID:["CFD pada Paladium ($AS/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],id_ID:["Obligasi Pemerintah Polandia Yield 5 TH"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Polandia Yield 10 TH"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],id_ID:["CFD pada Platimun ($AS / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Portugal 10 TH"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Portugis Yield 10 TH"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],id_ID:["Indeks 40 Teratas Afrika Selatan"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],id_ID:["CFD pada Perak ($AS/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],id_ID:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],id_ID:["Indeks Pasar Swiss"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],id_ID:["Indeks Straits Times"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],id_ID:["Indeks STOXX 50"]},e.exports["#TVC:SXY-symbol-description"]={
|
||||
en:["Swiss Franc Currency Index"],id_ID:["Indeks Mata Uang Franc Swiss"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah Turki 10 TH"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah Turki Yield 10 TH"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],id_ID:["CFD pada Minyak Mentah Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],id_ID:["Indeks UK 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],id_ID:["Obligasi Pemerintah AS 2 TH"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],id_ID:["Obligasi Pemerintah A.S Yield 2 TH"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],id_ID:["Obligasi Pemerintah AS 5 TH"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],id_ID:["Obligasi Pemerintah A.S Yield 5 TH"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],id_ID:["Obligasi Pemerintah AS 10 TH"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],id_ID:["Obligasi Pemerintah A.S Yield 10 TH"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],id_ID:["Obligasi Pemerintah AS 30 Th"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],id_ID:["CFD pada Minyak Mentah WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],id_ID:["Indeks Volatilitas S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],id_ID:["Indeks Mata Uang Dollar New Zealand"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"],id_ID:["Indeks Terbebani Taiwan"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],id_ID:["Indeks Saham Terbebani Kapitalisasi Taiwan"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],id_ID:["Indeks FTSE 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],id_ID:["CFD pada Minyak Mentah (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],id_ID:["Uniswap / Dollar A.S."]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],id_ID:["Indeks Rata-Rata Industri Dow Jones"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],id_ID:["Dollar AS / Dollar Australia"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],id_ID:["Dollar A.S. / Real Brazil"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],id_ID:["Dollar A.S. / Dollar Kanada"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],id_ID:["Dollar A.S. / Franc Swiss"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],id_ID:["Dollar A.S. / Yuan Cina"]},
|
||||
e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],id_ID:["Dollar A.S. / Krona Denmark"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],id_ID:["Dollar AS / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],id_ID:["Dollar AS / Pound Sterling"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],id_ID:["Dollar A.S. / Dollar Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],id_ID:["Dollar A.S / Forint Hungaria"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],id_ID:["Dollar A.S. / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],id_ID:["Dollar A.S. / Shekel Israel"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],id_ID:["Dollar A.S. / Rupee India"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],id_ID:["Dollar A.S. / Yen Jepang"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],id_ID:["Dollar A.S. / Won Korea Selatan"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],id_ID:["Dollar A.S. / Peso Meksiko"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],id_ID:["Dollar AS / Dollar New Zealand"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],id_ID:["Dollar A.S. / Peso Filipina"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],id_ID:["USD/PLN"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],id_ID:["Dollar A.S. / Ruble Rusia"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],id_ID:["Dollar A.S. / Ruble TOM Rusia"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],id_ID:["Dollar A.S. / Krona Swedia"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],id_ID:["Dollar A.S. / Dollar Singapura"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],id_ID:["Dollar A.S / Baht Thailand"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],id_ID:["Dollar A.S. / Lira Turki"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],id_ID:["Dollar A.S / Rand Afrika Selatan"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],id_ID:["CFD pada Minyak Mentah (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],id_ID:["CFD pada Gandum"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],id_ID:["Perak / Dollar A.S."]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],id_ID:["Emas / Dollar A.S."]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],id_ID:["Bitcoin / Dollar Kanada"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],id_ID:["Indeks DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],
|
||||
id_ID:["Monero / Dollar A.S."]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],id_ID:["CFD pada Palladium"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],id_ID:["Platinum / Dollar A.S."]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],id_ID:["XRP / Dollar A.S."]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],id_ID:["Zcash / Dollar A.S."]}}}]);
|
||||
@@ -0,0 +1,7 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:a=>{a.exports={en:["bars"],id_ID:["bar"]}},4348:a=>{a.exports={en:["(O + H + L + C)/4"]}},27311:a=>{a.exports={en:["(H + L + C)/3"]}},69303:a=>{a.exports={en:["(H + L)/2"]}},31882:a=>{a.exports={en:["12-hours"],id_ID:["12-jam"]}},5797:a=>{a.exports={en:["24-hours"],id_ID:["24-jam"]}},23111:a=>{a.exports={en:["Color bars based on previous close"],id_ID:["Warnai bar berdasarkan penutupan sebelumnya"]}},23739:a=>{a.exports={en:["Canvas"]}},24197:a=>{a.exports={en:["Center"],id_ID:["Tengah"]}},15153:a=>{a.exports={en:["Chart basic styles"],id_ID:["Chart corak basic"]}},45639:a=>{a.exports={en:["Chart values"],id_ID:["Nilai chart"]}},84831:a=>{a.exports={en:["Close line"],id_ID:["Garis Penutupan"]}},74622:a=>{a.exports={en:["Crosshair"]}},81849:a=>{a.exports={en:["Currency"],id_ID:["Mata Uang"]}},3015:a=>{a.exports={en:["Currency and Unit"],id_ID:["Mata uang dan unit"]}},93020:a=>{a.exports={en:["Adjust data for dividends"],id_ID:["Sesuaikan data untuk dividen"]}},68921:a=>{a.exports={en:["Adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},36620:a=>{a.exports={en:["Alerts"],id_ID:["Peringatan"]}},14119:a=>{a.exports={en:["Arguments"],id_ID:["Argumen"]}},68650:a=>{a.exports={en:["Average close"],id_ID:["Rata-rata penutupan"]}},27567:a=>{a.exports={en:["Bottom"],id_ID:["Dasar"]}},3159:a=>{a.exports={en:["Bottom line"],id_ID:["Garis Dasar"]}},74406:a=>{a.exports={en:["Body"],id_ID:["Badan"]}},333:a=>{a.exports={en:["Borders"],id_ID:["Batas-Batas"]}},79468:a=>{a.exports={en:["Background"],id_ID:["Latar"]}},10842:a=>{a.exports={en:["Bar change values"],id_ID:["Nilai Perubahan Bar"]}},28975:a=>{a.exports={en:["Base level"],id_ID:["Level Dasar"]}},76473:a=>{a.exports={en:["Bid and ask"],id_ID:["Bid dan Ask"]}},32744:a=>{a.exports={en:["Buttons"],id_ID:["Tombol-tombol"]}},68662:a=>{a.exports={en:["Grid lines"],id_ID:["Garis grid"]}},17611:a=>{a.exports={en:["Down bars"],id_ID:["Bar turun"]}},23743:a=>{a.exports={en:["Down color"],id_ID:["Warna Turun"]}},48225:a=>{a.exports={en:["Data modification"],id_ID:["Modifikasi data"]}},84838:a=>{a.exports={en:["Date format"],id_ID:["Format Tanggal"]}},42357:a=>{a.exports={en:["Day of week on labels"],id_ID:["Hari dalam seminggu pada label"]}},16564:a=>{a.exports={en:["Default"],id_ID:["Bawaan"]}},78734:a=>{a.exports={en:["Description"],id_ID:["Deskripsi"]}},89212:a=>{a.exports={en:["Display inactivity gaps on intraday"]}},59777:a=>{a.exports={en:["Electronic trading hours background"],id_ID:["Latar belakang jam trading elektronik"]}},69808:a=>{a.exports={en:["Events"],id_ID:["Peristiwa"]}},41129:a=>{a.exports={en:["Fill"],id_ID:["Mengisi"]}},61112:a=>{a.exports={en:["Fill top area"],id_ID:["Isi area atas"]}},73185:a=>{a.exports={en:["Fill bottom area"],id_ID:["Isi Area Dasar"]}},95406:a=>{a.exports={en:["Horizontal"]}},61900:a=>{a.exports={en:["Horz only"],id_ID:["Hanya horizontal"]}},14180:a=>{a.exports={en:["High and low"],id_ID:["Tertinggi dan terendah"]}},56359:a=>{
|
||||
a.exports={en:["High line"],id_ID:["Garis High"]}},47326:a=>{a.exports={en:["Integer"],id_ID:["Bilangan bulat"]}},84549:a=>{a.exports={en:["Indicators"],id_ID:["Indikator"]}},78082:a=>{a.exports={en:["Indicators and financials"],id_ID:["Indikator dan finansial"]}},25765:a=>{a.exports={en:["Open market status"],id_ID:["Tampilkan status pasar Buka"]}},34579:a=>{a.exports={en:["Low line"],id_ID:["Garis Low"]}},14876:a=>{a.exports={en:["Logo"]}},89315:a=>{a.exports={en:["Long Description"],id_ID:["Deskripsi Panjang"]}},72423:a=>{a.exports={en:["Last day change values"],id_ID:["Nilai perubahan hari terakhir"]}},11626:a=>{a.exports={en:["Left"],id_ID:["Kiri"]}},8249:a=>{a.exports={en:["Money"],id_ID:["Uang"]}},70937:a=>{a.exports={en:["Margins"],id_ID:["Marjin"]}},68833:a=>{a.exports={en:["Middle"],id_ID:["Tengah"]}},58589:a=>{a.exports={en:["No overlapping labels"],id_ID:["Label Tertumpuk Tidak Diperbolehkan"]}},60798:a=>{a.exports={en:["None"],id_ID:["Tidak satu pun"]}},51019:a=>{a.exports={en:["Navigation"],id_ID:["Navigasi"]}},99709:a=>{a.exports={en:["Name"],id_ID:["Nama"]}},8852:a=>{a.exports={en:["Save chart left edge position when changing interval"],id_ID:["Simpan posisi tepi kiri chart saat mengubah interval"]}},26204:a=>{a.exports={en:["Scale modes (A and L)"],id_ID:["Mode skala (A dan L)"]}},93968:a=>{a.exports={en:["Scales"],id_ID:["Skala"]}},90275:a=>{a.exports={en:["Scales and lines"],id_ID:["Skala dan garis"]}},30042:a=>{a.exports={en:["Scales placement"],id_ID:["Penempatan Skala"]}},28715:a=>{a.exports={en:["Status line"],id_ID:["Baris status"]}},95481:a=>{a.exports={en:["Symbol"],id_ID:["Simbol"]}},53263:a=>{a.exports={en:["Pane"],id_ID:["Panel"]}},82894:a=>{a.exports={en:["Pane separators"],id_ID:["Pemisah panel"]}},16207:a=>{a.exports={en:["Percentage"],id_ID:["Persentase"]}},94408:a=>{a.exports={en:["Pips"],id_ID:["Pip"]}},60904:a=>{a.exports={en:["Pre/post market"],id_ID:["Pra/Pasca pasar"]}},88327:a=>{a.exports={en:["Pre/post market hours background"],id_ID:["Latar jam pra/pasca pasar"]}},59766:a=>{a.exports={en:["Precision"],id_ID:["Presisi"]}},83811:a=>{a.exports={en:["Previous day close"],id_ID:["Penutupan hari sebelumnya"]}},35082:a=>{a.exports={en:["Price Scale"],id_ID:["Skala Harga"]}},27632:a=>{a.exports={en:["Price and percentage value"],id_ID:["Nilai Harga dan Persentase"]}},62142:a=>{a.exports={en:["Price labels & lines"],id_ID:["Label harga & garis"]}},84684:a=>{a.exports={en:["Price source"],id_ID:["Sumber Harga"]}},73466:a=>{a.exports={en:["Projection up bars"],id_ID:["Proyeksi bar naik"]}},77430:a=>{a.exports={en:["Projection candles"],id_ID:["Bar proyeksi"]}},88367:a=>{a.exports={en:["Projection down bars"],id_ID:["Proyeksi bar turun"]}},6160:a=>{a.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],id_ID:["Harga sebenarnya pada skala harga (bukan harga Heikin-Ashi)"]}},50421:a=>{a.exports={en:["Right"],id_ID:["Kanan"]}},62532:a=>{a.exports={en:["Right Margin"],id_ID:["Margin Kanan"]}},41571:a=>{a.exports={en:["Watermark"],id_ID:["Tanda air"]}},32163:a=>{
|
||||
a.exports={en:["Wick"],id_ID:["Sumbu"]}},97118:a=>{a.exports={en:["Top"],id_ID:["Teratas"]}},89349:a=>{a.exports={en:["Top line"],id_ID:["Garis Atas"]}},70320:a=>{a.exports={en:["Text"],id_ID:["Teks"]}},25485:a=>{a.exports={en:["Text alignment"],id_ID:["Perataan teks"]}},67781:a=>{a.exports={en:["Text orientation"],id_ID:["Orientasi teks"]}},20215:a=>{a.exports={en:["Thin bars"],id_ID:["Bar-Bar Tipis"]}},70198:a=>{a.exports={en:["Title"],id_ID:["Judul"]}},29854:a=>{a.exports={en:["Titles"],id_ID:["Judul"]}},5791:a=>{a.exports={en:["Ticker"]}},16816:a=>{a.exports={en:["Ticker and description"],id_ID:["Ticker dan deskripsi"]}},24821:a=>{a.exports={en:["Ticks"],id_ID:["Tick"]}},93965:a=>{a.exports={en:["Time Scale"],id_ID:["Skala waktu"]}},5591:a=>{a.exports={en:["Time hours format"],id_ID:["Format waktu jam"]}},77073:a=>{a.exports={en:["Timezone"],id_ID:["Zona waktu"]}},76495:a=>{a.exports={en:["Trading"]}},33564:a=>{a.exports={en:["Unit"]}},23091:a=>{a.exports={en:["Up color"],id_ID:["Warna Naik"]}},36957:a=>{a.exports={en:["Up bars"],id_ID:["Bar naik"]}},49545:a=>{a.exports={en:["Use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},37644:a=>{a.exports={en:["Volume"]}},51514:a=>{a.exports={en:["Value"],id_ID:["Nilai"]}},31218:a=>{a.exports={en:["Value according to scale"],id_ID:["Nilai menurut Skala"]}},60092:a=>{a.exports={en:["Values"],id_ID:["Nilai"]}},83594:a=>{a.exports={en:["Vert and horz"],id_ID:["Vertikal dan horizontal"]}},8402:a=>{a.exports={en:["Vert only"],id_ID:["Hanya vertikal"]}},69526:a=>{a.exports={en:["Vertical"]}},21105:a=>{a.exports={en:["candle"]}},27068:a=>{a.exports={en:["change HLC bars"],id_ID:["ubah bar HLC"]}},21201:a=>{a.exports={en:["change HLC bars color"]}},3311:a=>{a.exports={en:["change navigation buttons visibility"],id_ID:["ubah visibilitas tombol navigasi"]}},96227:a=>{a.exports={en:["change open market status visibility"],id_ID:["ubah visibilitas status market yang terbuka"]}},43231:a=>{a.exports={en:["change average close price line width"],id_ID:["ubah lebar garis harga rata-rata penutupan"]}},47026:a=>{a.exports={en:["change average close price line color"],id_ID:["ubah warna garis harga rata-rata penutupan"]}},86866:a=>{a.exports={en:["change area fill color"],id_ID:["ubah isian warna area"]}},89346:a=>{a.exports={en:["change area line width"],id_ID:["ubah lebar area garis"]}},29605:a=>{a.exports={en:["change area line color"],id_ID:["ubah warna area garis"]}},4640:a=>{a.exports={en:["change area price source"],id_ID:["ubah sumber area harga"]}},98407:a=>{a.exports={en:["change ask line color"],id_ID:["ubah warna garis harga ask"]}},42190:a=>{a.exports={en:["change base level"],id_ID:["ubah level dasar"]}},71785:a=>{a.exports={en:["change baseline bottom line color"],id_ID:["ubah warna garis dasar bawah"]}},56175:a=>{a.exports={en:["change baseline bottom line width"],id_ID:["ubah lebar garis dasar bawah"]}},97216:a=>{a.exports={en:["change baseline fill bottom area color"],
|
||||
id_ID:["ubah isian warna area bawah dari garis dasar"]}},92873:a=>{a.exports={en:["change baseline fill top area color"],id_ID:["ubah isian warna area atas dari garis dasar"]}},68609:a=>{a.exports={en:["change baseline price source"],id_ID:["ubah sumber garis dasar harga"]}},69044:a=>{a.exports={en:["change baseline top line color"],id_ID:["ubah warna garis dasar atas"]}},68197:a=>{a.exports={en:["change baseline top line width"],id_ID:["ubah lebar garis dasar atas"]}},33464:a=>{a.exports={en:["change bar up color"],id_ID:["ubah warna bar naik"]}},27426:a=>{a.exports={en:["change bar change visibility"],id_ID:["ubah visibilitas perubahan bar"]}},59622:a=>{a.exports={en:["change bar down color"],id_ID:["ubah warna bar turun"]}},17919:a=>{a.exports={en:["change bid line color"],id_ID:["ubah warna garis harga bid"]}},32094:a=>{a.exports={en:["change bottom margin"],id_ID:["ubah margin bawah"]}},63119:a=>{a.exports={en:["change currency and unit labels visibility"],id_ID:["ubah visibilitas label mata uang dan unit"]}},64003:a=>{a.exports={en:["change currency label visibility"],id_ID:["ubah visibilitas label mata uang"]}},42803:a=>{a.exports={en:["change chart background color"],id_ID:["ubah warna latar belakang chart"]}},41382:a=>{a.exports={en:["change chart background type"],id_ID:["ubah tipe latar belakang chart"]}},79637:a=>{a.exports={en:["change chart values visibility"],id_ID:["Ubah visibilitas nilai chart"]}},43090:a=>{a.exports={en:["change color bars based on previous close"],id_ID:["ubah warna bar berdasarkan penutupan sebelumnya"]}},88324:a=>{a.exports={en:["change column up color"],id_ID:["ubah warna kolom atas"]}},93890:a=>{a.exports={en:["change column down color"],id_ID:["ubah warna kolom bawah"]}},4727:a=>{a.exports={en:["change column price source"],id_ID:["ubah sumber kolom harga"]}},50544:a=>{a.exports={en:["change crosshair width"],id_ID:["ubah lebar crosshair"]}},92885:a=>{a.exports={en:["change crosshair color"],id_ID:["ubah warna crosshair"]}},68418:a=>{a.exports={en:["change crosshair style"],id_ID:["ubah corak crosshair"]}},43109:a=>{a.exports={en:["change date format"],id_ID:["ubah format tanggal"]}},30418:a=>{a.exports={en:["change day of week on labels"],id_ID:["ubah hari dalam seminggu pada label"]}},82063:a=>{a.exports={en:["change decimal places"],id_ID:["ubah jumlah desimal"]}},44223:a=>{a.exports={en:["change extended hours color"],id_ID:["ubah warna perpanjangan jam"]}},47393:a=>{a.exports={en:["change electronic trading hours"],id_ID:["Ubah jam trading elektronik"]}},73844:a=>{a.exports={en:["change grid lines visibility"],id_ID:["ubah visibilitas garis grid"]}},61407:a=>{a.exports={en:["change high and low price line color"],id_ID:["ubah warna garis harga tertinggi dan terendah"]}},39581:a=>{a.exports={en:["change high and low price line width"],id_ID:["ubah lebar garis harga tertinggi dan terendah"]}},6026:a=>{a.exports={en:["change high-low body color"],id_ID:["ubah warna badan tertinggi-terendah"]}},73021:a=>{a.exports={en:["change high-low body visibility"],
|
||||
id_ID:["ubah visibilitas badan tertinggi-terendah"]}},46844:a=>{a.exports={en:["change high-low border color"],id_ID:["ubah warna batas tertinggi-terendah"]}},15801:a=>{a.exports={en:["change high-low borders visibility"],id_ID:["ubah visibilitas batas tertinggi-terendah"]}},72399:a=>{a.exports={en:["change high-low labels visibility"],id_ID:["ubah visibilitas label tertinggi-terendah"]}},56961:a=>{a.exports={en:["change high-low labels color"],id_ID:["ubah warna label tertinggi-terendah"]}},21133:a=>{a.exports={en:["change horz grid lines color"],id_ID:["ubah warna garis grid horizontal"]}},63050:a=>{a.exports={en:["change indicator titles visibility"],id_ID:["ubah visibilitas judul indikator"]}},49583:a=>{a.exports={en:["change indicator values visibility"],id_ID:["ubah visibilitas nilai indikator"]}},78310:a=>{a.exports={en:["change indicator arguments visibility"],id_ID:["ubah visibilitas argumen indikator"]}},35111:a=>{a.exports={en:["change indicators and financials name labels visibility"],id_ID:["ubah visibilitas label nama indikator dan finansial"]}},71161:a=>{a.exports={en:["change indicators and financials value labels visibility"],id_ID:["ubah visibilitas label nilai indikator dan finansial"]}},66307:a=>{a.exports={en:["change last day change visibility"],id_ID:["ubah visibilitas perubahan hari terakhir"]}},91873:a=>{a.exports={en:["change legend background transparency"],id_ID:["ubah transparansi latar belakang legenda"]}},14246:a=>{a.exports={en:["change legend background visibility"],id_ID:["ubah visibilitas latar belakang legenda"]}},88640:a=>{a.exports={en:["change line color"],id_ID:["ubah warna garis"]}},41837:a=>{a.exports={en:["change line price source"],id_ID:["ubah sumber garis harga"]}},48339:a=>{a.exports={en:["change line width"],id_ID:["ubah lebar garis"]}},18378:a=>{a.exports={en:["change pane buttons visibility"],id_ID:["ubah visibilitas tombol pane"]}},52203:a=>{a.exports={en:["change pane separators color"],id_ID:["Ubah warna pemisah panel"]}},38730:a=>{a.exports={en:["change post market color"],id_ID:["ubah warna pasca pasar"]}},28075:a=>{a.exports={en:["change post market line color"],id_ID:["ubah warna garis pasca pasar"]}},91978:a=>{a.exports={en:["change pre/post market price lines visibility"],id_ID:["Ubah visibilitas harga pra/pasca pasar"]}},44371:a=>{a.exports={en:["change pre market color"],id_ID:["ubah warna pra pasar"]}},96114:a=>{a.exports={en:["change pre market line color"],id_ID:["ubah warna garis pra pasar"]}},69814:a=>{a.exports={en:["change previous close price line color"],id_ID:["ubah warna garis harga penutupan sebelumnya"]}},13660:a=>{a.exports={en:["change previous close price line width"],id_ID:["ubah lebar garis harga penutupan sebelumnya"]}},87861:a=>{a.exports={en:["change price line color"],id_ID:["ubah warna garis harga"]}},29353:a=>{a.exports={en:["change price line width"],id_ID:["ubah lebar garis harga"]}},16241:a=>{a.exports={en:["change range bars style"],id_ID:["Ubah corak bar rentang"]}},65821:a=>{a.exports={en:["change range thin bars"],
|
||||
id_ID:["ubah rentang bar tipis"]}},75487:a=>{a.exports={en:["change renko wick down color"],id_ID:["ubah warna sumbu bawah renko"]}},92277:a=>{a.exports={en:["change renko wick up color"],id_ID:["ubah warna sumbu atas renko"]}},79604:a=>{a.exports={en:["change renko wick visibility"],id_ID:["ubah visibilitas sumbu renko"]}},82946:a=>{a.exports={en:["change right margin"],id_ID:["ubah margin kanan"]}},79545:a=>{a.exports={en:["change right margin percentage"],id_ID:["ubah persentase margin kanan"]}},78995:a=>{a.exports={en:["change symbol watermark color"],id_ID:["ubah warna watermark simbol"]}},73227:a=>{a.exports={en:["change symbol watermark visibility"],id_ID:["ubah visibilitas watermark simbol"]}},88167:a=>{a.exports={en:["change symbol description visibility"],id_ID:["ubah visibilitas deskripsi simbol"]}},12050:a=>{a.exports={en:["change symbol field visibility"],id_ID:["ubah visibilitas bidang simbol"]}},46066:a=>{a.exports={en:["change symbol last value mode"],id_ID:["ubah mode nilai terakhir simbol"]}},902:a=>{a.exports={en:["change symbol legend format"],id_ID:["ubah format legenda simbol"]}},77408:a=>{a.exports={en:["change save chart left edge position when changing interval"],id_ID:["ubah simpan posisi tepi kiri chart saat mengubah interval"]}},69023:a=>{a.exports={en:["change scale modes buttons visibility"],id_ID:["Ubah visibilitas tombol mode skala"]}},76131:a=>{a.exports={en:["change scales text color"],id_ID:["ubah warna skala teks"]}},27792:a=>{a.exports={en:["change scales font size"],id_ID:["ubah ukuran font skala"]}},94997:a=>{a.exports={en:["change scales lines color"],id_ID:["ubah warna garis skala"]}},60067:a=>{a.exports={en:["change sessions breaks visibility"],id_ID:["ubah visibilitas jeda sesi"]}},28175:a=>{a.exports={en:["change sessions breaks width"],id_ID:["ubah lebar jeda sesi"]}},33895:a=>{a.exports={en:["change sessions breaks color"],id_ID:["ubah warna jeda sesi"]}},21641:a=>{a.exports={en:["change sessions breaks style"],id_ID:["ubah corak jeda sesi"]}},16660:a=>{a.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],id_ID:["ubah tampilan dari harga sebenarnya pada skala harga (bukan harga Heiken-Ashi)"]}},60834:a=>{a.exports={en:["change thin bars"],id_ID:["ubah bar tipis"]}},39754:a=>{a.exports={en:["change time hours format"],id_ID:["Ubah format waktu jam"]}},74883:a=>{a.exports={en:["change top margin"],id_ID:["ubah margin atas"]}},51250:a=>{a.exports={en:["change unit label visibility"],id_ID:["ubah visibilitas label unit"]}},71805:a=>{a.exports={en:["change vert grid lines color"],id_ID:["ubah warna garis grid vertikal"]}},96201:a=>{a.exports={en:["change volume values visibility"],id_ID:["ubah visibilitas nilai volume"]}},17214:a=>{a.exports={en:["change {candleType} up border color"],id_ID:["ubah warna batas {candleType} naik"]}},36697:a=>{a.exports={en:["change {candleType} up color"],id_ID:["ubah warna {candleType} naik"]}},48091:a=>{a.exports={en:["change {candleType} wick down color"],
|
||||
id_ID:["ubah warna sumbu {candleType} turun"]}},47664:a=>{a.exports={en:["change {candleType} wick up color"],id_ID:["ubah warna sumbu {candleType} naik"]}},94750:a=>{a.exports={en:["change {candleType} wick visibility"],id_ID:["ubah visibilitas sumbu {candleType}"]}},60608:a=>{a.exports={en:["change {candleType} body visibility"],id_ID:["ubah visibilitas badan {candleType}"]}},11114:a=>{a.exports={en:["change {candleType} border visibility"],id_ID:["ubah visibilitas batas {candleType}"]}},20291:a=>{a.exports={en:["change {candleType} down border color"],id_ID:["ubah warna batas {candleType} turun"]}},64571:a=>{a.exports={en:["change {candleType} down color"],id_ID:["ubah warna {candleType} turun"]}},23053:a=>{a.exports={en:["change {chartType} border bar down color"],id_ID:["ubah warna batas bar {chartType} turun"]}},28394:a=>{a.exports={en:["change {chartType} border bar up color"],id_ID:["ubah warna batas bar {chartType} naik"]}},5012:a=>{a.exports={en:["change {chartType} down color"],id_ID:["ubah warna {chartType} turun"]}},42826:a=>{a.exports={en:["change {chartType} projection border bar up color"],id_ID:["ubah warna batas bar proyeksi {chartType} naik"]}},72545:a=>{a.exports={en:["change {chartType} projection bar down color"],id_ID:["ubah warna bar proyeksi {chartType} turun"]}},85032:a=>{a.exports={en:["change {chartType} projection bar up color"],id_ID:["ubah warna bar proyeksi {chartType} naik"]}},6970:a=>{a.exports={en:["change {chartType} up color"],id_ID:["ubah warna {chartType} naik"]}},66110:a=>{a.exports={en:["change {inputName} property"],id_ID:["ubah properti {inputName}"]}},18077:a=>{a.exports={en:["adjust data for dividends"],id_ID:["sesuaikan data untuk dividen"]}},1433:a=>{a.exports={en:["adjust for contract changes"],id_ID:["Penyesuaian untuk perubahan kontrak"]}},92598:a=>{a.exports={en:["hollow candles"],id_ID:["candle kosong"]}},57243:a=>{a.exports={en:["range","ranges"],id_ID:["rentang"]}},70282:a=>{a.exports={en:["renko"]}},28871:a=>{a.exports={en:["toggle intraday inactivity gaps"]}},92978:a=>{a.exports={en:["use settlement as close on daily interval"],id_ID:["Gunakan penyelesaian sebagai penutupan pada interval harian"]}},59644:a=>{a.exports={en:["{value} decimal","{value} decimals"],id_ID:["{value} desimal"]}}}]);
|
||||
@@ -1,6 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],it:["#{count} (barra)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],it:["#{count} (prezzo, barra)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],it:["Colore basato sulla chiusura precedente"]}},78930:e=>{e.exports={en:["Coordinates"],it:["Coordinate"]}},24197:e=>{e.exports={en:["Center"],it:["Centro"]}},84831:e=>{e.exports={en:["Close line"],it:["Linea chiusura"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],it:["Adegua i dati a seconda dei dividendi"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],it:["Incorpora variazioni dovute al cambio di contratto"]}},27567:e=>{e.exports={en:["Bottom"],it:["Sotto"]}},3159:e=>{e.exports={en:["Bottom line"],it:["Linea inferiore"]}},74406:e=>{e.exports={en:["Body"],it:["Corpo"]}},333:e=>{e.exports={en:["Borders"],it:["Bordi"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],it:["Livello base"]}},71776:e=>{e.exports={en:["Down"],it:["Giù"]}},17611:e=>{e.exports={en:["Down bars"],it:["Barre giù"]}},23743:e=>{e.exports={en:["Down color"],it:["Colore giù"]}},48225:e=>{e.exports={en:["Data modification"],it:["Modifica dei dati"]}},72942:e=>{e.exports={en:["Days"],it:["Giorni"]}},16564:e=>{e.exports={en:["Default"],it:["Predefinito"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],it:["Spostamento (prezzo, barra)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],it:["Orario di contrattazione elettronica"]}},819:e=>{e.exports={en:["Extend lines"],it:["Estendi linee"]}},41129:e=>{e.exports={en:["Fill"],it:["Riempi"]}},61112:e=>{e.exports={en:["Fill top area"],it:["Riempimento area su"]}},73185:e=>{e.exports={en:["Fill bottom area"],it:["Riempimento area inf"]}},886:e=>{e.exports={en:["HLC bars"],it:["Barre HLC"]}},56796:e=>{e.exports={en:["Hours"],it:["Ore"]}},95406:e=>{e.exports={en:["Horizontal"],it:["Orizzontale"]}},56359:e=>{e.exports={en:["High line"],it:["Linea massimo"]}},47326:e=>{e.exports={en:["Integer"],it:["Intero"]}},21429:e=>{e.exports={en:["Inputs"],it:["Input"]}},64075:e=>{e.exports={en:["Override min tick"],it:["Sovrascrivi tick minimo"]}},34579:e=>{e.exports={en:["Low line"],it:["Linea minimo"]}},11626:e=>{e.exports={en:["Left"],it:["Sinistra"]}},43154:e=>{e.exports={en:["Months"],it:["Mesi"]}},68833:e=>{e.exports={en:["Middle"],it:["Medio"]}},42562:e=>{e.exports={en:["Minutes"],it:["Minuti"]}},65188:e=>{e.exports={en:["Seconds"],it:["Secondi"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],it:["Sfondo sessione pre e post mercato"]}},59766:e=>{e.exports={en:["Precision"],it:["Precisione"]}},84684:e=>{e.exports={en:["Price source"],it:["Fonte prezzo"]}},73466:e=>{e.exports={en:["Projection up bars"],it:["Barre a proiezione superiore"]}},77430:e=>{e.exports={
|
||||
en:["Projection candles"],it:["Candele di proiezione"]}},88367:e=>{e.exports={en:["Projection down bars"],it:["Barre a proiezione inferiore"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],it:["Prezzi reali sull'asse (invece di quelli Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],it:["Destra"]}},835:e=>{e.exports={en:["Weeks"],it:["Settimane"]}},32163:e=>{e.exports={en:["Wick"],it:["Ombra"]}},97118:e=>{e.exports={en:["Top"],it:["Sopra"]}},89349:e=>{e.exports={en:["Top line"],it:["Linea superiore"]}},70320:e=>{e.exports={en:["Text"],it:["Testo"]}},25485:e=>{e.exports={en:["Text alignment"],it:["Allineamento testo"]}},67781:e=>{e.exports={en:["Text orientation"],it:["Orientamento testo"]}},20215:e=>{e.exports={en:["Thin bars"],it:["Barre sottili"]}},24821:e=>{e.exports={en:["Ticks"],it:["Tick"]}},77073:e=>{e.exports={en:["Timezone"],it:["Fuso orario"]}},22691:e=>{e.exports={en:["Up"],it:["Su"]}},23091:e=>{e.exports={en:["Up color"],it:["Colore su"]}},36957:e=>{e.exports={en:["Up bars"],it:["Barre su"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],it:["Usa il settlement come chiusura nel giornaliero"]}},69526:e=>{e.exports={en:["Vertical"],it:["Verticale"]}},21105:e=>{e.exports={en:["candle"],it:["candela"]}},27068:e=>{e.exports={en:["change HLC bars"],it:["cambio barre HLC"]}},86866:e=>{e.exports={en:["change area fill color"],it:["cambio colore riempimento area"]}},89346:e=>{e.exports={en:["change area line width"],it:["cambio spessore linea area"]}},29605:e=>{e.exports={en:["change area line color"],it:["cambio colore linea area"]}},4640:e=>{e.exports={en:["change area price source"],it:["cambio fonte area prezzo"]}},42190:e=>{e.exports={en:["change base level"],it:["cambio livello base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],it:["cambio colore inf baseline"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],it:["cambio spessore linea inf baseline"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],it:["cambio colore riempimento area inf baseline"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],it:["cambio colore riempimento area sup baseline"]}},68609:e=>{e.exports={en:["change baseline price source"],it:["cambio fonte prezzo baseline"]}},69044:e=>{e.exports={en:["change baseline top line color"],it:["cambio colore sup baseline"]}},68197:e=>{e.exports={en:["change baseline top line width"],it:["cambio spessore linea sup baseline"]}},33464:e=>{e.exports={en:["change bar up color"],it:["cambio colore barra su"]}},2066:e=>{e.exports={en:["change bar X coordinate"],it:["modifica coordinate di barra X"]}},59622:e=>{e.exports={en:["change bar down color"],it:["cambio colore barra giù"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],it:["cambio colore basato su chiusura prec"]}},88324:e=>{e.exports={en:["change column up color"],it:["cambio colore colonna sup"]}},93890:e=>{e.exports={en:["change column down color"],it:["cambio colore colonna inf"]}},
|
||||
4727:e=>{e.exports={en:["change column price source"],it:["cambio fonte dati colonna"]}},82063:e=>{e.exports={en:["change decimal places"],it:["cambio cifre decimali"]}},44223:e=>{e.exports={en:["change extended hours color"],it:["cambio colore orari estesi"]}},47393:e=>{e.exports={en:["change electronic trading hours"],it:["modifica orari di negoziazione elettronica"]}},6026:e=>{e.exports={en:["change high-low body color"],it:["cambio colore corpo max-min"]}},73021:e=>{e.exports={en:["change high-low body visibility"],it:["cambio visibilità corpo max-min"]}},46844:e=>{e.exports={en:["change high-low border color"],it:["cambio colore bordo max-min"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],it:["cambio visibilità bordi max-min"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],it:["cambio visibilità etichette max-min"]}},56961:e=>{e.exports={en:["change high-low labels color"],it:["cambio colore etichette max-min"]}},88640:e=>{e.exports={en:["change line color"],it:["cambio colore linea"]}},41837:e=>{e.exports={en:["change line price source"],it:["cambio fonte linea prezzo"]}},48339:e=>{e.exports={en:["change line width"],it:["cambio spessore linea"]}},38730:e=>{e.exports={en:["change post market color"],it:["cambio colore post mercato"]}},44371:e=>{e.exports={en:["change pre market color"],it:["cambio colore pre mercato"]}},11737:e=>{e.exports={en:["change price Y coordinate"],it:["modifica coordinate di prezzo Y"]}},16241:e=>{e.exports={en:["change range bars style"],it:["cambia lo stile delle barre range"]}},65821:e=>{e.exports={en:["change range thin bars"],it:["cambio range barre sottili"]}},75487:e=>{e.exports={en:["change renko wick down color"],it:["cambio colore ombra inf renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],it:["cambio colore ombra sup renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],it:["cambio visibilità ombra renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],it:["cambio tick min indicatore"]}},82924:e=>{e.exports={en:["change study overlay style"],it:["cambio stile indicatore"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],it:["cambio prezzo da mostrare nell'asse (al posto di quello Heikin-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],it:["cambio spessore barre"]}},78509:e=>{e.exports={en:["change {title} base line color"],it:["cambio colore linea base {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],it:["cambio stile linea base {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],it:["cambio visibilità linea base {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],it:["cambio spessore linea base {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],it:["cambio colore linea inf {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],it:["cambio stile linea inf {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],
|
||||
it:["cambio visibilità linea inf {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],it:["cambio spessore linea inf {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],it:["cambio valore giorni {title}"]}},91201:e=>{e.exports={en:["change {title} days from"],it:["cambio valore giorni {title}"]}},76295:e=>{e.exports={en:["change {title} extend lines"],it:["cambio estensione linee {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],it:["cambio valore ore {title}"]}},67233:e=>{e.exports={en:["change {title} hours to"],it:["cambio valore ore {title}"]}},99122:e=>{e.exports={en:["change {title} months from"],it:["cambio valore mesi {title}"]}},10518:e=>{e.exports={en:["change {title} months to"],it:["cambio valore mesi {title}"]}},38011:e=>{e.exports={en:["change {title} minutes to"],it:["cambio valore minuti {title}"]}},59820:e=>{e.exports={en:["change {title} minutes from"],it:["cambio valore minuti {title}"]}},6573:e=>{e.exports={en:["change {title} seconds to"],it:["cambio valore secondi {title}"]}},86780:e=>{e.exports={en:["change {title} seconds from"],it:["cambio valore secondi {title}"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],it:["cambio modifica visibilità r di Pearson {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],it:["cambio valore settimane {title}"]}},18678:e=>{e.exports={en:["change {title} weeks to"],it:["cambio valore settimane {title}"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],it:["cambio visibilità linea sup {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],it:["cambio spessore linea sup {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],it:["cambio colore linea sup {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],it:["cambio stile linea sup {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],it:["cambio visibilità {title} sui tick"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],it:["cambio visibilità {title} su settimane"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],it:["cambio visibilità {title} su {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],it:["cambio visibilità {title} su giorni"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],it:["cambio visibilità {title} su ore"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],it:["cambio visibilità {title} su minuti"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],it:["cambio visibilità {title} su mesi"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],it:["cambio visibilità {title} nei secondi"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],it:["cambio colore bordo sup {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],it:["cambio colore sup {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],it:["cambio colore ombra inf {candleType}"]}},47664:e=>{e.exports={
|
||||
en:["change {candleType} wick up color"],it:["cambio colore ombra sup {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],it:["cambio visibilità ombra {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],it:["cambio visibilità corpo {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],it:["cambio visibilità bordo {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],it:["cambio colore bordo inf {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],it:["cambio colore inf {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],it:["cambio colore bordo inf {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],it:["cambio colore bordo sup {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],it:["cambio colore inf {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],it:["cambio colore bordo proiezione sup {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],it:["cambio colore proiezione inf {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],it:["cambio colore proiezione sup {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],it:["cambio colore sup {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],it:["cambio proprietà {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],it:["cambio proprietà {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],it:["adegua i dati a seconda dei dividendi"]}},1433:e=>{e.exports={en:["adjust for contract changes"],it:["incorpora variazioni dovute a cambio di contratti"]}},35813:e=>{e.exports={en:["days"],it:["Giorni"]}},89919:e=>{e.exports={en:["days to"],it:["giorni a"]}},59215:e=>{e.exports={en:["days from"],it:["giorni da"]}},2359:e=>{e.exports={en:["hours"],it:["Ore"]}},82267:e=>{e.exports={en:["hours from"],it:["ore da"]}},15600:e=>{e.exports={en:["hours to"],it:["ore a"]}},92598:e=>{e.exports={en:["hollow candles"],it:["Candele vuote"]}},76261:e=>{e.exports={en:["move drawings"],it:["spostamento disegni"]}},95300:e=>{e.exports={en:["months"],it:["Mesi"]}},17250:e=>{e.exports={en:["months from"],it:["mesi da"]}},2828:e=>{e.exports={en:["months to"],it:["mesi a"]}},18726:e=>{e.exports={en:["minutes"],it:["Minuti"]}},67649:e=>{e.exports={en:["minutes to"],it:["minuti a"]}},22476:e=>{e.exports={en:["minutes from"],it:["minuti da"]}},751:e=>{e.exports={en:["seconds"],it:["secondi"]}},73419:e=>{e.exports={en:["seconds to"],it:["secondi a"]}},35801:e=>{e.exports={en:["seconds from"],it:["secondi da"]}},57243:e=>{e.exports={en:["range","ranges"],it:["range","range"]}},70282:e=>{e.exports={en:["renko"],it:["Renko"]}},45537:e=>{e.exports={en:["weeks"],it:["settimane"]}},92859:e=>{e.exports={en:["weeks from"],it:["settimane da"]}},44127:e=>{e.exports={en:["weeks to"],it:["settimane a"]}},
|
||||
3539:e=>{e.exports={en:["ticks"],it:["Tick"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],it:["usa il settlement come chiusura nel giornaliero"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],it:["{value} decimale","{value} decimali"]}}}]);
|
||||
6
charting_library/bundles/it.1341.1068954aa326300ef390.js
Normal file
6
charting_library/bundles/it.1341.1068954aa326300ef390.js
Normal file
@@ -0,0 +1,6 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1341,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],it:["#{count} (barra)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],it:["#{count} (prezzo, barra)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],it:["Colore basato sulla chiusura precedente"]}},78930:e=>{e.exports={en:["Coordinates"],it:["Coordinate"]}},24197:e=>{e.exports={en:["Center"],it:["Centro"]}},84831:e=>{e.exports={en:["Close line"],it:["Linea chiusura"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],it:["Adegua i dati a seconda dei dividendi"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],it:["Incorpora variazioni dovute al cambio di contratto"]}},27567:e=>{e.exports={en:["Bottom"],it:["Sotto"]}},3159:e=>{e.exports={en:["Bottom line"],it:["Linea inferiore"]}},74406:e=>{e.exports={en:["Body"],it:["Corpo"]}},333:e=>{e.exports={en:["Borders"],it:["Bordi"]}},42398:e=>{e.exports={en:["Base"]}},28975:e=>{e.exports={en:["Base level"],it:["Livello base"]}},71776:e=>{e.exports={en:["Down"],it:["Giù"]}},17611:e=>{e.exports={en:["Down bars"],it:["Barre giù"]}},23743:e=>{e.exports={en:["Down color"],it:["Colore giù"]}},48225:e=>{e.exports={en:["Data modification"],it:["Modifica dei dati"]}},72942:e=>{e.exports={en:["Days"],it:["Giorni"]}},16564:e=>{e.exports={en:["Default"],it:["Predefinito"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],it:["Spostamento (prezzo, barra)"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],it:["Orario di contrattazione elettronica"]}},819:e=>{e.exports={en:["Extend lines"],it:["Estendi linee"]}},41129:e=>{e.exports={en:["Fill"],it:["Riempi"]}},61112:e=>{e.exports={en:["Fill top area"],it:["Riempimento area su"]}},73185:e=>{e.exports={en:["Fill bottom area"],it:["Riempimento area inf"]}},56796:e=>{e.exports={en:["Hours"],it:["Ore"]}},95406:e=>{e.exports={en:["Horizontal"],it:["Orizzontale"]}},56359:e=>{e.exports={en:["High line"],it:["Linea massimo"]}},47326:e=>{e.exports={en:["Integer"],it:["Intero"]}},21429:e=>{e.exports={en:["Inputs"],it:["Input"]}},64075:e=>{e.exports={en:["Override min tick"],it:["Sovrascrivi tick minimo"]}},34579:e=>{e.exports={en:["Low line"],it:["Linea minimo"]}},11626:e=>{e.exports={en:["Left"],it:["Sinistra"]}},43154:e=>{e.exports={en:["Months"],it:["Mesi"]}},68833:e=>{e.exports={en:["Middle"],it:["Medio"]}},42562:e=>{e.exports={en:["Minutes"],it:["Minuti"]}},65188:e=>{e.exports={en:["Seconds"],it:["Secondi"]}},13350:e=>{e.exports={en:["Pearson's R"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],it:["Sfondo sessione pre e post mercato"]}},59766:e=>{e.exports={en:["Precision"],it:["Precisione"]}},84684:e=>{e.exports={en:["Price source"],it:["Fonte prezzo"]}},73466:e=>{e.exports={en:["Projection up bars"],it:["Barre a proiezione superiore"]}},
|
||||
77430:e=>{e.exports={en:["Projection candles"],it:["Candele di proiezione"]}},88367:e=>{e.exports={en:["Projection down bars"],it:["Barre a proiezione inferiore"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],it:["Prezzi reali sull'asse (invece di quelli Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],it:["Destra"]}},835:e=>{e.exports={en:["Weeks"],it:["Settimane"]}},32163:e=>{e.exports={en:["Wick"],it:["Ombra"]}},97118:e=>{e.exports={en:["Top"],it:["Sopra"]}},89349:e=>{e.exports={en:["Top line"],it:["Linea superiore"]}},70320:e=>{e.exports={en:["Text"],it:["Testo"]}},25485:e=>{e.exports={en:["Text alignment"],it:["Allineamento testo"]}},67781:e=>{e.exports={en:["Text orientation"],it:["Orientamento testo"]}},20215:e=>{e.exports={en:["Thin bars"],it:["Barre sottili"]}},24821:e=>{e.exports={en:["Ticks"],it:["Tick"]}},77073:e=>{e.exports={en:["Timezone"],it:["Fuso orario"]}},22691:e=>{e.exports={en:["Up"],it:["Su"]}},23091:e=>{e.exports={en:["Up color"],it:["Colore su"]}},36957:e=>{e.exports={en:["Up bars"],it:["Barre su"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],it:["Usa il settlement come chiusura nel giornaliero"]}},69526:e=>{e.exports={en:["Vertical"],it:["Verticale"]}},21105:e=>{e.exports={en:["candle"],it:["candela"]}},27068:e=>{e.exports={en:["change HLC bars"],it:["cambio barre HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},86866:e=>{e.exports={en:["change area fill color"],it:["cambio colore riempimento area"]}},89346:e=>{e.exports={en:["change area line width"],it:["cambio spessore linea area"]}},29605:e=>{e.exports={en:["change area line color"],it:["cambio colore linea area"]}},4640:e=>{e.exports={en:["change area price source"],it:["cambio fonte area prezzo"]}},42190:e=>{e.exports={en:["change base level"],it:["cambio livello base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],it:["cambio colore inf baseline"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],it:["cambio spessore linea inf baseline"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],it:["cambio colore riempimento area inf baseline"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],it:["cambio colore riempimento area sup baseline"]}},68609:e=>{e.exports={en:["change baseline price source"],it:["cambio fonte prezzo baseline"]}},69044:e=>{e.exports={en:["change baseline top line color"],it:["cambio colore sup baseline"]}},68197:e=>{e.exports={en:["change baseline top line width"],it:["cambio spessore linea sup baseline"]}},33464:e=>{e.exports={en:["change bar up color"],it:["cambio colore barra su"]}},2066:e=>{e.exports={en:["change bar X coordinate"],it:["modifica coordinate di barra X"]}},59622:e=>{e.exports={en:["change bar down color"],it:["cambio colore barra giù"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],it:["cambio colore basato su chiusura prec"]}},88324:e=>{e.exports={en:["change column up color"],it:["cambio colore colonna sup"]}},93890:e=>{
|
||||
e.exports={en:["change column down color"],it:["cambio colore colonna inf"]}},4727:e=>{e.exports={en:["change column price source"],it:["cambio fonte dati colonna"]}},82063:e=>{e.exports={en:["change decimal places"],it:["cambio cifre decimali"]}},44223:e=>{e.exports={en:["change extended hours color"],it:["cambio colore orari estesi"]}},47393:e=>{e.exports={en:["change electronic trading hours"],it:["modifica orari di negoziazione elettronica"]}},6026:e=>{e.exports={en:["change high-low body color"],it:["cambio colore corpo max-min"]}},73021:e=>{e.exports={en:["change high-low body visibility"],it:["cambio visibilità corpo max-min"]}},46844:e=>{e.exports={en:["change high-low border color"],it:["cambio colore bordo max-min"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],it:["cambio visibilità bordi max-min"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],it:["cambio visibilità etichette max-min"]}},56961:e=>{e.exports={en:["change high-low labels color"],it:["cambio colore etichette max-min"]}},88640:e=>{e.exports={en:["change line color"],it:["cambio colore linea"]}},41837:e=>{e.exports={en:["change line price source"],it:["cambio fonte linea prezzo"]}},48339:e=>{e.exports={en:["change line width"],it:["cambio spessore linea"]}},38730:e=>{e.exports={en:["change post market color"],it:["cambio colore post mercato"]}},44371:e=>{e.exports={en:["change pre market color"],it:["cambio colore pre mercato"]}},11737:e=>{e.exports={en:["change price Y coordinate"],it:["modifica coordinate di prezzo Y"]}},16241:e=>{e.exports={en:["change range bars style"],it:["cambia lo stile delle barre range"]}},65821:e=>{e.exports={en:["change range thin bars"],it:["cambio range barre sottili"]}},75487:e=>{e.exports={en:["change renko wick down color"],it:["cambio colore ombra inf renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],it:["cambio colore ombra sup renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],it:["cambio visibilità ombra renko"]}},91109:e=>{e.exports={en:["change study overlay min tick"],it:["cambio tick min indicatore"]}},82924:e=>{e.exports={en:["change study overlay style"],it:["cambio stile indicatore"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],it:["cambio prezzo da mostrare nell'asse (al posto di quello Heikin-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],it:["cambio spessore barre"]}},78509:e=>{e.exports={en:["change {title} base line color"],it:["cambio colore linea base {title}"]}},27864:e=>{e.exports={en:["change {title} base line style"],it:["cambio stile linea base {title}"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],it:["cambio visibilità linea base {title}"]}},17926:e=>{e.exports={en:["change {title} base line width"],it:["cambio spessore linea base {title}"]}},41638:e=>{e.exports={en:["change {title} down line color"],it:["cambio colore linea inf {title}"]}},51842:e=>{e.exports={en:["change {title} down line style"],
|
||||
it:["cambio stile linea inf {title}"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],it:["cambio visibilità linea inf {title}"]}},64615:e=>{e.exports={en:["change {title} down line width"],it:["cambio spessore linea inf {title}"]}},96135:e=>{e.exports={en:["change {title} days to"],it:["cambio valore giorni {title}"]}},91201:e=>{e.exports={en:["change {title} days from"],it:["cambio valore giorni {title}"]}},76295:e=>{e.exports={en:["change {title} extend lines"],it:["cambio estensione linee {title}"]}},8306:e=>{e.exports={en:["change {title} hours from"],it:["cambio valore ore {title}"]}},67233:e=>{e.exports={en:["change {title} hours to"],it:["cambio valore ore {title}"]}},99122:e=>{e.exports={en:["change {title} months from"],it:["cambio valore mesi {title}"]}},10518:e=>{e.exports={en:["change {title} months to"],it:["cambio valore mesi {title}"]}},38011:e=>{e.exports={en:["change {title} minutes to"],it:["cambio valore minuti {title}"]}},59820:e=>{e.exports={en:["change {title} minutes from"],it:["cambio valore minuti {title}"]}},6573:e=>{e.exports={en:["change {title} seconds to"],it:["cambio valore secondi {title}"]}},86780:e=>{e.exports={en:["change {title} seconds from"],it:["cambio valore secondi {title}"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],it:["cambio modifica visibilità r di Pearson {title}"]}},32481:e=>{e.exports={en:["change {title} weeks from"],it:["cambio valore settimane {title}"]}},18678:e=>{e.exports={en:["change {title} weeks to"],it:["cambio valore settimane {title}"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],it:["cambio visibilità linea sup {title}"]}},63824:e=>{e.exports={en:["change {title} up line width"],it:["cambio spessore linea sup {title}"]}},89178:e=>{e.exports={en:["change {title} up line color"],it:["cambio colore linea sup {title}"]}},51188:e=>{e.exports={en:["change {title} up line style"],it:["cambio stile linea sup {title}"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],it:["cambio visibilità {title} sui tick"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],it:["cambio visibilità {title} su settimane"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],it:["cambio visibilità {title} su {ranges}"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],it:["cambio visibilità {title} su giorni"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],it:["cambio visibilità {title} su ore"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],it:["cambio visibilità {title} su minuti"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],it:["cambio visibilità {title} su mesi"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],it:["cambio visibilità {title} nei secondi"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],it:["cambio colore bordo sup {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],it:["cambio colore sup {candleType}"]}},48091:e=>{e.exports={
|
||||
en:["change {candleType} wick down color"],it:["cambio colore ombra inf {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],it:["cambio colore ombra sup {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],it:["cambio visibilità ombra {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],it:["cambio visibilità corpo {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],it:["cambio visibilità bordo {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],it:["cambio colore bordo inf {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],it:["cambio colore inf {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],it:["cambio colore bordo inf {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],it:["cambio colore bordo sup {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],it:["cambio colore inf {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],it:["cambio colore bordo proiezione sup {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],it:["cambio colore proiezione inf {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],it:["cambio colore proiezione sup {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],it:["cambio colore sup {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],it:["cambio proprietà {inputName}"]}},25167:e=>{e.exports={en:["change {propertyName} property"],it:["cambio proprietà {propertyName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],it:["adegua i dati a seconda dei dividendi"]}},1433:e=>{e.exports={en:["adjust for contract changes"],it:["incorpora variazioni dovute a cambio di contratti"]}},35813:e=>{e.exports={en:["days"],it:["Giorni"]}},89919:e=>{e.exports={en:["days to"],it:["giorni a"]}},59215:e=>{e.exports={en:["days from"],it:["giorni da"]}},2359:e=>{e.exports={en:["hours"],it:["Ore"]}},82267:e=>{e.exports={en:["hours from"],it:["ore da"]}},15600:e=>{e.exports={en:["hours to"],it:["ore a"]}},92598:e=>{e.exports={en:["hollow candles"],it:["Candele vuote"]}},76261:e=>{e.exports={en:["move drawings"],it:["spostamento disegni"]}},95300:e=>{e.exports={en:["months"],it:["Mesi"]}},17250:e=>{e.exports={en:["months from"],it:["mesi da"]}},2828:e=>{e.exports={en:["months to"],it:["mesi a"]}},18726:e=>{e.exports={en:["minutes"],it:["Minuti"]}},67649:e=>{e.exports={en:["minutes to"],it:["minuti a"]}},22476:e=>{e.exports={en:["minutes from"],it:["minuti da"]}},751:e=>{e.exports={en:["seconds"],it:["secondi"]}},73419:e=>{e.exports={en:["seconds to"],it:["secondi a"]}},35801:e=>{e.exports={en:["seconds from"],it:["secondi da"]}},57243:e=>{e.exports={en:["range","ranges"],it:["range","range"]}},70282:e=>{e.exports={en:["renko"],it:["Renko"]}},45537:e=>{e.exports={en:["weeks"],it:["settimane"]}},92859:e=>{
|
||||
e.exports={en:["weeks from"],it:["settimane da"]}},44127:e=>{e.exports={en:["weeks to"],it:["settimane a"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},3539:e=>{e.exports={en:["ticks"],it:["Tick"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],it:["usa il settlement come chiusura nel giornaliero"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],it:["{value} decimale","{value} decimali"]}}}]);
|
||||
@@ -1,4 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[2686,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],it:["Punto"]}},41256:e=>{e.exports={en:["Back"],it:["Indietro"]}},53174:e=>{e.exports={en:["Right"],it:["Diritto"]}},57e3:e=>{e.exports={en:["Compare"],it:["Confronta"]}},93111:e=>{e.exports={en:["Content"],it:["Contenuto"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],it:["Copia link all'immagine grafico"]}},4543:e=>{e.exports={en:["Cancel"],it:["Annulla"]}},59934:e=>{e.exports={en:["Channels"],it:["Canali"]}},63245:e=>{e.exports={en:["Change symbol"],it:["Cambia simbolo"]}},56281:e=>{e.exports={en:["Chart style Columns"],it:["Stile grafico colonne"]}},64526:e=>{e.exports={en:["Chart style Candles"],it:["Stile grafico a candele"]}},9537:e=>{e.exports={en:["Chart style Area"],it:["Stile grafico ad area"]}},19265:e=>{e.exports={en:["Chart style Bars"],it:["Stile grafico a barre"]}},19579:e=>{e.exports={en:["Chart style Baseline"],it:["Stile grafico baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"],it:["Stile grafico kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],it:["Stile grafico Area HLC"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],it:["Stile grafico a candele vuote"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],it:["Stile grafico heikin ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],it:["Stile grafico max-min"]}},92911:e=>{e.exports={en:["Chart style Line"],it:["Stile grafico a linea"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],it:["Stile grafico linea con contrassegni"]}},11604:e=>{e.exports={en:["Chart style Line break"],it:["Stile grafico line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],it:["Stile grafico Profilo volume sessione"]}},40447:e=>{e.exports={en:["Chart style Step line"],it:["Stile grafico linea a step"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],it:["Stile grafico point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"],it:["Stile grafico range"]}},80082:e=>{e.exports={en:["Chart style Renko"],it:["Stile grafico renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],it:["Stile grafico time price opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],it:["Stile grafico candele volume"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],it:["Stile grafico footprint volume"]}},53438:e=>{e.exports={en:["Chart template"],it:["Modello di grafico"]}},47742:e=>{e.exports={en:["Close menu"],it:["Chiudere menù"]}},81578:e=>{e.exports={en:["Cursors"],it:["Cursori"]}},77915:e=>{e.exports={en:["Cycles"],it:["Cicli"]}},32064:e=>{e.exports={en:["Annotation tools"],it:["Strumenti di annotazione"]}},69207:e=>{e.exports={en:["Add to favorites"],it:["Aggiungi ai preferiti"]}},34040:e=>{e.exports={en:["All sources"],it:["Tutte le fonti"]}},19147:e=>{e.exports={en:["Arrows"],it:["Frecce"]}},42358:e=>{e.exports={en:["Bond"],it:["Obbligazione"]}},65695:e=>{e.exports={en:["Brushes"],it:["Spazzole"]}},51494:e=>{e.exports={
|
||||
en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],it:["Strumenti di Gann e Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],it:["Forme geometriche"]}},57157:e=>{e.exports={en:["Dot"],it:["Punto"]}},25848:e=>{e.exports={en:["Dark theme"],it:["Tema scuro"]}},14939:e=>{e.exports={en:["Demonstration"],it:["Dimostrazione"]}},78734:e=>{e.exports={en:["Description"],it:["Descrizione"]}},74385:e=>{e.exports={en:["Drawings"],it:["Disegni"]}},44255:e=>{e.exports={en:["Elliott waves"],it:["Onde di Elliott"]}},8727:e=>{e.exports={en:["Eraser"],it:["Cancellino"]}},93308:e=>{e.exports={en:["Extended session"],it:["Sessione estesa"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],it:["Strumenti di misurazione e proiezione"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],it:["Modalità schermo intero"]}},83576:e=>{e.exports={en:["Function"],it:["Funzione"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],it:["Tieni premuto il tasto {hotKey_0} per un disegno temporaneo"]}},27077:e=>{e.exports={en:["Open Object Tree"],it:["Apri albero oggetti"]}},7386:e=>{e.exports={en:["Open chart layout"],it:["Apri layout grafico"]}},79451:e=>{e.exports={en:["Lock all drawings"],it:["Blocca tutti gli strumenti di disegno"]}},35112:e=>{e.exports={en:["Move chart back"],it:["Sposta il grafico indietro"]}},12754:e=>{e.exports={en:["Move chart forward"],it:["Sposta il grafico davanti"]}},37117:e=>{e.exports={en:["More"],it:["Altro"]}},35553:e=>{e.exports={en:["Magic"],it:["Magia"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],it:["La modalità magnete ancora gli strumenti di disegno ai valori OHLC delle candele più vicine."]}},81031:e=>{e.exports={en:["Manage layout drawings"],it:["Gestisci disegni del layout"]}},91563:e=>{e.exports={en:["Measure"],it:["Misura"]}},97050:e=>{e.exports={en:["Measurer"],it:["Misuratore"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],it:["Unisci gli assi a sinistra"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],it:["Unisci gli assi a destra"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],it:["Nessuna borsa corrisponde ai tuoi criteri"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],it:["Nessun simbolo corrisponde ai criteri"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],it:["Niente corrisponde ai criteri"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],it:["Gli strumenti di disegno che vengono aggiunti saranno visibili su tutti i grafici (nel caso in cui si tratti dello stesso strumento)"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],it:["I nuovi disegni saranno sincronizzati globalmente"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],it:["I nuovi disegni saranno sincronizzati con il layout"]}},28628:e=>{e.exports={en:["Sources"],it:["Fonti"]}},41569:e=>{e.exports={
|
||||
en:["Save chart layout"],it:["Salva layout grafico"]}},8573:e=>{e.exports={en:["Search"],it:["Cerca"]}},79354:e=>{e.exports={en:["Search tool or function"],it:["Cerca strumento o funzione"]}},57640:e=>{e.exports={en:["Select source"],it:["Seleziona fonte"]}},65781:e=>{e.exports={en:["Shapes"],it:["Forme"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],it:["Mostra strumenti nascosti"]}},85786:e=>{e.exports={en:["Show Object Tree"],it:["Mostra albero oggetti"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],it:["Rimani in modalità disegno"]}},94593:e=>{e.exports={en:["Strong Magnet"],it:["Magnete forte"]}},95481:e=>{e.exports={en:["Symbol"],it:["Simbolo"]}},74007:e=>{e.exports={en:["Symbol & description"],it:["Simbolo e descrizione"]}},51165:e=>{e.exports={en:["Symbol Search"],it:["Ricerca simbolo"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],it:["Sincronizza il disegno a tutti i grafici"]}},46417:e=>{e.exports={en:["Patterns"],it:["Pattern"]}},36167:e=>{e.exports={en:["Pitchforks"],it:["Pitchfork"]}},79366:e=>{e.exports={en:["Previous day close price line"],it:["Linea ultima chiusura giornaliera"]}},76753:e=>{e.exports={en:["Recent search"],it:["Ricerca recente"]}},28051:e=>{e.exports={en:["Regular session"],it:["Sessione standard"]}},57118:e=>{e.exports={en:["Remove Drawings"],it:["Elimina disegni"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],it:["Rimuovi tutti gli indicatori ed i disegni"]}},96374:e=>{e.exports={en:["Remove drawings"],it:["Elimina disegni"]}},85106:e=>{e.exports={en:["Remove from favorites"],it:["Rimuovi dai preferiti"]}},99984:e=>{e.exports={en:["Remove indicators"],it:["Elimina indicatori"]}},38206:e=>{e.exports={en:["Rename chart layout"],it:["Rinomina layout grafico"]}},31789:e=>{e.exports={en:["Reset chart"],it:["Ripristina grafico"]}},3519:e=>{e.exports={en:["Weak Magnet"],it:["Magnete debole"]}},65831:e=>{e.exports={en:["Text & Notes"],it:["Testo e note"]}},48773:e=>{e.exports={en:["Trend line tools"],it:["Strumenti lineari"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],it:["Scrivi per cercare un disegno, una funzione o un'impostazione"]}},69260:e=>{e.exports={en:["Volume-based"],it:["Basato sul volume"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],it:["Stai cambiando l'interfaccia con il tema {name}. Vuoi anche cambiare il tema del grafico?"]}},55774:e=>{e.exports={en:["Zoom In"],it:["Ingrandisci"]}},37310:e=>{e.exports={en:["Zoom Out"],it:["Rimpicciolisci"]}},70932:e=>{e.exports={en:["commodity"],it:["materia prima"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],it:["cambio visibilità idee su grafico"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],it:["cambia visibilità etichette nomi indicatori e finanziari"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],
|
||||
it:["cambia visibilità etichette valori indicatori e finanziari"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],it:["cambia visibilità linee prezzo pre e post mercato"]}},46128:e=>{e.exports={en:["crypto"],it:["cripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],it:["economia"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"],it:["future"]}},87464:e=>{e.exports={en:["index"],it:["indice"]}},90250:e=>{e.exports={en:["indices"],it:["Indici"]}},76752:e=>{e.exports={en:["stock"],it:["azione"]}},94521:e=>{e.exports={en:["sync drawings"],it:["sincronizza disegni"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],it:["{hotKey_0} + click nel grafico"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],it:["{hotKey_0} — cerchio"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],it:["{hotKey_0} — disegna linea dritta ad angoli di 45°"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],it:["{hotKey_0} — incrementi fissi"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],it:["{hotKey_0} — quadrato"]}}}]);
|
||||
4
charting_library/bundles/it.4211.932ffa2dc04657916b72.js
Normal file
4
charting_library/bundles/it.4211.932ffa2dc04657916b72.js
Normal file
@@ -0,0 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[4211,4040,359,4109,9093],{23821:e=>{e.exports={en:["Dot"],it:["Punto"]}},41256:e=>{e.exports={en:["Back"],it:["Indietro"]}},53174:e=>{e.exports={en:["Right"],it:["Diritto"]}},57e3:e=>{e.exports={en:["Compare"],it:["Confronta"]}},93111:e=>{e.exports={en:["Content"],it:["Contenuto"]}},8270:e=>{e.exports={en:["Copy link to the chart image"],it:["Copia link all'immagine grafico"]}},4543:e=>{e.exports={en:["Cancel"],it:["Annulla"]}},59934:e=>{e.exports={en:["Channels"],it:["Canali"]}},63245:e=>{e.exports={en:["Change symbol"],it:["Cambia simbolo"]}},56281:e=>{e.exports={en:["Chart style Columns"],it:["Stile grafico colonne"]}},64526:e=>{e.exports={en:["Chart style Candles"],it:["Stile grafico a candele"]}},9537:e=>{e.exports={en:["Chart style Area"],it:["Stile grafico ad area"]}},19265:e=>{e.exports={en:["Chart style Bars"],it:["Stile grafico a barre"]}},19579:e=>{e.exports={en:["Chart style Baseline"],it:["Stile grafico baseline"]}},47189:e=>{e.exports={en:["Chart style Kagi"],it:["Stile grafico kagi"]}},39883:e=>{e.exports={en:["Chart style HLC area"],it:["Stile grafico Area HLC"]}},67579:e=>{e.exports={en:["Chart style HLC bars"]}},44958:e=>{e.exports={en:["Chart style Hollow candles"],it:["Stile grafico a candele vuote"]}},62423:e=>{e.exports={en:["Chart style Heikin Ashi"],it:["Stile grafico heikin ashi"]}},70405:e=>{e.exports={en:["Chart style High-low"],it:["Stile grafico max-min"]}},92911:e=>{e.exports={en:["Chart style Line"],it:["Stile grafico a linea"]}},35458:e=>{e.exports={en:["Chart style Line with markers"],it:["Stile grafico linea con contrassegni"]}},11604:e=>{e.exports={en:["Chart style Line break"],it:["Stile grafico line break"]}},67346:e=>{e.exports={en:["Chart style Session volume profile"],it:["Stile grafico Profilo volume sessione"]}},40447:e=>{e.exports={en:["Chart style Step line"],it:["Stile grafico linea a step"]}},22027:e=>{e.exports={en:["Chart style Point & figure"],it:["Stile grafico point & figure"]}},49942:e=>{e.exports={en:["Chart style Range"],it:["Stile grafico range"]}},80082:e=>{e.exports={en:["Chart style Renko"],it:["Stile grafico renko"]}},94861:e=>{e.exports={en:["Chart style Time Price Opportunity"],it:["Stile grafico time price opportunity"]}},13618:e=>{e.exports={en:["Chart style Volume candles"],it:["Stile grafico candele volume"]}},21190:e=>{e.exports={en:["Chart style Volume footprint"],it:["Stile grafico footprint volume"]}},53438:e=>{e.exports={en:["Chart template"],it:["Modello di grafico"]}},47742:e=>{e.exports={en:["Close menu"],it:["Chiudere menù"]}},81578:e=>{e.exports={en:["Cursors"],it:["Cursori"]}},77915:e=>{e.exports={en:["Cycles"],it:["Cicli"]}},32064:e=>{e.exports={en:["Annotation tools"],it:["Strumenti di annotazione"]}},69207:e=>{e.exports={en:["Add to favorites"],it:["Aggiungi ai preferiti"]}},34040:e=>{e.exports={en:["All sources"],it:["Tutte le fonti"]}},19147:e=>{e.exports={en:["Arrows"],it:["Frecce"]}},42358:e=>{e.exports={en:["Bond"],it:["Obbligazione"]}},65695:e=>{e.exports={
|
||||
en:["Brushes"],it:["Spazzole"]}},51494:e=>{e.exports={en:["Gann"]}},2654:e=>{e.exports={en:["Gann and Fibonacci tools"],it:["Strumenti di Gann e Fibonacci"]}},22145:e=>{e.exports={en:["Geometric shapes"],it:["Forme geometriche"]}},57157:e=>{e.exports={en:["Dot"],it:["Punto"]}},25848:e=>{e.exports={en:["Dark theme"],it:["Tema scuro"]}},14939:e=>{e.exports={en:["Demonstration"],it:["Dimostrazione"]}},78734:e=>{e.exports={en:["Description"],it:["Descrizione"]}},74385:e=>{e.exports={en:["Drawings"],it:["Disegni"]}},44255:e=>{e.exports={en:["Elliott waves"],it:["Onde di Elliott"]}},8727:e=>{e.exports={en:["Eraser"],it:["Cancellino"]}},93308:e=>{e.exports={en:["Extended session"],it:["Sessione estesa"]}},1410:e=>{e.exports={en:["Forecasting and measurement tools"],it:["Strumenti di misurazione e proiezione"]}},26578:e=>{e.exports={en:["Fibonacci"]}},67092:e=>{e.exports={en:["Fullscreen mode"],it:["Modalità schermo intero"]}},83576:e=>{e.exports={en:["Function"],it:["Funzione"]}},42633:e=>{e.exports={en:["Hold {hotKey_0} for temporary drawing"],it:["Tieni premuto il tasto {hotKey_0} per un disegno temporaneo"]}},27077:e=>{e.exports={en:["Open Object Tree"],it:["Apri albero oggetti"]}},7386:e=>{e.exports={en:["Open chart layout"],it:["Apri layout grafico"]}},79451:e=>{e.exports={en:["Lock all drawings"],it:["Blocca tutti gli strumenti di disegno"]}},35112:e=>{e.exports={en:["Move chart back"],it:["Sposta il grafico indietro"]}},12754:e=>{e.exports={en:["Move chart forward"],it:["Sposta il grafico davanti"]}},37117:e=>{e.exports={en:["More"],it:["Altro"]}},35553:e=>{e.exports={en:["Magic"],it:["Magia"]}},81396:e=>{e.exports={en:["Magnet Mode snaps drawings placed near price bars to the closest OHLC value"],it:["La modalità magnete ancora gli strumenti di disegno ai valori OHLC delle candele più vicine."]}},81031:e=>{e.exports={en:["Manage layout drawings"],it:["Gestisci disegni del layout"]}},91563:e=>{e.exports={en:["Measure"],it:["Misura"]}},97050:e=>{e.exports={en:["Measurer"],it:["Misuratore"]}},7276:e=>{e.exports={en:["Merge all scales to the left"],it:["Unisci gli assi a sinistra"]}},80219:e=>{e.exports={en:["Merge all scales to the right"],it:["Unisci gli assi a destra"]}},53182:e=>{e.exports={en:["No exchanges match your criteria"],it:["Nessuna borsa corrisponde ai tuoi criteri"]}},76822:e=>{e.exports={en:["No symbols match your criteria"],it:["Nessun simbolo corrisponde ai criteri"]}},47202:e=>{e.exports={en:["Nothing matches your criteria"],it:["Niente corrisponde ai criteri"]}},59377:e=>{e.exports={en:["New drawings are replicated to all charts in the layout and shown when the same ticker is selected"],it:["Gli strumenti di disegno che vengono aggiunti saranno visibili su tutti i grafici (nel caso in cui si tratti dello stesso strumento)"]}},3521:e=>{e.exports={en:["New drawings will sync globally"],it:["I nuovi disegni saranno sincronizzati globalmente"]}},93027:e=>{e.exports={en:["New drawings will sync in layout"],it:["I nuovi disegni saranno sincronizzati con il layout"]}},28628:e=>{e.exports={en:["Sources"],
|
||||
it:["Fonti"]}},41569:e=>{e.exports={en:["Save chart layout"],it:["Salva layout grafico"]}},8573:e=>{e.exports={en:["Search"],it:["Cerca"]}},79354:e=>{e.exports={en:["Search tool or function"],it:["Cerca strumento o funzione"]}},57640:e=>{e.exports={en:["Select source"],it:["Seleziona fonte"]}},65781:e=>{e.exports={en:["Shapes"],it:["Forme"]}},3154:e=>{e.exports={en:["Show Hidden Tools"],it:["Mostra strumenti nascosti"]}},85786:e=>{e.exports={en:["Show Object Tree"],it:["Mostra albero oggetti"]}},62518:e=>{e.exports={en:["Stay in Drawing Mode"],it:["Rimani in modalità disegno"]}},94593:e=>{e.exports={en:["Strong Magnet"],it:["Magnete forte"]}},95481:e=>{e.exports={en:["Symbol"],it:["Simbolo"]}},74007:e=>{e.exports={en:["Symbol & description"],it:["Simbolo e descrizione"]}},51165:e=>{e.exports={en:["Symbol Search"],it:["Ricerca simbolo"]}},23391:e=>{e.exports={en:["Sync drawings to all charts"],it:["Sincronizza il disegno a tutti i grafici"]}},46417:e=>{e.exports={en:["Patterns"],it:["Pattern"]}},36167:e=>{e.exports={en:["Pitchforks"],it:["Pitchfork"]}},79366:e=>{e.exports={en:["Previous day close price line"],it:["Linea ultima chiusura giornaliera"]}},76753:e=>{e.exports={en:["Recent search"],it:["Ricerca recente"]}},28051:e=>{e.exports={en:["Regular session"],it:["Sessione standard"]}},57118:e=>{e.exports={en:["Remove Drawings"],it:["Elimina disegni"]}},4474:e=>{e.exports={en:["Remove all indicators and drawing tools"],it:["Rimuovi tutti gli indicatori ed i disegni"]}},96374:e=>{e.exports={en:["Remove drawings"],it:["Elimina disegni"]}},85106:e=>{e.exports={en:["Remove from favorites"],it:["Rimuovi dai preferiti"]}},99984:e=>{e.exports={en:["Remove indicators"],it:["Elimina indicatori"]}},38206:e=>{e.exports={en:["Rename chart layout"],it:["Rinomina layout grafico"]}},31789:e=>{e.exports={en:["Reset chart"],it:["Ripristina grafico"]}},3519:e=>{e.exports={en:["Weak Magnet"],it:["Magnete debole"]}},65831:e=>{e.exports={en:["Text & Notes"],it:["Testo e note"]}},48773:e=>{e.exports={en:["Trend line tools"],it:["Strumenti lineari"]}},27463:e=>{e.exports={en:["Type to search for drawings, functions and settings"],it:["Scrivi per cercare un disegno, una funzione o un'impostazione"]}},69260:e=>{e.exports={en:["Volume-based"],it:["Basato sul volume"]}},78659:e=>{e.exports={en:["You're changing the user interface to the {name} theme. Would you like to switch the chart template's theme too?"],it:["Stai cambiando l'interfaccia con il tema {name}. Vuoi anche cambiare il tema del grafico?"]}},55774:e=>{e.exports={en:["Zoom In"],it:["Ingrandisci"]}},37310:e=>{e.exports={en:["Zoom Out"],it:["Rimpicciolisci"]}},70932:e=>{e.exports={en:["commodity"],it:["materia prima"]}},79599:e=>{e.exports={en:["cfd"]}},13489:e=>{e.exports={en:["change ideas visibility on chart"],it:["cambio visibilità idee su grafico"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],it:["cambia visibilità etichette nomi indicatori e finanziari"]}},71161:e=>{e.exports={
|
||||
en:["change indicators and financials value labels visibility"],it:["cambia visibilità etichette valori indicatori e finanziari"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],it:["cambia visibilità linee prezzo pre e post mercato"]}},46128:e=>{e.exports={en:["crypto"],it:["cripto"]}},47268:e=>{e.exports={en:["dr"]}},54094:e=>{e.exports={en:["economy"],it:["economia"]}},17770:e=>{e.exports={en:["forex"]}},4723:e=>{e.exports={en:["futures"],it:["future"]}},87464:e=>{e.exports={en:["index"],it:["indice"]}},90250:e=>{e.exports={en:["indices"],it:["Indici"]}},76752:e=>{e.exports={en:["stock"],it:["azione"]}},94521:e=>{e.exports={en:["sync drawings"],it:["sincronizza disegni"]}},92949:e=>{e.exports={en:["{hotKey_0} + Click on the chart"],it:["{hotKey_0} + click nel grafico"]}},13798:e=>{e.exports={en:["{hotKey_0} — circle"],it:["{hotKey_0} — cerchio"]}},23369:e=>{e.exports={en:["{hotKey_0} — drawing a straight line at angles of 45"],it:["{hotKey_0} — disegna linea dritta ad angoli di 45°"]}},83042:e=>{e.exports={en:["{hotKey_0} — fixed increments"],it:["{hotKey_0} — incrementi fissi"]}},10539:e=>{e.exports={en:["{hotKey_0} — square"],it:["{hotKey_0} — quadrato"]}}}]);
|
||||
@@ -1,7 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[5202,4821],{80587:e=>{e.exports={en:["bars"],it:["barre"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"],it:["12 ore"]}},5797:e=>{e.exports={en:["24-hours"],it:["24 ore"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],it:["Colore basato sulla chiusura precedente"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"],it:["Centro"]}},15153:e=>{e.exports={en:["Chart basic styles"],it:["Stili base del grafico"]}},45639:e=>{e.exports={en:["Chart values"],it:["Valori del grafico"]}},84831:e=>{e.exports={en:["Close line"],it:["Linea chiusura"]}},74622:e=>{e.exports={en:["Crosshair"],it:["Cursore"]}},81849:e=>{e.exports={en:["Currency"],it:["Valuta"]}},3015:e=>{e.exports={en:["Currency and Unit"],it:["Valuta ed unità"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],it:["Adegua i dati a seconda dei dividendi"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],it:["Incorpora variazioni dovute al cambio di contratto"]}},36620:e=>{e.exports={en:["Alerts"],it:["Alert"]}},14119:e=>{e.exports={en:["Arguments"],it:["Argomenti"]}},68650:e=>{e.exports={en:["Average close"],it:["Chiusura media"]}},27567:e=>{e.exports={en:["Bottom"],it:["Sotto"]}},3159:e=>{e.exports={en:["Bottom line"],it:["Linea inferiore"]}},74406:e=>{e.exports={en:["Body"],it:["Corpo"]}},333:e=>{e.exports={en:["Borders"],it:["Bordi"]}},79468:e=>{e.exports={en:["Background"],it:["Sfondo"]}},10842:e=>{e.exports={en:["Bar change values"],it:["Variazione barre"]}},28975:e=>{e.exports={en:["Base level"],it:["Livello base"]}},76473:e=>{e.exports={en:["Bid and ask"],it:["Bid e Ask"]}},32744:e=>{e.exports={en:["Buttons"],it:["Pulsanti"]}},68662:e=>{e.exports={en:["Grid lines"],it:["Linee griglia"]}},17611:e=>{e.exports={en:["Down bars"],it:["Barre giù"]}},23743:e=>{e.exports={en:["Down color"],it:["Colore giù"]}},48225:e=>{e.exports={en:["Data modification"],it:["Modifica dei dati"]}},84838:e=>{e.exports={en:["Date format"],it:["Formato data"]}},42357:e=>{e.exports={en:["Day of week on labels"],it:["Giorno della settimana sulle etichette"]}},16564:e=>{e.exports={en:["Default"],it:["Predefinito"]}},78734:e=>{e.exports={en:["Description"],it:["Descrizione"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],it:["Orario di contrattazione elettronica"]}},69808:e=>{e.exports={en:["Events"],it:["Eventi"]}},41129:e=>{e.exports={en:["Fill"],it:["Riempi"]}},61112:e=>{e.exports={en:["Fill top area"],it:["Riempimento area su"]}},73185:e=>{e.exports={en:["Fill bottom area"],it:["Riempimento area inf"]}},886:e=>{e.exports={en:["HLC bars"],it:["Barre HLC"]}},95406:e=>{e.exports={en:["Horizontal"],it:["Orizzontale"]}},61900:e=>{e.exports={en:["Horz only"],it:["Solo orizz"]}},14180:e=>{e.exports={en:["High and low"],it:["Massimo e minimo"]}},56359:e=>{e.exports={en:["High line"],it:["Linea massimo"]}},47326:e=>{e.exports={
|
||||
en:["Integer"],it:["Intero"]}},84549:e=>{e.exports={en:["Indicators"],it:["Indicatori"]}},78082:e=>{e.exports={en:["Indicators and financials"],it:["Indicatori e dati finanziari"]}},25765:e=>{e.exports={en:["Open market status"],it:["Mercato aperto"]}},34579:e=>{e.exports={en:["Low line"],it:["Linea minimo"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],it:["Descrizione lunga"]}},72423:e=>{e.exports={en:["Last day change values"],it:["Variazione sul giorno precedente"]}},11626:e=>{e.exports={en:["Left"],it:["Sinistra"]}},8249:e=>{e.exports={en:["Money"],it:["Denaro"]}},70937:e=>{e.exports={en:["Margins"],it:["Margini"]}},68833:e=>{e.exports={en:["Middle"],it:["Medio"]}},58589:e=>{e.exports={en:["No overlapping labels"],it:["Nessuna etichetta sovrapposta"]}},60798:e=>{e.exports={en:["None"],it:["Nessuno"]}},51019:e=>{e.exports={en:["Navigation"],it:["Controlli navigazione"]}},99709:e=>{e.exports={en:["Name"],it:["Nome"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],it:["Salva la posizione del bordo sinistro del grafico quando si cambia intervallo"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],it:["Modalità di scala (A e L)"]}},93968:e=>{e.exports={en:["Scales"],it:["Assi"]}},90275:e=>{e.exports={en:["Scales and lines"],it:["Scale e linee"]}},30042:e=>{e.exports={en:["Scales placement"],it:["Posizione assi"]}},28715:e=>{e.exports={en:["Status line"],it:["Legenda"]}},95481:e=>{e.exports={en:["Symbol"],it:["Simbolo"]}},53263:e=>{e.exports={en:["Pane"],it:["Pannello"]}},82894:e=>{e.exports={en:["Pane separators"],it:["Separatori pannello"]}},16207:e=>{e.exports={en:["Percentage"],it:["Percentuale"]}},94408:e=>{e.exports={en:["Pips"],it:["Pip/Tick"]}},60904:e=>{e.exports={en:["Pre/post market"],it:["Pre/post mercato"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],it:["Sfondo sessione pre e post mercato"]}},59766:e=>{e.exports={en:["Precision"],it:["Precisione"]}},83811:e=>{e.exports={en:["Previous day close"],it:["Chiusura giorno precedente"]}},35082:e=>{e.exports={en:["Price Scale"],it:["Asse del prezzo"]}},27632:e=>{e.exports={en:["Price and percentage value"],it:["Valore di prezzo e percentuale"]}},62142:e=>{e.exports={en:["Price labels & lines"],it:["Etichette e linee di prezzo"]}},84684:e=>{e.exports={en:["Price source"],it:["Fonte prezzo"]}},73466:e=>{e.exports={en:["Projection up bars"],it:["Barre a proiezione superiore"]}},77430:e=>{e.exports={en:["Projection candles"],it:["Candele di proiezione"]}},88367:e=>{e.exports={en:["Projection down bars"],it:["Barre a proiezione inferiore"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],it:["Prezzi reali sull'asse (invece di quelli Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],it:["Destra"]}},62532:e=>{e.exports={en:["Right Margin"],it:["Margine destro"]}},41571:e=>{e.exports={en:["Watermark"],it:["Filigrana"]}},32163:e=>{e.exports={en:["Wick"],it:["Ombra"]}},97118:e=>{e.exports={en:["Top"],it:["Sopra"]}},89349:e=>{e.exports={
|
||||
en:["Top line"],it:["Linea superiore"]}},70320:e=>{e.exports={en:["Text"],it:["Testo"]}},25485:e=>{e.exports={en:["Text alignment"],it:["Allineamento testo"]}},67781:e=>{e.exports={en:["Text orientation"],it:["Orientamento testo"]}},20215:e=>{e.exports={en:["Thin bars"],it:["Barre sottili"]}},70198:e=>{e.exports={en:["Title"],it:["Titolo"]}},29854:e=>{e.exports={en:["Titles"],it:["Titoli"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"],it:["Ticker e descrizione"]}},24821:e=>{e.exports={en:["Ticks"],it:["Tick"]}},93965:e=>{e.exports={en:["Time Scale"],it:["Asse temporale"]}},5591:e=>{e.exports={en:["Time hours format"],it:["Formato orario"]}},77073:e=>{e.exports={en:["Timezone"],it:["Fuso orario"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],it:["Unità"]}},23091:e=>{e.exports={en:["Up color"],it:["Colore su"]}},36957:e=>{e.exports={en:["Up bars"],it:["Barre su"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],it:["Usa il settlement come chiusura nel giornaliero"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"],it:["Valore"]}},31218:e=>{e.exports={en:["Value according to scale"],it:["Valore asse"]}},60092:e=>{e.exports={en:["Values"],it:["Valori"]}},83594:e=>{e.exports={en:["Vert and horz"],it:["Vert e orizz"]}},8402:e=>{e.exports={en:["Vert only"],it:["Solo vert."]}},69526:e=>{e.exports={en:["Vertical"],it:["Verticale"]}},21105:e=>{e.exports={en:["candle"],it:["candela"]}},27068:e=>{e.exports={en:["change HLC bars"],it:["cambio barre HLC"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],it:["cambio visibilità pulsanti navigazione"]}},96227:e=>{e.exports={en:["change open market status visibility"],it:["cambio visibilità stato di mercato"]}},43231:e=>{e.exports={en:["change average close price line width"],it:["modifica spessore della linea del prezzo medio di chiusura"]}},47026:e=>{e.exports={en:["change average close price line color"],it:["modifica colore della linea del prezzo medio di chiusura"]}},86866:e=>{e.exports={en:["change area fill color"],it:["cambio colore riempimento area"]}},89346:e=>{e.exports={en:["change area line width"],it:["cambio spessore linea area"]}},29605:e=>{e.exports={en:["change area line color"],it:["cambio colore linea area"]}},4640:e=>{e.exports={en:["change area price source"],it:["cambio fonte area prezzo"]}},98407:e=>{e.exports={en:["change ask line color"],it:["cambio colore linea lettera (ask)"]}},42190:e=>{e.exports={en:["change base level"],it:["cambio livello base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],it:["cambio colore inf baseline"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],it:["cambio spessore linea inf baseline"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],it:["cambio colore riempimento area inf baseline"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],it:["cambio colore riempimento area sup baseline"]}},68609:e=>{e.exports={
|
||||
en:["change baseline price source"],it:["cambio fonte prezzo baseline"]}},69044:e=>{e.exports={en:["change baseline top line color"],it:["cambio colore sup baseline"]}},68197:e=>{e.exports={en:["change baseline top line width"],it:["cambio spessore linea sup baseline"]}},33464:e=>{e.exports={en:["change bar up color"],it:["cambio colore barra su"]}},27426:e=>{e.exports={en:["change bar change visibility"],it:["cambio visibilità variazione barre"]}},59622:e=>{e.exports={en:["change bar down color"],it:["cambio colore barra giù"]}},17919:e=>{e.exports={en:["change bid line color"],it:["cambio colore linea denaro (bid)"]}},32094:e=>{e.exports={en:["change bottom margin"],it:["cambio margine inf"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],it:["cambio visibilità etichette valuta e unità"]}},64003:e=>{e.exports={en:["change currency label visibility"],it:["cambio visibilità etichetta valuta"]}},42803:e=>{e.exports={en:["change chart background color"],it:["cambio colore sfondo grafico"]}},41382:e=>{e.exports={en:["change chart background type"],it:["cambio tipologia sfondo grafico"]}},79637:e=>{e.exports={en:["change chart values visibility"],it:["modifica visibilità dei valori del grafico"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],it:["cambio colore basato su chiusura prec"]}},88324:e=>{e.exports={en:["change column up color"],it:["cambio colore colonna sup"]}},93890:e=>{e.exports={en:["change column down color"],it:["cambio colore colonna inf"]}},4727:e=>{e.exports={en:["change column price source"],it:["cambio fonte dati colonna"]}},50544:e=>{e.exports={en:["change crosshair width"],it:["cambio spessore linea croce"]}},92885:e=>{e.exports={en:["change crosshair color"],it:["cambio colore linea croce"]}},68418:e=>{e.exports={en:["change crosshair style"],it:["cambio stile linea croce"]}},43109:e=>{e.exports={en:["change date format"],it:["cambio formato data"]}},30418:e=>{e.exports={en:["change day of week on labels"],it:["cambia il giorno della settimana sulle etichette"]}},82063:e=>{e.exports={en:["change decimal places"],it:["cambio cifre decimali"]}},44223:e=>{e.exports={en:["change extended hours color"],it:["cambio colore orari estesi"]}},47393:e=>{e.exports={en:["change electronic trading hours"],it:["modifica orari di negoziazione elettronica"]}},73844:e=>{e.exports={en:["change grid lines visibility"],it:["cambia la visibilità delle linee della griglia"]}},61407:e=>{e.exports={en:["change high and low price line color"],it:["modifica colore delle linee dei prezzi massimi e minimi"]}},39581:e=>{e.exports={en:["change high and low price line width"],it:["modifica spessore delle linee dei prezzi massimi e minimi"]}},6026:e=>{e.exports={en:["change high-low body color"],it:["cambio colore corpo max-min"]}},73021:e=>{e.exports={en:["change high-low body visibility"],it:["cambio visibilità corpo max-min"]}},46844:e=>{e.exports={en:["change high-low border color"],it:["cambio colore bordo max-min"]}},15801:e=>{e.exports={
|
||||
en:["change high-low borders visibility"],it:["cambio visibilità bordi max-min"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],it:["cambio visibilità etichette max-min"]}},56961:e=>{e.exports={en:["change high-low labels color"],it:["cambio colore etichette max-min"]}},21133:e=>{e.exports={en:["change horz grid lines color"],it:["cambio colore linee orizz griglia"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],it:["cambio visibilità titoli indicatore"]}},49583:e=>{e.exports={en:["change indicator values visibility"],it:["cambio visibilità valori indicatore"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],it:["cambio visibilità argomenti indicatore"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],it:["cambia visibilità etichette nomi indicatori e finanziari"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],it:["cambia visibilità etichette valori indicatori e finanziari"]}},66307:e=>{e.exports={en:["change last day change visibility"],it:["variazione visibilità della variazione nell'ultimo giorno di negoziazione"]}},91873:e=>{e.exports={en:["change legend background transparency"],it:["cambio trasparenza sfondo legenda"]}},14246:e=>{e.exports={en:["change legend background visibility"],it:["cambio visibilità sfondo legenda"]}},88640:e=>{e.exports={en:["change line color"],it:["cambio colore linea"]}},41837:e=>{e.exports={en:["change line price source"],it:["cambio fonte linea prezzo"]}},48339:e=>{e.exports={en:["change line width"],it:["cambio spessore linea"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],it:["cambio visibilità pulsanti pannelli"]}},52203:e=>{e.exports={en:["change pane separators color"],it:["cambio colore separatori pannello"]}},38730:e=>{e.exports={en:["change post market color"],it:["cambio colore post mercato"]}},28075:e=>{e.exports={en:["change post market line color"],it:["cambio colore linea post mercato"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],it:["cambia visibilità linee prezzo pre e post mercato"]}},44371:e=>{e.exports={en:["change pre market color"],it:["cambio colore pre mercato"]}},96114:e=>{e.exports={en:["change pre market line color"],it:["cambio colore linea pre mercato"]}},69814:e=>{e.exports={en:["change previous close price line color"],it:["cambio colore linea prezzo chiusura prec"]}},13660:e=>{e.exports={en:["change previous close price line width"],it:["cambio spessore linea prezzo chiusura prec"]}},87861:e=>{e.exports={en:["change price line color"],it:["cambio colore linea prezzo"]}},29353:e=>{e.exports={en:["change price line width"],it:["cambio spessore linea prezzo"]}},16241:e=>{e.exports={en:["change range bars style"],it:["cambia lo stile delle barre range"]}},65821:e=>{e.exports={en:["change range thin bars"],it:["cambio range barre sottili"]}},75487:e=>{e.exports={en:["change renko wick down color"],it:["cambio colore ombra inf renko"]}},92277:e=>{e.exports={
|
||||
en:["change renko wick up color"],it:["cambio colore ombra sup renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],it:["cambio visibilità ombra renko"]}},82946:e=>{e.exports={en:["change right margin"],it:["cambio margine dx"]}},79545:e=>{e.exports={en:["change right margin percentage"],it:["modifica percentuale del margine destro"]}},78995:e=>{e.exports={en:["change symbol watermark color"],it:["cambio colore filigrana"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],it:["cambio visibilità filigrana"]}},88167:e=>{e.exports={en:["change symbol description visibility"],it:["cambio visibilità descrizione simbolo"]}},12050:e=>{e.exports={en:["change symbol field visibility"],it:["cambia la visibilità del campo dei simboli"]}},46066:e=>{e.exports={en:["change symbol last value mode"],it:["cambio modalità ultimo valore simbolo"]}},902:e=>{e.exports={en:["change symbol legend format"],it:["cambio formato legenda simbolo"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],it:["modifica del salvataggio della posizione del bordo sinistro del grafico quando si cambia intervallo"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],it:["cambia la visibilità dei pulsanti delle modalità di scala"]}},76131:e=>{e.exports={en:["change scales text color"],it:["cambio colore testo assi"]}},27792:e=>{e.exports={en:["change scales font size"],it:["cambio dimensione font assi"]}},94997:e=>{e.exports={en:["change scales lines color"],it:["cambio colore linee assi"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],it:["cambio visibilità separatori sessione"]}},28175:e=>{e.exports={en:["change sessions breaks width"],it:["cambio spessore separatori sessione"]}},33895:e=>{e.exports={en:["change sessions breaks color"],it:["cambio colore separatori sessione"]}},21641:e=>{e.exports={en:["change sessions breaks style"],it:["cambio stile separatori sessione"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],it:["cambio prezzo da mostrare nell'asse (al posto di quello Heikin-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],it:["cambio spessore barre"]}},39754:e=>{e.exports={en:["change time hours format"],it:["cambio formato orario"]}},74883:e=>{e.exports={en:["change top margin"],it:["cambio margine sup"]}},51250:e=>{e.exports={en:["change unit label visibility"],it:["cambio visibilità etichetta unità"]}},71805:e=>{e.exports={en:["change vert grid lines color"],it:["cambio colore linee vert griglia"]}},96201:e=>{e.exports={en:["change volume values visibility"],it:["cambio visibilità valori volume"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],it:["cambio colore bordo sup {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],it:["cambio colore sup {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],it:["cambio colore ombra inf {candleType}"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],
|
||||
it:["cambio colore ombra sup {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],it:["cambio visibilità ombra {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],it:["cambio visibilità corpo {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],it:["cambio visibilità bordo {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],it:["cambio colore bordo inf {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],it:["cambio colore inf {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],it:["cambio colore bordo inf {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],it:["cambio colore bordo sup {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],it:["cambio colore inf {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],it:["cambio colore bordo proiezione sup {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],it:["cambio colore proiezione inf {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],it:["cambio colore proiezione sup {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],it:["cambio colore sup {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],it:["cambio proprietà {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],it:["adegua i dati a seconda dei dividendi"]}},1433:e=>{e.exports={en:["adjust for contract changes"],it:["incorpora variazioni dovute a cambio di contratti"]}},92598:e=>{e.exports={en:["hollow candles"],it:["Candele vuote"]}},57243:e=>{e.exports={en:["range","ranges"],it:["range","range"]}},70282:e=>{e.exports={en:["renko"],it:["Renko"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],it:["usa il settlement come chiusura nel giornaliero"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],it:["{value} decimale","{value} decimali"]}}}]);
|
||||
@@ -1,4 +1,4 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[3786],{53310:e=>{e.exports={en:["Re"],it:["Rif"]}},85119:e=>{e.exports={en:["Dark"],it:["Scuro"]}},96870:e=>{e.exports={en:["Light"],it:["Chiaro"]}},85886:e=>{e.exports={en:["d"],it:["g"]}},44634:e=>{e.exports={en:["h"],it:["o"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],it:["Copia {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],it:["C - Chius."]}},43253:e=>{e.exports={en:["H"],it:["H - Max."]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],it:["L - Min."]}},46728:e=>{e.exports={en:["O"],it:["O - Aper."]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],it:["Colore livello -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],it:["Colore livello -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],it:["Colore livello -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],it:["Colore livello -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],it:["Colore livello 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],it:["Colore livello 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],it:["Colore livello 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],it:["Colore livello 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],it:["Colore livello 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],it:["Colore livello 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],it:["Colore livello 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],it:["Colore livello 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],it:["Colore livello 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],it:["Colore livello 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],it:["Colore livello 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],it:["Colore livello 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],it:["1° periodo"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],it:["Colore livello 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],it:["Colore livello 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],it:["2° periodo"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],it:["Colore livello 3.618"]},
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7033],{53310:e=>{e.exports={en:["Re"],it:["Rif"]}},85119:e=>{e.exports={en:["Dark"],it:["Scuro"]}},96870:e=>{e.exports={en:["Light"],it:["Chiaro"]}},85886:e=>{e.exports={en:["d"],it:["g"]}},44634:e=>{e.exports={en:["h"],it:["o"]}},5977:e=>{e.exports={en:["m"]}},21492:e=>{e.exports={en:["s"]}},97559:e=>{e.exports={en:["{title} copy"],it:["Copia {title}"]}},38691:e=>{e.exports={en:["D"]}},77995:e=>{e.exports={en:["M"]}},93934:e=>{e.exports={en:["R"]}},82901:e=>{e.exports={en:["T"]}},7408:e=>{e.exports={en:["W"]}},38048:e=>{e.exports={en:["h"]}},68430:e=>{e.exports={en:["m"]}},68823:e=>{e.exports={en:["s"]}},2696:e=>{e.exports={en:["C"],it:["C - Chius."]}},43253:e=>{e.exports={en:["H"],it:["H - Max."]}},61372:e=>{e.exports={en:["HL2"]}},55096:e=>{e.exports={en:["HLC3"]}},94174:e=>{e.exports={en:["OHLC4"]}},89923:e=>{e.exports={en:["L"],it:["L - Min."]}},46728:e=>{e.exports={en:["O"],it:["O - Aper."]}},32856:e=>{e.exports=Object.create(null),e.exports["%D_input"]={en:["%D"]},e.exports["%K_input"]={en:["%K"]},e.exports["%R_input"]={en:["%R"]},e.exports["+DI_input"]={en:["+DI"]},e.exports["-0.236 Level Color_input"]={en:["-0.236 Level Color"],it:["Colore livello -0.236"]},e.exports["-0.382 Level Color_input"]={en:["-0.382 Level Color"],it:["Colore livello -0.382"]},e.exports["-0.618 Level Color_input"]={en:["-0.618 Level Color"],it:["Colore livello -0.618"]},e.exports["-0.65 Level Color_input"]={en:["-0.65 Level Color"],it:["Colore livello -0.65"]},e.exports["-DI_input"]={en:["-DI"]},e.exports["0 Level Color_input"]={en:["0 Level Color"],it:["Colore livello 0"]},e.exports["0.236 Level Color_input"]={en:["0.236 Level Color"],it:["Colore livello 0.236"]},e.exports["0.382 Level Color_input"]={en:["0.382 Level Color"],it:["Colore livello 0.382"]},e.exports["0.5 Level Color_input"]={en:["0.5 Level Color"],it:["Colore livello 0.5"]},e.exports["0.618 Level Color_input"]={en:["0.618 Level Color"],it:["Colore livello 0.618"]},e.exports["0.65 Level Color_input"]={en:["0.65 Level Color"],it:["Colore livello 0.65"]},e.exports["0.786 Level Color_input"]={en:["0.786 Level Color"],it:["Colore livello 0.786"]},e.exports["1 Level Color_input"]={en:["1 Level Color"],it:["Colore livello 1"]},e.exports["1.272 Level Color_input"]={en:["1.272 Level Color"],it:["Colore livello 1.272"]},e.exports["1.414 Level Color_input"]={en:["1.414 Level Color"],it:["Colore livello 1.414"]},e.exports["1.618 Level Color_input"]={en:["1.618 Level Color"],it:["Colore livello 1.618"]},e.exports["1.65 Level Color_input"]={en:["1.65 Level Color"],it:["Colore livello 1.65"]},e.exports["1st Period_input"]={en:["1st Period"],it:["1° periodo"]},e.exports["2.618 Level Color_input"]={en:["2.618 Level Color"],it:["Colore livello 2.618"]},e.exports["2.65 Level Color_input"]={en:["2.65 Level Color"],it:["Colore livello 2.65"]},e.exports["2nd Period_input"]={en:["2nd Period"],it:["2° periodo"]},e.exports["3.618 Level Color_input"]={en:["3.618 Level Color"],it:["Colore livello 3.618"]},
|
||||
e.exports["3.65 Level Color_input"]={en:["3.65 Level Color"],it:["Colore livello 3.65"]},e.exports["3rd Period_input"]={en:["3rd Period"],it:["3° periodo"]},e.exports["4.236 Level Color_input"]={en:["4.236 Level Color"],it:["Colore livello 4.236"]},e.exports["4th Period_input"]={en:["4th Period"],it:["4° periodo"]},e.exports["5th Period_input"]={en:["5th Period"],it:["5° periodo"]},e.exports["6th Period_input"]={en:["6th Period"],it:["6° periodo"]},e.exports.ADR_B_input={en:["ADR_B"]},e.exports["ADX Smoothing_input"]={en:["ADX Smoothing"]},e.exports["ADX smoothing_input"]={en:["ADX smoothing"]},e.exports.ADX_input={en:["ADX"]},e.exports["ATR Mult_input"]={en:["ATR Mult"]},e.exports["ATR length_input"]={en:["ATR length"],it:["Periodo ATR"]},e.exports["ATR({atrValue})_input"]={en:["ATR({atrValue})"]},e.exports.ATR_input={en:["ATR"]},e.exports["Accumulation/Distribution_input"]={en:["Accumulation/Distribution"],it:["Accumulo/Distribuzione"]},e.exports["All items_combobox_input"]={en:["All items"],it:["Tutti gli oggetti"]},e.exports.All_input={en:["All"],it:["Tutto"]},e.exports["Anchor Period_input"]={en:["Anchor Period"],it:["Periodo di riferimento"]},e.exports["Another symbol_input"]={en:["Another symbol"],it:["Altro simbolo"]},e.exports["Aroon Down_input"]={en:["Aroon Down"]},e.exports["Aroon Up_input"]={en:["Aroon Up"]},e.exports.Average_input={en:["Average"],it:["Media"]},e.exports["Averaging Periods_input"]={en:["Averaging Periods"],it:["Periodi di media"]},e.exports.Back_input={en:["Back"],it:["Indietro"]},e.exports["Bands style_input"]={en:["Bands style"],it:["Stile bande"]},e.exports.Bar_input={en:["Bar"],it:["Barra"]},e.exports["Base Line Periods_input"]={en:["Base Line Periods"],it:["Periodo linea base"]},e.exports["Base Line_input"]={en:["Base Line"],it:["Linea base"]},e.exports.Basis_input={en:["Basis"],it:["Base"]},e.exports["Bollinger Bands %B_input"]={en:["Bollinger Bands %B"],it:["Bande di Bollinger %B"]},e.exports["Bollinger Bands Width_input"]={en:["Bollinger Bands Width"],it:["Ampiezza bande di Bollinger"]},e.exports.Borders_input={en:["Borders"],it:["Bordi"]},e.exports["Box size assignment method_input"]={en:["Box size assignment method"],it:["Metodo di calcolo grandezza box"]},e.exports["Box size_input"]={en:["Box size"],it:["Grandezza box"]},e.exports.CCI_input={en:["CCI"]},e.exports.CHOP_input={en:["CHOP"]},e.exports.Cancel_input={en:["Cancel"],it:["Annulla"]},e.exports.Candles_input={en:["Candles"],it:["Candele"]},e.exports.Centered_input={en:["Centered"],it:["Centrato"]},e.exports.Century_input={en:["Century"],it:["Secolo"]},e.exports["Chaikin Oscillator_input"]={en:["Chaikin Oscillator"]},e.exports["Chande MO_input"]={en:["Chande MO"]},e.exports.Close_input={en:["Close"],it:["Chiudi"]},e.exports["Color 0_input"]={en:["Color 0"],it:["Colore 0"]},e.exports["Color 1_input"]={en:["Color 1"],it:["Colore 1"]},e.exports["Color 2_input"]={en:["Color 2"],it:["Colore 2"]},e.exports["Color 3_input"]={en:["Color 3"],it:["Colore 3"]},e.exports["Color 4_input"]={en:["Color 4"],it:["Colore 4"]},
|
||||
e.exports["Color 5_input"]={en:["Color 5"],it:["Colore 5"]},e.exports["Color 6_input"]={en:["Color 6"],it:["Colore 6"]},e.exports["Color 7_input"]={en:["Color 7"],it:["Colore 7"]},e.exports["Color 8_input"]={en:["Color 8"],it:["Colore 8"]},e.exports["Color bars based on previous close_input"]={en:["Color bars based on previous close"],it:["Colore basato sulla chiusura precedente"]},e.exports["Color based on previous close_input"]={en:["Color based on previous close"],it:["Colore basato sulla chiusura precedente"]},e.exports["Conversion Line Periods_input"]={en:["Conversion Line Periods"],it:["Periodi linea di conversione"]},e.exports["Conversion Line_input"]={en:["Conversion Line"],it:["Linea di conversione"]},e.exports.Correlation_input={en:["Correlation"],it:["Correlazione"]},e.exports.Count_input={en:["Count"],it:["Conteggio"]},e.exports.Crosses_input={en:["Crosses"],it:["Incrocia"]},e.exports.Custom_input={en:["Custom"],it:["Personalizzato"]},e.exports.DEMA_input={en:["DEMA"]},e.exports["DI Length_input"]={en:["DI Length"],it:["Periodo DI"]},e.exports.DPO_input={en:["DPO"]},e.exports.D_input={en:["D"]},e.exports.Day_input={en:["Day"],it:["Giorno"]},e.exports["Days Per Year_input"]={en:["Days Per Year"],it:["Giorni nell'anno"]},e.exports.Decade_input={en:["Decade"]},e.exports.Delta_input={en:["Delta"]},e.exports.Depth_input={en:["Depth"],it:["Profondità"]},e.exports["Detrended Price Oscillator_input"]={en:["Detrended Price Oscillator"]},e.exports["Developing Poc_input"]={en:["Developing Poc"],it:["Sviluppo PoC"]},e.exports["Deviation (%)_input"]={en:["Deviation (%)"],it:["Deviazione (%)"]},e.exports.Deviation_input={en:["Deviation"],it:["Deviazione"]},e.exports.Divisor_input={en:["Divisor"],it:["Divisore"]},e.exports["Down Volume_input"]={en:["Down Volume"],it:["Volume vendite"]},e.exports["Down bars_input"]={en:["Down bars"],it:["Barre giù"]},e.exports["Down color_input"]={en:["Down color"],it:["Colore giù"]},e.exports["Down fractals_input"]={en:["Down fractals"],it:["Frattali inferiori"]},e.exports.EOM_input={en:["EOM"]},e.exports["Each (pre-market, market, post-market)_input"]={en:["Each (pre-market, market, post-market)"],it:["Tutte (pre e post comprese)"]},e.exports["Elder's Force Index_input"]={en:["Elder's Force Index"],it:["Indice Elder's Force"]},e.exports["Equality Line_input"]={en:["Equality Line"],it:["Linea d'uguaglianza"]},e.exports.Exponential_input={en:["Exponential"],it:["Esponenziale"]},e.exports["Extend POC Right_input"]={en:["Extend POC Right"],it:["Estendi POC a destra"]},e.exports["Extend Right_input"]={en:["Extend Right"],it:["Estendi a destra"]},e.exports["Extend VAH Right_input"]={en:["Extend VAH Right"],it:["Estendi VAH a destra"]},e.exports["Extend VAL Right_input"]={en:["Extend VAL Right"],it:["Estendi VAL a destra"]},e.exports["Extend to last bar_input"]={en:["Extend to last bar"],it:["Estendi all'ultima barra"]},e.exports.Falling_input={en:["Falling"],it:["In caduta"]},e.exports["Fast Length_input"]={en:["Fast Length"],it:["Periodo veloce"]},e.exports["Fast length_input"]={
|
||||
en:["Fast length"],it:["Periodo veloce"]},e.exports.Fill_input={en:["Fill"],it:["Riempi"]},e.exports.Fisher_input={en:["Fisher"]},e.exports.Growing_input={en:["Growing"],it:["In crescita"]},e.exports["HLC bars_input"]={en:["HLC bars"],it:["Barre HLC"]},e.exports.HV_input={en:["HV"]},e.exports["Histogram Box_input"]={en:["Histogram Box"],it:["Istogramma"]},e.exports.Histogram_input={en:["Histogram"],it:["Istogramma"]},e.exports["Hull MA_input"]={en:["Hull MA"]},e.exports.Increment_input={en:["Increment"],it:["Incremento"]},e.exports.Indicator_input={en:["Indicator"],it:["Indicatore"]},e.exports["Instrument 1_input"]={en:["Instrument 1"],it:["Strumento 1"]},e.exports["Instrument 2_input"]={en:["Instrument 2"],it:["Strumento 2"]},e.exports["Investor EMA 1 length_input"]={en:["Investor EMA 1 length"],it:["Periodo Investor EMA 1"]},e.exports["Investor EMA 2 length_input"]={en:["Investor EMA 2 length"],it:["Periodo Investor EMA 2"]},e.exports["Investor EMA 3 length_input"]={en:["Investor EMA 3 length"],it:["Periodo Investor EMA 3"]},e.exports["Investor EMA 4 length_input"]={en:["Investor EMA 4 length"],it:["Periodo Investor EMA 4"]},e.exports["Investor EMA 5 length_input"]={en:["Investor EMA 5 length"],it:["Periodo Investor EMA 5"]},e.exports["Investor EMA 6 length_input"]={en:["Investor EMA 6 length"],it:["Periodo Investor EMA 6"]},e.exports["Jaw Length_input"]={en:["Jaw Length"],it:["Periodo Jaw"]},e.exports["Jaw Offset_input"]={en:["Jaw Offset"]},e.exports.Jaw_input={en:["Jaw"]},e.exports.KST_input={en:["KST"]},e.exports.K_input={en:["K"]},e.exports["Labels Position_input"]={en:["Labels Position"],it:["Positione etichette"]},e.exports["Labels on price scale_input"]={en:["Labels on price scale"],it:["Etichette sull'asse verticale"]},e.exports["Lagging Span Periods_input"]={en:["Lagging Span Periods"],it:["Periodi di Lagging Span"]},e.exports["Lagging Span_input"]={en:["Lagging Span"]},e.exports["Leading Shift Periods_input"]={en:["Leading Shift Periods"],it:["Principali periodi di turnover"]},e.exports["Leading Span A_input"]={en:["Leading Span A"],it:["Lead 1"]},e.exports["Leading Span B_input"]={en:["Leading Span B"]},e.exports["Leading Span Periods_input"]={en:["Leading Span Periods"],it:["Periodo Leading Span"]},e.exports["Length EMA_input"]={en:["Length EMA"],it:["Periodo EMA"]},e.exports["Length MA_input"]={en:["Length MA"],it:["Periodo MA"]},e.exports.Length1_input={en:["Length1"],it:["Periodo1"]},e.exports.Length2_input={en:["Length2"],it:["Periodo2"]},e.exports.Length3_input={en:["Length3"],it:["Periodo3"]},e.exports.Length_input={en:["Length"],it:["Periodo"]},e.exports.Level_input={en:["Level"],it:["Livello"]},e.exports["Levels Format_input"]={en:["Levels Format"],it:["Formato livelli"]},e.exports.Limit_input={en:["Limit"],it:["Limite"]},e.exports.Line_input={en:["Line"],it:["Linea"]},e.exports["Lips Length_input"]={en:["Lips Length"],it:["Periodo Lips"]},e.exports["Lips Offset_input"]={en:["Lips Offset"]},e.exports.Lips_input={en:["Lips"]},e.exports["Long Length_input"]={en:["Long Length"],it:["Periodo lungo"]
|
||||
@@ -28,31 +28,31 @@ it:["Indicatore Vortex"]},e.exports["Williams %R_study"]={en:["Williams %R"]},e.
|
||||
e.exports={en:["Chart for {symbol}, {interval}"],it:["Grafico di {symbol}, {interval}"]}},69804:e=>{e.exports={en:["Chart image copied to clipboard {emoji}"],it:["Immagine del grafico copiata negli appunti {emoji}"]}},6655:e=>{e.exports={en:["Chart image embed code copied to clipboard {emoji}"],it:["Codice di incorporamento dell'immagine del grafico copiato negli appunti {emoji}"]}},36549:e=>{e.exports={en:["Chatham Islands"],it:["Isole Chatham"]}},72452:e=>{e.exports={en:["Chicago"]}},50349:e=>{e.exports={en:["Chongqing"]}},91944:e=>{e.exports={en:["Circle"],it:["Cerchio"]}},14985:e=>{e.exports={en:["Click to set a point"],it:["Clicca per definire un punto"]}},12537:e=>{e.exports={en:["Clone"],it:["Duplica"]}},62578:e=>{e.exports={en:["Close"],it:["Chiusura"]}},264:e=>{e.exports={en:["Create limit order"],it:["Crea ordine limite"]}},6969:e=>{e.exports={en:["Cross"],it:["Croce"]}},74334:e=>{e.exports={en:["Cross Line"],it:["Linea a croce"]}},59396:e=>{e.exports={en:["Currencies"],it:["Valute"]}},20177:e=>{e.exports={en:["Current interval and above"],it:["Intervallo corrente e superiore"]}},494:e=>{e.exports={en:["Current interval and below"],it:["Intervallo corrente e inferiore"]}},60668:e=>{e.exports={en:["Current interval only"],it:["Solo intervallo corrente"]}},78609:e=>{e.exports={en:["Curve"],it:["Curva"]}},87380:e=>{e.exports={en:["Cycle"],it:["Ciclo"]}},84031:e=>{e.exports={en:["Cyclic Lines"],it:["Linee cicliche"]}},93191:e=>{e.exports={en:["Cypher Pattern"],it:["Cypher pattern"]}},7219:e=>{e.exports={en:["A layout with that name already exists"],it:["Esiste già un layout con questo nome"]}},67635:e=>{e.exports={en:["A layout with that name already exists. Do you want to overwrite it?"],it:["Esiste già un layout con questo nome. Si desidera sovrascriverlo?"]}},46712:e=>{e.exports={en:["ABCD Pattern"],it:["Pattern ABCD"]}},36485:e=>{e.exports={en:["Amsterdam"]}},24185:e=>{e.exports={en:["Anchor"],it:["Ancora"]}},42630:e=>{e.exports={en:["Anchorage"],it:["Ancoraggio"]}},42669:e=>{e.exports={en:["Anchored Text"],it:["Testo ancorato"]}},84541:e=>{e.exports={en:["Anchored VWAP"],it:["VWAP ancorato"]}},77401:e=>{e.exports={en:["Access error"],it:["Errore di accesso"]}},46501:e=>{e.exports={en:["Add Symbol"],it:["Aggiungi simbolo"]}},2439:e=>{e.exports={en:["Add financial metric for {instrumentName}"],it:["Aggiungi parametro finanziario su {instrumentName}"]}},35088:e=>{e.exports={en:["Add indicator/strategy on {studyTitle}"],it:["Aggiungi indicatore/strategia su {studyTitle}"]}},35679:e=>{e.exports={en:["Add this financial metric to entire layout"],it:["Applica questo dato finanziario all'intero layout"]}},10996:e=>{e.exports={en:["Add this financial metric to favorites"],it:["Aggiungi questa metrica ai preferiti"]}},26090:e=>{e.exports={en:["Add this indicator to entire layout"],it:["Applica questo indicatore all'intero layout"]}},92957:e=>{e.exports={en:["Add this indicator to favorites"],it:["Aggiungi questo indicatore ai preferiti"]}},95754:e=>{e.exports={en:["Add this strategy to entire layout"],
|
||||
it:["Applica questa strategia all'intero layout"]}},39010:e=>{e.exports={en:["Add this symbol to entire layout"],it:["Applica questo simbolo all'intero layout"]}},426:e=>{e.exports={en:["Adelaide"]}},40452:e=>{e.exports={en:["Always invisible"],it:["Sempre invisibile"]}},36299:e=>{e.exports={en:["Always visible"],it:["Sempre visibile"]}},58026:e=>{e.exports={en:["All intervals"],it:["Tutti gli intervalli"]}},78358:e=>{e.exports={en:["Apply default"],it:["Applica predefinito"]}},22437:e=>{e.exports={en:["Apply these indicators to entire layout"],it:["Applica questi indicatori all'intero layout"]}},27072:e=>{e.exports={en:["Apr"]}},59324:e=>{e.exports={en:["Arc"],it:["Arco"]}},34456:e=>{e.exports={en:["Area"]}},11858:e=>{e.exports={en:["Arrow"],it:["Freccia"]}},34247:e=>{e.exports={en:["Arrow Down"],it:["Freccia giù"]}},36352:e=>{e.exports={en:["Arrow Marker"],it:["Freccia"]}},73193:e=>{e.exports={en:["Arrow Mark Down"],it:["Freccia giù"]}},1949:e=>{e.exports={en:["Arrow Mark Left"],it:["Freccia sx"]}},86275:e=>{e.exports={en:["Arrow Mark Right"],it:["Freccia dx"]}},62453:e=>{e.exports={en:["Arrow Mark Up"],it:["Freccia su"]}},77231:e=>{e.exports={en:["Arrow Up"],it:["Freccia su"]}},98128:e=>{e.exports={en:["Astana"]}},63627:e=>{e.exports={en:["Ashgabat"],it:["Ashkhabad"]}},72445:e=>{e.exports={en:["At close"],it:["Alla chiusura"]}},73702:e=>{e.exports={en:["Athens"],it:["Atene"]}},21469:e=>{e.exports={en:["Auto"]}},24157:e=>{e.exports={en:["Auto (fits data to screen)"],it:["Auto (adatta dati a schermo)"]}},46450:e=>{e.exports={en:["Aug"],it:["Ago"]}},21841:e=>{e.exports={en:["Average close price label"],it:["Etichetta prezzo medio chiusura"]}},16138:e=>{e.exports={en:["Average close price line"],it:["Linea prezzo medio di chiusura"]}},73025:e=>{e.exports={en:["Avg"],it:["Media"]}},87580:e=>{e.exports={en:["Azores"]}},73905:e=>{e.exports={en:["Bogota"]}},90594:e=>{e.exports={en:["Bahrain"],it:["Bahrein"]}},70540:e=>{e.exports={en:["Balloon"],it:["Fumetto"]}},47045:e=>{e.exports={en:["Bangkok"]}},92101:e=>{e.exports={en:["Bar Replay isn't available for this chart type. Want to exit Bar Replay?"],it:["La modalità Bar Replay non è disponibile per questo tipo di grafico. Vuoi uscire da Bar Replay?"]}},32482:e=>{e.exports={en:["Bar Replay isn't available for this symbol. Want to exit Bar Replay?"],it:["La modalità Bar Replay non è disponibile per questo simbolo. Vuoi uscire da Bar Replay?"]}},85902:e=>{e.exports={en:["Bar Replay isn't available for this time interval. Want to exit Bar Replay?"],it:["La modalità Bar Replay non è disponibile per questo timeframe. Vuoi uscire da Bar Replay?"]}},27377:e=>{e.exports={en:["Bars"],it:["Barre"]}},81994:e=>{e.exports={en:["Bars Pattern"],it:["Pattern a barre"]}},59213:e=>{e.exports={en:["Baseline"]}},71797:e=>{e.exports={en:["Belgrade"],it:["Belgrado"]}},64313:e=>{e.exports={en:["Berlin"],it:["Berlino"]}},43539:e=>{e.exports={en:["Brush"],it:["Pennello"]}},91499:e=>{e.exports={en:["Brussels"],it:["Bruxelles"]}},70876:e=>{e.exports={en:["Bratislava"]}},55481:e=>{e.exports={
|
||||
en:["Bring forward"],it:["Sposta avanti"]}},17293:e=>{e.exports={en:["Bring to front"],it:["Porta in primo piano"]}},79336:e=>{e.exports={en:["Brisbane"]}},33672:e=>{e.exports={en:["Bucharest"],it:["Bucarest"]}},20313:e=>{e.exports={en:["Budapest"]}},25282:e=>{e.exports={en:["Buenos Aires"]}},46768:e=>{e.exports={en:["By TradingView"],it:["Da TradingView"]}},54280:e=>{e.exports={en:["Go to date"],it:["Vai alla data"]}},74975:e=>{e.exports={en:["Go to {lineToolName}"],it:["Vai a {lineToolName}"]}},15462:e=>{e.exports={en:["Got it"],it:["Ho capito"]}},47460:e=>{e.exports={en:["Gann Box"],it:["Scatola Gann"]}},48683:e=>{e.exports={en:["Gann Fan"],it:["Ventaglio Gann"]}},44763:e=>{e.exports={en:["Gann Square"],it:["Quadrato Gann"]}},60707:e=>{e.exports={en:["Gann Square Fixed"],it:["Quadrato di Gann fisso"]}},46808:e=>{e.exports={en:["Ghost Feed"],it:["Barre fantasma"]}},57726:e=>{e.exports={en:["Grand supercycle"],it:["Gran superciclo"]}},15096:e=>{e.exports={en:["Do you really want to delete indicator template '{name}' ?"],it:["Vuoi davvero cancellare il modello di indicatore '{name}'?"]}},77174:e=>{e.exports={en:["Do you really want to delete study and all of it's children?"],it:["Vuoi eliminare questa analisi e quelle collegate?"]}},77125:e=>{e.exports={en:["Double Curve"],it:["Curva doppia"]}},9430:e=>{e.exports={en:["Double-click any edge to reset layout grid"],it:["Fai un doppio click su un bordo qualsiasi per reimpostare il layout della griglia"]}},75296:e=>{e.exports={en:["Double-click to finish Path"],it:["Doppio click per terminare il Percorso"]}},17409:e=>{e.exports={en:["Double-click to finish Polyline"],it:["Doppio click per terminare la Multilinea"]}},36539:e=>{e.exports={en:["Double-tap any edge to reset layout grid"],it:["Toccare due volte un bordo qualsiasi per reimpostare la griglia del layout"]}},57131:e=>{e.exports={en:["Data Provided by"],it:["Dati forniti da"]}},22677:e=>{e.exports={en:["Date"],it:["Data"]}},85444:e=>{e.exports={en:["Date Range"],it:["Range data"]}},47017:e=>{e.exports={en:["Date and Price Range"],it:["Range data e prezzo"]}},32084:e=>{e.exports={en:["Dec"],it:["Dic"]}},23403:e=>{e.exports={en:["Degree"],it:["Gradi"]}},27358:e=>{e.exports={en:["Denver"]}},24959:e=>{e.exports={en:["Dhaka"]}},15179:e=>{e.exports={en:["Diamond"],it:["Diamante"]}},91544:e=>{e.exports={en:["Disjoint Channel"],it:["Canale disgiunto"]}},70132:e=>{e.exports={en:["Displacement"],it:["Spostamento"]}},93864:e=>{e.exports={en:["Drawings toolbar"],it:["Barra degli strumenti di disegno"]}},56916:e=>{e.exports={en:["Draw Horizontal Line at {price}"],it:["Disegna una linea orizzontale a {price}"]}},23650:e=>{e.exports={en:["Dubai"]}},79716:e=>{e.exports={en:["Dublin"],it:["Dublino"]}},73456:e=>{e.exports={en:["Emoji"]}},9541:e=>{e.exports={en:["Enter a new chart layout name"],it:["Inserisci nuovo nome layout grafico"]}},80943:e=>{e.exports={en:["Elliott Correction Wave (ABC)"],it:["Onda di Elliott correttiva (ABC)"]}},75112:e=>{e.exports={en:["Elliott Double Combo Wave (WXY)"],
|
||||
it:["Onda di Elliott doppia combo (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],it:["Onda di Elliott impulsiva (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],it:["Onda di Elliot triangolo (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],it:["Onda di Elliot tripla combo (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],it:["Ellisse"]}},52788:e=>{e.exports={en:["Extended Line"],it:["Linea estesa"]}},86905:e=>{e.exports={en:["Exchange"],it:["Borsa"]}},19271:e=>{e.exports={en:["Existing pane above"],it:["Pannello esistente superiore"]}},46545:e=>{e.exports={en:["Existing pane below"],it:["Pannello esistente inferiore"]}},20138:e=>{e.exports={en:["Forecast"],it:["Previsione"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],it:["Canale Fib"]}},82330:e=>{e.exports={en:["Fib Circles"],it:["Cerchi Fib"]}},55986:e=>{e.exports={en:["Fib Retracement"],it:["Ritracciamento Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],it:["Archi Fib"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],it:["Linee a ventaglio di Fibonacci"]}},39014:e=>{e.exports={en:["Fib Spiral"],it:["Spirale Fib"]}},30622:e=>{e.exports={en:["Fib Time Zone"],it:["Ciclo temporale Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],it:["Cuneo Fib"]}},33885:e=>{e.exports={en:["Flag"],it:["Bandiera"]}},14600:e=>{e.exports={en:["Flag Mark"],it:["Bandiera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],it:["Cima/Fondo piatto"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],it:["La frazione non è valida."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],it:["Gli indicatori di tipo fondamentale non sono più disponibili nei grafici"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],it:["Area HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],it:["Candele vuote"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],it:["Linea orizzontale"]}},25487:e=>{e.exports={en:["Horizontal Ray"],it:["Semiretta orizzontale"]}},21928:e=>{e.exports={en:["Head and Shoulders"],it:["Testa e spalle"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],it:["Nascondi"]}},47074:e=>{e.exports={en:["Hide all"],it:["Nascondi tutto"]}},52563:e=>{e.exports={en:["Hide all drawings"],it:["Nascondi tutti gli strumenti di disegno"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],it:["Nascondi ogni indicatore e disegno"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],it:["Nascondi disegni, indicatori, posizioni e ordini"]}},78525:e=>{e.exports={en:["Hide all indicators"],it:["Nascondi ogni indicatore"]}},
|
||||
42164:e=>{e.exports={en:["Hide all positions & orders"],it:["Nascondi tutte le posizioni e gli ordini"]}},3217:e=>{e.exports={en:["Hide drawings"],it:["Nascondi disegni"]}},97878:e=>{e.exports={en:["Hide events on chart"],it:["Nascondi eventi sul grafico"]}},72351:e=>{e.exports={en:["Hide indicators"],it:["Nascondi indicatori"]}},28345:e=>{e.exports={en:["Hide marks on bars"],it:["Nascondi note sulle barre"]}},92226:e=>{e.exports={en:["Hide positions & orders"],it:["Nascondi posizioni e ordini"]}},78254:e=>{e.exports={en:["High"],it:["Massimo"]}},98236:e=>{e.exports={en:["High-low"],it:["Max-min"]}},99479:e=>{e.exports={en:["High and low price labels"],it:["Etichette prezzo max e min"]}},33766:e=>{e.exports={en:["High and low price lines"],it:["Linee prezzo max e min"]}},69476:e=>{e.exports={en:["Highlighter"],it:["Evidenziatore"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],it:["L'istogramma è troppo grande, aumentare {boldHighlightStart}Dimensione riga{boldHighlightEnd} nella finestra delle impostazioni."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],it:["L'istogramma è troppo grande, aumentare {boldHighlightStart}Tick per riga{boldHighlightEnd} nella finestra delle impostazioni."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],it:["L'istogramma è troppo grande, ridurre {boldHighlightStart}Dimensione riga{boldHighlightEnd} nella finestra delle impostazioni."]}},68065:e=>{e.exports={en:["Image"],it:["Immagine"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],it:["Gli intervalli inferiori a {resolution} non sono supportati per {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],it:["Intermedio"]}},14285:e=>{e.exports={en:["Invalid Symbol"],it:["Simbolo non valido"]}},52969:e=>{e.exports={en:["Invalid symbol"],it:["Simbolo non valido"]}},37189:e=>{e.exports={en:["Invert scale"],it:["Inverti asse"]}},89999:e=>{e.exports={en:["Indexed to 100"],it:["Indicizzata a base 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],it:["Etichette valore indicatori"]}},54418:e=>{e.exports={en:["Indicators name labels"],it:["Etichette nome indicatori"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],it:["Indicatori, metriche e strategie. Premere slash"]}},15992:e=>{e.exports={en:["Info Line"],it:["Infolinea"]}},87829:e=>{e.exports={en:["Insert indicator"],it:["Inserisci indicatore"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],it:["Pitchfork Inside"]}},37913:e=>{e.exports={en:["Icon"],it:["Icona"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"],it:["Giacarta"]}},62310:e=>{e.exports={en:["Jan"],it:["Gen"]}},36057:e=>{e.exports={en:["Jerusalem"],it:["Gerusalemme"]}},53786:e=>{e.exports={
|
||||
en:["Jul"],it:["Lug"]}},429:e=>{e.exports={en:["Jun"],it:["Giu"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],it:["Sulla sinistra"]}},55813:e=>{e.exports={en:["On the right"],it:["Sulla destra"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],it:["Per {ticker} sono supportati solo gli intervalli {availableResolutions}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"],it:["Albero oggetti"]}},12179:e=>{e.exports={en:["Oct"],it:["Ott"]}},16610:e=>{e.exports={en:["Open"],it:["Apertura"]}},27884:e=>{e.exports={en:["Open layout. Press period"],it:["Apri layout. Premi il punto"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],it:["Minimo"]}},51077:e=>{e.exports={en:["Lock"],it:["Blocca"]}},79777:e=>{e.exports={en:["Lock/unlock"],it:["Blocca/Sblocca"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],it:["Blocca cursore verticale di tempo"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],it:["Blocca rapporto prezzo/barra"]}},16170:e=>{e.exports={en:["Logarithmic"],it:["Logaritmica"]}},19439:e=>{e.exports={en:["London"],it:["Londra"]}},74832:e=>{e.exports={en:["Long Position"],it:["Posizione long"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],it:["Etichetta giù"]}},52402:e=>{e.exports={en:["Label Up"],it:["Etichetta su"]}},5119:e=>{e.exports={en:["Labels"],it:["Etichette"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],it:["Variazione ultimo giorno di negoziazione"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],it:["Linea"]}},9394:e=>{e.exports={en:["Line with markers"],it:["Linea con contrassegni"]}},43588:e=>{e.exports={en:["Line break"],it:["Line Break"]}},56982:e=>{e.exports={en:["Lines"],it:["Linee"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],it:["Link all'immagine del grafico copiata negli appunti {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],it:["Lisbona"]}},81038:e=>{e.exports={en:["Luxembourg"],it:["Lussemburgo"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],it:["Muovi il cursore e clicca sul punto dove vuoi fissare l'ancoraggio"]}},35049:e=>{e.exports={en:["Move to"],it:["Sposta"]}},26493:e=>{e.exports={en:["Move scale to left"],it:["Sposta asse a sinistra"]}},40789:e=>{e.exports={en:["Move scale to right"],it:["Sposta asse a destra"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],it:["Pitchfork Schiff modificata"]}},93907:e=>{e.exports={en:["More settings"],it:["Altre impostazioni"]}},64039:e=>{e.exports={en:["Moscow"],it:["Mosca"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"],it:["Città del Messico"]}},88314:e=>{e.exports={en:["Merge all scales into one"],it:["Unisci tutti gli assi in uno"]}},54215:e=>{e.exports={en:["Mixed"],it:["Misto"]}},
|
||||
24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"],it:["Millennio"]}},14724:e=>{e.exports={en:["Minuette"],it:["Minuetto"]}},78273:e=>{e.exports={en:["Minuscule"],it:["Minuscolo"]}},9865:e=>{e.exports={en:["Muscat"],it:["Mascate"]}},96935:e=>{e.exports={en:["N/A"],it:["N/D"]}},36252:e=>{e.exports={en:["No data here"],it:["Nessun dato qui"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],it:["Nessun asse (schermo intero)"]}},9140:e=>{e.exports={en:["No sync"],it:["Nessuna sincronizzazione"]}},50910:e=>{e.exports={en:["No volume data"],it:["Nessun dato sul volume"]}},99024:e=>{e.exports={en:["No, keep them"],it:["No, conservali"]}},94389:e=>{e.exports={en:["Note"],it:["Nota"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],it:["Isola Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],it:["Nuova Zelanda"]}},15512:e=>{e.exports={en:["New pane above"],it:["Nuovo pannello superiore"]}},52160:e=>{e.exports={en:["New pane below"],it:["Nuovo pannello inferiore"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],it:["Dati immessi non validi"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],it:["Qualcosa è andato storto durante la creazione dell'indicatore."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],it:["Qualcosa è andato storto. Prova di nuovo più tardi."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],it:["Salva nuovo layout grafico"]}},76266:e=>{e.exports={en:["Save as"],it:["Salva come"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"],it:["San Paolo"]}},43931:e=>{e.exports={en:["Scale currency"],it:["Valuta della scala"]}},43758:e=>{e.exports={en:["Scale price chart only"],it:["Utilizza solo scala del prezzo"]}},40012:e=>{e.exports={en:["Scale unit"],it:["Unità della scala"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],it:["Pitchfork Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],it:["Lo script potrebbe non essere aggiornato se lasci la pagina."]}},32514:e=>{e.exports={en:["Settings"],it:["Impostazioni"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],it:["Seconda frazione non valida."]}},75594:e=>{e.exports={en:["Security info"],it:["Info simbolo"]}},21973:e=>{e.exports={en:["Send to back"],it:["Metti in secondo piano"]}},71179:e=>{e.exports={en:["Send backward"],it:["Sposta indietro"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"],it:["Set"]}},94031:e=>{e.exports={en:["Session"],it:["Sessione"]}},83298:e=>{e.exports={en:["Session volume profile"],it:["Profilo volume sessione"]}},66707:e=>{e.exports={en:["Session breaks"],it:["Separatori sessione"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],it:["Posizione short"]}},98334:e=>{e.exports={en:["Show"],it:["Mostra"]}},85891:e=>{e.exports={
|
||||
en:["Show all drawings"],it:["Mostra ogni disegno"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],it:["Mostra ogni indicatore e disegno"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],it:["Mostra disegni, indicatori, posizioni e ordini"]}},98753:e=>{e.exports={en:["Show all indicators"],it:["Mostra ogni indicatore"]}},55418:e=>{e.exports={en:["Show all ideas"],it:["Mostra tutte le idee"]}},20506:e=>{e.exports={en:["Show all positions & orders"],it:["Mostra tutte le posizioni e gli ordini"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],it:["Mostra switch contratto continuo"]}},81465:e=>{e.exports={en:["Show contract expiration"],it:["Mostra la scadenza del contratto"]}},29449:e=>{e.exports={en:["Show dividends"],it:["Mostra dividendi"]}},37113:e=>{e.exports={en:["Show earnings"],it:["Mostra utili"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],it:["Mostra idee degli utenti che segui"]}},62986:e=>{e.exports={en:["Show latest news"],it:["Mostra le ultime notizie"]}},44020:e=>{e.exports={en:["Show my ideas only"],it:["Mostra solo mie idee"]}},50849:e=>{e.exports={en:["Show splits"],it:["Mostra frazionamenti"]}},67751:e=>{e.exports={en:["Signpost"],it:["Segnale"]}},77377:e=>{e.exports={en:["Singapore"]}},39090:e=>{e.exports={en:["Sine Line"],it:["Curva sinusoidale"]}},66205:e=>{e.exports={en:["Square"],it:["Quadrato"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],it:["Superato il limite di {number} studi per layout. Rimuovine qualcuno, grazie."]}},92516:e=>{e.exports={en:["Style"],it:["Stile"]}},61507:e=>{e.exports={en:["Stack on the left"],it:["Sinistra"]}},97800:e=>{e.exports={en:["Stack on the right"],it:["Destra"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],it:["Inizia a usare la modalità di navigazione da tastiera. Premere {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],it:["Rimani in modalità disegno"]}},69217:e=>{e.exports={en:["Step line"],it:["Linea a step"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"],it:["Stoccolma"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"],it:["Sotto-Minuetto"]}},67948:e=>{e.exports={en:["Supercycle"],it:["SuperCiclo"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],it:["Passa a {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],it:["Errore simbolo"]}},32390:e=>{e.exports={en:["Symbol name label"],it:["Etichetta nome simbolo"]}},10127:e=>{e.exports={en:["Symbol last price label"],it:["Etichetta ultimo valore simbolo"]}},39079:e=>{e.exports={en:["Sync globally"],it:["Sincronizza tutto"]}},46607:e=>{e.exports={en:["Sync in layout"],it:["Sincronizza nel layout"]}},76519:e=>{e.exports={en:["Point & figure"],it:["Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"],it:["Multilinea"]}},
|
||||
371:e=>{e.exports={en:["Path"],it:["Percorso"]}},59256:e=>{e.exports={en:["Parallel Channel"],it:["Canale parallelo"]}},61879:e=>{e.exports={en:["Paris"],it:["Parigi"]}},35140:e=>{e.exports={en:["Paste"],it:["Incolla"]}},6919:e=>{e.exports={en:["Percent"],it:["Percentuale"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"],it:["Spilla"]}},33110:e=>{e.exports={en:["Pin to new left scale"],it:["Fissa a nuovo asse sinistro"]}},28280:e=>{e.exports={en:["Pin to new right scale"],it:["Fissa a nuovo asse destro"]}},14115:e=>{e.exports={en:["Pin to left scale"],it:["Fissa all'asse sinistro"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],it:["Fissa all'asse sinistro (nascosto)"]}},81054:e=>{e.exports={en:["Pin to right scale"],it:["Fissa all'asse destro"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],it:["Fissa all'asse destro (nascosto)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],it:["Fissa all'asse (ora sinistro)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],it:["Fissa all'asse (ora senza asse)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],it:["Fissa all'asse (ora destro)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],it:["Fissa all'asse (ora {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],it:["Fissa all'asse {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],it:["Fissa all'asse {label} (nascosto)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],it:["Fissato all'asse sinistro"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],it:["Fissato all'asse sinistro (nascosto)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],it:["Fissato all'asse destro"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],it:["Fissa all'asse destro (nascosto)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],it:["Fissato all'asse {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],it:["Fissato all'asse {label} (nascosto)"]}},71566:e=>{e.exports={en:["Plus button"],it:['Pulsante "+"']}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],it:["Abbiamo bisogno dell'autorizzazione del browser a copiare le tue note. Altrimenti, puoi premere {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],it:["Praga"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],it:["Tieni premuto {key} per mantenere la posizione durante lo zoom"]}},91282:e=>{e.exports={en:["Price Label"],it:["Etichetta prezzo"]}},97512:e=>{e.exports={en:["Price Note"],it:["Nota di prezzo"]}},68941:e=>{e.exports={en:["Price Range"],it:["Range prezzo"]}},66123:e=>{e.exports={en:["Price format is invalid."],it:["Il formato quotazioni non è valido."]}},72926:e=>{e.exports={en:["Price line"],it:["Linea quotazioni"]}},59189:e=>{e.exports={en:["Primary"],it:["Primario"]}},75747:e=>{e.exports={
|
||||
en:["Projection"],it:["Proiezione"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],it:["Pubblicato su {customer} il {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],it:["Ricerca rapida. Premere {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],it:["Rettangolo ruotato"]}},52961:e=>{e.exports={en:["Rome"],it:["Roma"]}},50318:e=>{e.exports={en:["Ray"],it:["Raggio"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],it:["Rettangolo"]}},48236:e=>{e.exports={en:["Redo"],it:["Ripeti"]}},2460:e=>{e.exports={en:["Regression Trend"],it:["Regressione trend"]}},67410:e=>{e.exports={en:["Remove"],it:["Elimina"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],it:["Rimuovi questa metrica dai preferiti"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],it:["Rimuovi questo indicatore dai preferiti"]}},86285:e=>{e.exports={en:["Remove {drawings}"],it:["Rimuovi {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],it:["Rimuovi {drawings} e {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],it:["Rimuovi {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],it:["Rinomina layout grafico"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],it:["Reimposta la visualizzazione del grafico"]}},88853:e=>{e.exports={en:["Reset points"],it:["Reset dei punti"]}},15332:e=>{e.exports={en:["Reset price scale"],it:["Reimposta asse di prezzo"]}},54170:e=>{e.exports={en:["Reset time scale"],it:["Reimposta asse di tempo"]}},37974:e=>{e.exports={en:["Riyadh"],it:["Riyad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],it:["Errore di runtime"]}},66719:e=>{e.exports={en:["Warning"],it:["Avviso"]}},5959:e=>{e.exports={en:["Warsaw"],it:["Varsavia"]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],it:["Tabella"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"],it:["Modello"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],it:["Il fornitore dati non fornisce i volumi per questo simbolo."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],it:["Impossibile caricare anteprima pubblicazione. Disabilita le estensioni del browser e riprova."]}},99274:e=>{e.exports={en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],
|
||||
it:["L'elaborazione della richiesta ha richiesto troppo tempo. Assicurati di avere una connessione Internet stabile. Se il problema persiste, provare a diminuire la lunghezza dell'intervallo di tempo richiesto."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],it:["Non ci sono dati per il periodo ed il timeframe del grafico."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],it:["Questo file è troppo grande. La dimensione massima consentita è di {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],it:["Questo indicatore non può essere applicato ad un altro indicatore"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],it:["Questo script contiene un errore. Si prega di contattare l'autore."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],it:["Questo script è su invito. Per richiedere l'accesso, devi contattare l'autore."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],it:["Il simbolo è disponibile solo su {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],it:["Pattern Three Drives"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],it:["Gli intervalli basati sui tick non sono disponibili per {ticker}."]}},12806:e=>{e.exports={en:["Time"],it:["Ora"]}},20909:e=>{e.exports={en:["Time zone"],it:["Fuso orario"]}},46852:e=>{e.exports={en:["Time Cycles"],it:["Cicli temporali"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],it:["Tradingview è interattivo e dispone di comandi da utilizzare con uno screen reader. Di seguito è riportato un elenco di comandi da tastiera disponibili per interagire con la piattaforma"]}},35757:e=>{e.exports={en:["Trend Angle"],it:["Angolo Trend"]}},97339:e=>{e.exports={en:["Trend Line"],it:["Trend line"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],it:["Estensione Fibonacci"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],it:["Ciclo temporale su trend Fibonacci"]}},1671:e=>{e.exports={en:["Triangle"],it:["Triangolo"]}},76152:e=>{e.exports={en:["Triangle Down"],it:["Triangolo giù"]}},90148:e=>{e.exports={en:["Triangle Pattern"],it:["Pattern a triangolo"]}},21236:e=>{e.exports={en:["Triangle Up"],it:["Triangolo su"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],it:["Annulla"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],it:["Errore imprevisto in modalità Backtesting esteso. Contattare l'assistenza per ulteriori informazioni."]}},15432:e=>{e.exports={en:["Units"],it:["Unità"]}},11768:e=>{e.exports={en:["Unknown error"],
|
||||
it:["Errore sconosciuto"]}},99894:e=>{e.exports={en:["Unlock"],it:["Sblocca"]}},75546:e=>{e.exports={en:["Unsupported interval"],it:["Intervallo non supportato"]}},8580:e=>{e.exports={en:["User-defined error"],it:["Errore definito dall'utente"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],it:["Profilo volume ad intervallo fisso"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],it:["L'indicatore di Profilo volume è disponibile solo con uno dei nostri abbonamenti."]}},93722:e=>{e.exports={en:["Volume candles"],it:["Candele volume"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],it:["Il volume non viene fornito nel piano dati BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],it:["Footprint volume"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],it:["Linea verticale"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],it:["Visibilità"]}},54853:e=>{e.exports={en:["Visibility on intervals"],it:["Visibilità intervalli"]}},58302:e=>{e.exports={en:["Visible on tap"],it:["Visibile al tocco"]}},10309:e=>{e.exports={en:["Visible on mouse over"],it:["Visibile al passaggio del mouse"]}},4077:e=>{e.exports={en:["Visual order"],it:["Ordine visualizzazione"]}},11316:e=>{e.exports={en:["X Cross"],it:["Incrocio X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],it:["Pattern XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],it:["Non puoi consultare il pivot con quella risoluzione in questo timeframe"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],it:["Su questo simbolo sono stati bloccati dei disegni. Vuoi rimuovere anche i disegni bloccati?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"],it:["Sì, rimuovili"]}},62859:e=>{e.exports={en:["Zurich"],it:["Zurigo"]}},47977:e=>{e.exports={en:["change Elliott degree"],it:["cambio grado Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],it:["cambio etichette non sovrapposte"]}},76852:e=>{e.exports={en:["change average close price label visibility"],it:["cambio visibilità etichetta prezzo medio chiusura"]}},1022:e=>{e.exports={en:["change average close price line visibility"],it:["cambio visibilità linea prezzo medio chiusura"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],it:["cambia visibilità etichette bid e ask"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],it:["cambia visibilità linee bid e ask"]}},32302:e=>{e.exports={en:["change currency"],it:["cambio valuta"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],it:["cambio layout grafico su {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],it:["cambio visibilità switch contratto continuo"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],
|
||||
it:["cambia visibilità conto alla rovescia"]}},16979:e=>{e.exports={en:["change date range"],it:["cambio range tempo"]}},53929:e=>{e.exports={en:["change dividends visibility"],it:["cambia visibilità dividendi staccati"]}},6119:e=>{e.exports={en:["change events visibility on chart"],it:["cambia visibilità eventi sul grafico"]}},6819:e=>{e.exports={en:["change earnings visibility"],it:["cambia visibilità utili rilasciati"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],it:["modifica la visibilità della scadenza dei contratti futures"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],it:["cambia visibilità etichette prezzo min e max"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],it:["cambia visibilità linee prezzo max e min"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],it:["cambia visibilità etichette nomi indicatori"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],it:["cambia visibilità etichette valore indicatori"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],it:["modifica visibilità ultimi aggiornamenti"]}},88849:e=>{e.exports={en:["change linking group"],it:["modifica gruppo di collegamento"]}},14691:e=>{e.exports={en:["change pane height"],it:["cambio altezza pannello"]}},96379:e=>{e.exports={en:["change plus button visibility"],it:["cambia visibilità pulsante +"]}},76660:e=>{e.exports={en:["change point"],it:["modifica punto"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],it:["cambia visibilità etichette prezzo pre e post mercato"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],it:["cambia visibilità linea prezzo pre e post mercato"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],it:["cambia visibilità linea chiusura precedente"]}},8662:e=>{e.exports={en:["change price line visibility"],it:["Cambia linea prezzo"]}},2509:e=>{e.exports={en:["change price to bar ratio"],it:["cambio rapporto prezzo / barra"]}},32829:e=>{e.exports={en:["change resolution"],it:["Cambia timeframe"]}},35400:e=>{e.exports={en:["change symbol"],it:["Cambia simbolo"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],it:["cambio visibilità etichette simbolo"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],it:["cambia visibilità ultimo valore simbolo"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],it:["cambia visibilità chiusura precedente simbolo"]}},87041:e=>{e.exports={en:["change session"],it:["cambio sessione"]}},38413:e=>{e.exports={en:["change session breaks visibility"],it:["cambio visibilità separatori sessione"]}},49965:e=>{e.exports={en:["change series style"],it:["cambio stile serie"]}},47474:e=>{e.exports={en:["change splits visibility"],it:["cambia visibilità frazionamenti"]}},20137:e=>{e.exports={en:["change timezone"],it:["cambio fuso orario"]}},85975:e=>{e.exports={en:["change unit"],it:["cambio unità"]}},1924:e=>{e.exports={
|
||||
en:["change visibility"],it:["Cambia visibilità"]}},84331:e=>{e.exports={en:["change visibility at current interval"],it:["Cambia visibilità all'intervallo corrente"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],it:["Cambia visibilità all'intervallo corrente e superiore"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],it:["Cambia visibilità all'intervallo corrente e inferiore"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],it:["Cambia visibilità a tutti gli intervalli"]}},94566:e=>{e.exports={en:["charts by TradingView"],it:["grafici da TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],it:["Clonazione strumento"]}},46219:e=>{e.exports={en:["create line tools group"],it:["Crea gruppo strumenti linea"]}},95394:e=>{e.exports={en:["create line tools group from selection"],it:["Crea gruppo strumenti linea dalla selezione"]}},12898:e=>{e.exports={en:["create {tool}"],it:["creazione {tool}"]}},94227:e=>{e.exports={en:["cut sources"],it:["taglia fonti"]}},11500:e=>{e.exports={en:["cut {title}"],it:["taglia {title}"]}},63869:e=>{e.exports={en:["anchor objects"],it:["ancora oggetti"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],it:["Aggiungi strumento linea {lineTool} al gruppo {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],it:["aggiungi le linee al gruppo {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],it:["Applica questo dato finanziario all'intero layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],it:["applica questo indicatore all'intero layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],it:["Applica questa strategia all'intero layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],it:["Applica questo simbolo all'intero layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"],it:["allinea a 45 gradi"]}},68231:e=>{e.exports={en:["apply chart theme"],it:["applica tema grafico"]}},99551:e=>{e.exports={en:["apply all chart properties"],it:["applicazione proprietà grafico"]}},89720:e=>{e.exports={en:["apply drawing template"],it:["Applica modello disegno"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],it:["applicazione reset su fonti selezionate"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],it:["applica indicatori su layout intero"]}},69604:e=>{e.exports={en:["apply study template {template}"],it:["Applica modello indicatore {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],it:["applicazione tema barra strumenti"]}},1979:e=>{e.exports={en:["bring group {title} forward"],it:["metti gruppo {title} in primo piano"]}},53159:e=>{e.exports={en:["bring {title} to front"],it:["porta {title} davanti"]}},41966:e=>{e.exports={en:["bring {title} forward"],it:["Manda {title} avanti"]}},44676:e=>{e.exports={en:["by TradingView"],it:["da TradingView"]}},58850:e=>{e.exports={en:["date range lock"],it:["blocco range di tempo"]}},99395:e=>{
|
||||
e.exports={en:["exclude line tools from group {group}"],it:["Escludi strumenti linea dal gruppo {group}"]}},13017:e=>{e.exports={en:["hide {title}"],it:["Nascondi {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],it:["Nascondi note sulle barre"]}},56558:e=>{e.exports={en:["interval lock"],it:["blocco intervallo"]}},6830:e=>{e.exports={en:["invert scale"],it:["Inverti asse"]}},48818:e=>{e.exports={en:["insert {title}"],it:["inserimento {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],it:["inserimento {title} dopo {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],it:["Inserisci {title} dopo {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],it:["aggiungi {title} prima di {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],it:["aggiungi {title} prima di {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],it:["caricamento modello disegni default"]}},62011:e=>{e.exports={en:["loading..."],it:["caricamento...."]}},76104:e=>{e.exports={en:["lock {title}"],it:["Blocca {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],it:["blocca gruppo {group}"]}},18942:e=>{e.exports={en:["lock objects"],it:["blocca oggetti"]}},98277:e=>{e.exports={en:["move"],it:["spostamento"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],it:["Sposta {title} su nuovo asse sinistro"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],it:["sposta {title} su un nuovo asse a destra"]}},64077:e=>{e.exports={en:["move all scales to left"],it:["Sposta tutti gli assi a sinistra"]}},19013:e=>{e.exports={en:["move all scales to right"],it:["Sposta tutti gli assi a destra"]}},52510:e=>{e.exports={en:["move drawing(s)"],it:["spostamento disegno/i"]}},79209:e=>{e.exports={en:["move left"],it:["sposta a sinistra"]}},60114:e=>{e.exports={en:["move right"],it:["sposta a destra"]}},44854:e=>{e.exports={en:["move scale"],it:["Sposta asse"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],it:["Dissocia {title} dall'asse (schermo intero)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],it:["Rendi gruppo {group} invisibile"]}},45987:e=>{e.exports={en:["make group {group} visible"],it:["Rendi gruppo {group} visibile"]}},78055:e=>{e.exports={en:["merge down"],it:["unione sotto"]}},41866:e=>{e.exports={en:["merge to pane"],it:["unione a pannello"]}},52458:e=>{e.exports={en:["merge up"],it:["unione sopra"]}},90091:e=>{e.exports={en:["n/a"],it:["N/D"]}},94981:e=>{e.exports={en:["scale price"],it:["scala di prezzo"]}},63796:e=>{e.exports={en:["scale price chart only"],it:["Utilizza solo scala del prezzo"]}},70771:e=>{e.exports={en:["scale time"],it:["cambio scala"]}},42070:e=>{e.exports={en:["scroll"],it:["scorrimento"]}},87840:e=>{e.exports={en:["scroll time"],it:["scorrimento tempo"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],it:["impostazione strategia di selezione scala di prezzo su {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],
|
||||
it:["porta {title} indietro"]}},5005:e=>{e.exports={en:["send {title} to back"],it:["porta {title} indietro"]}},69546:e=>{e.exports={en:["send group {title} backward"],it:["metti gruppo {title} in secondo piano"]}},63934:e=>{e.exports={en:["share line tools globally"],it:["condivisione globale linee"]}},90221:e=>{e.exports={en:["share line tools in layout"],it:["condivisione linee su layout"]}},13336:e=>{e.exports={en:["show all ideas"],it:["mostra tutte le idee"]}},91395:e=>{e.exports={en:["show ideas of followed users"],it:["mostra idee degli utenti seguiti"]}},57460:e=>{e.exports={en:["show my ideas only"],it:["mostra solo le mie idee"]}},4114:e=>{e.exports={en:["stay in drawing mode"],it:["rimani in modalità disegno"]}},3350:e=>{e.exports={en:["stop syncing drawing"],it:["stop sincronizzazione disegni"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],it:["ferma sincronizzazione linee"]}},53278:e=>{e.exports={en:["symbol lock"],it:["blocco simbolo"]}},91677:e=>{e.exports={en:["sync time"],it:["sincronizza ora"]}},3140:e=>{e.exports={en:["powered by"],it:["fornito da"]}},92800:e=>{e.exports={en:["powered by TradingView"],it:["fornito da TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],it:["incolla disegno"]}},1064:e=>{e.exports={en:["paste indicator"],it:["incolla indicatore"]}},57010:e=>{e.exports={en:["paste {title}"],it:["incolla {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],it:["fissa all'asse sinistro"]}},7495:e=>{e.exports={en:["pin to right scale"],it:["Fissa all'asse destro"]}},81566:e=>{e.exports={en:["pin to scale {label}"],it:["fissa sull'asse {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],it:["modifica pannelli"]}},60806:e=>{e.exports={en:["remove all indicators"],it:["rimuovi tutti gli indicatori"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],it:["rimuovi tutti gli indicatori ed i disegni"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],it:["rimozione linee vuote deselezionate"]}},30538:e=>{e.exports={en:["remove drawings"],it:["Elimina disegni"]}},1193:e=>{e.exports={en:["remove drawings group"],it:["rimuovi gruppo disegni"]}},38199:e=>{e.exports={en:["remove line data sources"],it:["rimozione fonti dati linea"]}},93333:e=>{e.exports={en:["remove pane"],it:["rimozione pannello"]}},94543:e=>{e.exports={en:["remove {title}"],it:["rimuovi {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],it:["rimozione strumenti linea del gruppo {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],it:["Rinomina gruppo {group} in {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],it:["ripristina dimensioni layout"]}},3323:e=>{e.exports={en:["reset scales"],it:["reset scala"]}},17336:e=>{e.exports={en:["reset time scale"],it:["Reimposta asse di tempo"]}},47418:e=>{e.exports={en:["resize layout"],it:["modifica dimensioni layout"]}},85815:e=>{e.exports={en:["restore defaults"],it:["ripristino default"]}},96881:e=>{e.exports={en:["restore study defaults"],
|
||||
it:["ripristinare le impostazioni predefinite dello studio"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],it:["attiva massimizzazione del pannello"]}},42240:e=>{e.exports={en:["toggle auto scale"],it:["attiva/disattiva scala automatica"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],it:["modifica stato pannello chiuso"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],it:["switch scala indicizzata su base 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],it:["blocco scala"]}},49403:e=>{e.exports={en:["toggle log scale"],it:["attiva/disattiva scala logaritmica"]}},98994:e=>{e.exports={en:["toggle percentage scale"],it:["Attiva scala percentuale"]}},80688:e=>{e.exports={en:["toggle regular scale"],it:["switch scala regolare"]}},46807:e=>{e.exports={en:["track time"],it:["traccia tempo"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],it:["disattiva condivisione linee"]}},99234:e=>{e.exports={en:["unanchor objects"],it:["disancora oggetti"]}},23230:e=>{e.exports={en:["unlock objects"],it:["sblocca oggetti"]}},74590:e=>{e.exports={en:["unlock group {group}"],it:["Sblocca gruppo {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],it:["sblocca {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],it:["separazione su nuovo pannello"]}},79443:e=>{e.exports={en:["unmerge up"],it:["separazione sopra"]}},46453:e=>{e.exports={en:["unmerge down"],it:["separazione sotto"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],it:["Oh no! Il tipo di grafico {chartStyle} non è attualmente disponibile per gli intervalli basati sui tick."]}},41643:e=>{e.exports={en:["{count} bars"],it:["{count} barre"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],it:["{symbol} dati finanziari da TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],it:["{userName} ha pubblicato su {customer} il {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],it:["ingrandimento"]}},73638:e=>{e.exports={en:["zoom out"],it:["riduzione"]}},41807:e=>{e.exports={en:["day","days"],it:["giorno","giorni"]}},42328:e=>{e.exports={en:["hour","hours"],it:["ora","ore"]}},98393:e=>{e.exports={en:["month","months"],it:["mese","mesi"]}},78318:e=>{e.exports={en:["minute","minutes"],it:["minuto","minuti"]}},33232:e=>{e.exports={en:["second","seconds"],it:["secondo","secondi"]}},89937:e=>{e.exports={en:["range","ranges"],it:["range","range"]}},48898:e=>{e.exports={en:["week","weeks"],it:["settimana","settimane"]}},11913:e=>{e.exports={en:["tick","ticks"],it:["tick","tick"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],it:["{amount} disegno","{amount} disegni"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],it:["{amount} indicatore","{amount} indicatori"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),
|
||||
e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],it:["Indice S&P/ASX All Australian 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],it:["Indice S&P/ASX All Australian 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],it:["Indice S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],it:["Dollaro australiano/Dollaro canadese"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],it:["Dollaro australiano / Franco svizzero"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],it:["Dollaro australiano / Yen giapponese"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],it:["Dollaro australiano / Dollaro neozelandese"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],it:["Dollaro australiano / Rublo russo"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],it:["Dollaro australiano / Dollaro"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],it:["Indice S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],it:["Bitcoin Cash / Dollaro"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],it:["Indice BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],it:["Indice BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],it:["Indice Bitcoin / Dollaro"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],it:["Indice IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],it:["Indice Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],it:["Indice IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],it:["Indice Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],it:["Indice S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],it:["Real brasiliano / Yen giapponese"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],it:["Indice S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={en:["Bitcoin / Brazilian Real"],it:["Bitcoin / Real Brasiliano"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],it:["Bitcoin / Dollaro Canadese"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],
|
||||
it:["Bitcoin / Yuan Cinese"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],it:["Bitcoin / Sterlina"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],it:["Bitcoin / Yen Giapponese"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],it:["Bitcoin / Won Sudcoreano"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],it:["Bitcoin / Zloty Polacco"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],it:["Bitcoin / Rublo russo"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],it:["Bitcoin / Baht thai"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],it:["Bitcoin / Dollaro"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],it:["Bitcoin Gold / Dollaro"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],it:["Indice Brasile Bovespa"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],it:["Dollaro canadese / Yen giapponese"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],it:["Dollaro canadese / Dollaro USA"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],it:["Indice S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],it:["Indice volatilità S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],it:["Futures T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],it:["Futures mais"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],it:["Futures farina di soia"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],it:["Futures T-Note 10 anni"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],it:["Futures avena"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],it:["Futures 30 Day Federal Funds Interest Rate"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],it:["Futures riso"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],it:["Futures soia"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],it:["Futures Grano"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],it:["Futures mini soia"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],it:["Futures mini grano"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],it:["Futures E-MINI DOW JONES ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],it:["Franco svizzero / Yen giapponese"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],it:["Franco svizzero / Dollaro USA"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],it:["Futures Bitcoin CME"]},
|
||||
e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],it:["Futures burro (continuo: contratto a scadenza frontale)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],it:["Futures mangime bestiame"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],it:["Futures carne di maiale"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],it:["Futures bestiame vivo"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],it:["Futures E-mini euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],it:["Futures E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],it:["Futures E-mini yen giapponese"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],it:["Futures NASDAQ 100 E-MINI"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],it:["Indice futures E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],it:["Futures Aluminium European Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],it:["Futures Aluminum MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],it:["Futures Oro"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],it:["Futures Rame"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],it:["Futures Argento"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],it:["Futures E-mini rame"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],it:["Futures argento (mini)"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],it:["Futures oro (mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],it:["CFD Rame"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],it:["CFD Mais"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],it:["CFD Cotone"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],it:["Cap di mercato totale cripto, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],it:["Indice DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],it:["Indice Dow Jones Composite Average"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],it:["Indice Dow Jones Commodity Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],it:["Indice Dow Jones Commodity Cocoa"]},e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],it:["Indice Dow Jones Commodity Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],it:["Indice Dow Jones Commodity Gold"]},
|
||||
e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],it:["Indice Dow Jones Commodity Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],it:["Indice Dow Jones Commodity Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],it:["Indice Dow Jones Commodity Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],it:["Indice Dow Jones Commodity Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],it:["Indice Dow Jones Commodity Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Dow Jones Industrial Average"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],it:["Indice Dow Jones Transportation Average"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],it:["Indice Dow Jones Utility Average"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],it:["Indice Dow Jones U.S. Coal"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],it:["Indice EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],it:["Ethereum Classic / Dollaro"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],it:["Ethereum / Sterlina"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],it:["Ethereum / Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],it:["Ethereum / Won Sudcoreano"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],it:["Ethereum / Baht thai"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],it:["Ethereum / Dollaro"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],it:["Euro / Dollaro australiano"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],it:["Euro / Real brasiliano"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],it:["Euro / Dollaro canadese"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],it:["Euro / Franco svizzero"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],it:["Euro / Sterlina"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],it:["Euro / Yen giapponese"]},e.exports["#EURNOK-symbol-description"]={en:["Euro / Norwegian Krone"],it:["Euro / Corona Novergese"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],it:["Euro / Dollaro neozelandese"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],it:["Indice AEX"]},
|
||||
e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],it:["Indice BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],it:["Indice CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],it:["Euro / Rublo russo"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],it:["Euro / Rublo russo TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],it:["Euro / Corona svedese"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],it:["Euro / Nuova lira turca"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],it:["Euro / Dollaro"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],it:["Indice Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],it:["Indice CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],it:["Prodotto interno lordo, 1 decimale"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],it:["Popolazione totale: tutte le età compresi i militari in missione"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],it:["Tasso di disoccupazione"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],it:["Indice FTSE Bursa Malaysia KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],it:["Indice S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Industriale Dow Jones"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],it:["Sterlina / Dollaro australiano"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],it:["Sterlina / Dollaro canadese"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],it:["Sterlina / Franco svizzero"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],it:["Sterlina / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],it:["Sterlina / Yen giapponese"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],it:["Sterlina / Dollaro neozelandese"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],it:["Sterlina / Zloty Polacco"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],it:["Sterlina / Rublo russo"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],it:["Sterlina / Dollaro"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],it:["DAX Indice azionario tedesco"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},
|
||||
e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],it:["Indice WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],it:["Indice Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],it:["Indice futures dollaro"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],it:["Indice IDX Composite"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],it:["Indice Hang Seng China Enterprises"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],it:["Indice Jakarta Composite"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],it:["Indice Bursa Malaysia KLCI"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],it:["Indice MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],it:["Indice Euro Stoxx 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],it:["Indice STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],it:["Indice Shanghai Composite"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],it:["IOTA / Dollaro"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],it:["Indice Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],it:["Yen giapponese / Won sudcoreano"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],it:["Yen giapponese / Rublo russo"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],it:["Yen giapponese / Dollaro"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],it:["Litecoin / Real brasiliano"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],it:["Litecoin / Dollaro"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],it:["Luna / Dollaro"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],it:["Futures Petrolio Brent"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],it:["Indice MOEX Russia"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],it:["Indice MOEX"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],it:["Futures Indice MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],it:["Futures Indice MICEX"]},e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],it:["Futures Indice RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],it:["Indice RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},
|
||||
e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],it:["Indice PHLX Housing Sector"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],it:["Ishares Treasury Bond ETF 7-10 anni"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],it:["Ishares Treasury Bond ETF 3-7 anni"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],it:["Indice Nasdaq Composite"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],it:["Indice Nasdaq 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],it:["Indice PHLX Oil Service Sector"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],it:["Ishares 1-3 Anni Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],it:["Indice Philadelphia Semiconductor"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],it:["Ishares Treasury Bond ETF 20+ Anni"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],it:["Indice PHLX Utility Sector"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],it:["Indice PHLX Gold and Silver Sector"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],it:["NEO / Dollaro"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],it:["Indice Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],it:["Indice Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],it:["Futures Etanolo NY"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],it:["Futures cocco"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],it:["Futures Petrolio Greggio Leggero"]},e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],it:["Futures NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],it:["Futures Caffè"]},e.exports["#NYMEX:NG1!-symbol-description"]={
|
||||
en:["Natural Gas Futures"],it:["Futures Gas Naturale"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],it:["Futures palladio"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],it:["Futures Platino"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],it:["Futures Benzina RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],it:["Futures cotone"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],it:["Futures E-mini gas naturale"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],it:["Futures E-mini petrolio greggio leggero"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],it:["Futures E-mini benzina"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],it:["Indice NYSE Composite"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"],it:["Petrolio Brasiliano (PBR)"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],it:["Indice AMEX Composite"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],it:["Indice NYSE ARCA Major Market"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],it:["Dollaro neozelandese / Yen giapponese"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],it:["Dollaro neozelandese / Dollaro"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],it:["Indice (Capital Index) S&P/NZX ALL"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],it:["Indice grezzo S&P / NZX 50"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],it:["CFD Gas Naturale"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],it:["Indice S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],it:["CFD Rame (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],it:["Indice OMX Copenhagen 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],it:["Indice OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],it:["Indice OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],it:["Indice OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={en:["OMX Tallinn Gross Index"],it:["Indice OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],it:["Indice OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},
|
||||
e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],it:["Indice QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],it:["Indice Russo RTS"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],it:["Indice Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],it:["Indice Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],it:["Indice Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],it:["Indice mercato svizzero"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],it:["Solana / Dollaro"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],it:["CFD Semi di soia"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],it:["Indice S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],it:["Indice S&P Goldman Sachs Commodity"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],it:["Indice S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],it:["Indice S&P 500 Value"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],it:["Indice S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],it:["CFD Zucchero"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],it:["Indice Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],it:["Indice Tadawul All Shares"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],it:["Indice TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],it:["Indice S&P/TSX Composite"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],it:["Indice S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],it:["Titoli di stato Australia 10 anni"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Australia 10 anni"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],it:["Indice Dollaro australiano"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],it:["Indice Sterlina"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],it:["Titoli di stato Canada, 10 anni"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],it:["Titoli di stato Canada, rendimento 10 anni"]},e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],it:["Indice CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],it:["Titoli di stato Cina 10 anni"]},e.exports["#TVC:CN10Y-symbol-description"]={
|
||||
en:["China Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Cina 10 anni"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],it:["Indice Dollaro canadese"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],it:["Titoli di stato Germania 10 anni"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Germania 10 anni"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],it:["Indice DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Industriale Dow Jones"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],it:["Indice Dollaro americano"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],it:["Titoli di stato Spagna 10 anni"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Spagna 10 anni"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],it:["Indice Euro"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],it:["Titoli di stato Francia 10 anni"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Francia 10 anni"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],it:["Titoli di stato UK 2 anni"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],it:["Titoli di stato UK 10 anni"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Gran Bretagna 10 anni"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],it:["CFD Oro (US$/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],it:["Indice Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],it:["Indice IBEX 35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],it:["Titoli di stato Indonesia 3 anni"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],it:["Titoli di stato Indonesia 10 anni"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],it:["Titoli di stato Indonesia, 10 anni"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],it:["Titoli di stato India 10 anni"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato India 10 anni"]},e.exports["#TVC:IT10-symbol-description"]={en:["Italy Government Bonds 10 YR"],it:["Titoli di stato Italia 10 anni"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Italia 10 anni"]},
|
||||
e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],it:["Indice Composite US"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],it:["Titoli di stato Giappone 10 anni"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Giappone 10 anni"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],it:["Indice Yen giapponese"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],it:["Indice Korea Composite Stock Price"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],it:["Titoli di stato Corea 10 anni"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Corea 10 anni"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],it:["Titoli di stato Malesia 10 anni"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Malesia 10 anni"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],it:["Indice US 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],it:["Indice Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],it:["Titoli di stato Olanda, 10 anni"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],it:["Titoli di stato Olanda, rendimento 10 anni"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],it:["Indice NYSE Composite"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],it:["Titoli di stato Nuova Zelanda, 10 anni"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],it:["Titoli di stato Nuova Zelanda, rendimento 10 anni"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],it:["CFD Palladio (US$/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],it:["Rendimento titoli di stato Polonia 5 anni"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Polonia 10 anni"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],it:["CFD Platino (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],it:["Titoli di stato Portogallo 10 anni"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Portogallo 10 anni"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],it:["Indice South Africa Top 40"]},e.exports["#TVC:SILVER-symbol-description"]={en:["CFDs on Silver (US$ / OZ)"],it:["CFD Argento (US$/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],it:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],
|
||||
it:["Indice Mercato Svizzero"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],it:["Indice Straits Time"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],it:["Indice Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],it:["Indice Franco Svizzero"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],it:["Indice di stato Turchia 10 anni"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Turchia 10 anni"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],it:["CFD Petrolio greggio Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],it:["Indice UK 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],it:["Titoli di stato USA 2 anni"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],it:["Rendimento titoli di stato Stati Uniti 2 anni"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],it:["Titoli di stato USA 5 anni"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],it:["Rendimento titoli di stato Stati Uniti 5 anni"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],it:["Titoli di stato USA 10 anni"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Stati Uniti 10 anni"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],it:["Titoli di stato USA 30 anni"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],it:["CFD Petrolio WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],it:["Indice volatilità S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],it:["Indice Dollaro Neozelandese"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],it:["Indice azionario Taiwan ponderato sulla capitalizzazione"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],it:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],it:["Indice FTSE 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],it:["CFD Petrolio greggio (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],it:["Uniswap / Dollaro"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Dow Jones Industrial Average"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],it:["Dollaro USA / Dollaro australiano"]},e.exports["#USDBRL-symbol-description"]={en:["U.S. Dollar / Brazilian Real"],it:["Dollaro / Real brasiliano"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],it:["Dollaro / Dollaro canadese"]},e.exports["#USDCHF-symbol-description"]={
|
||||
en:["U.S. Dollar / Swiss Franc"],it:["Dollaro / Franco svizzero"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],it:["Dollaro / Yuan cinese"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],it:["Dollaro / Corona danese"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],it:["Dollaro USA / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],it:["Dollaro / Sterlina"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],it:["Dollaro / Dollaro Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],it:["Dollaro / Fiorino ungherese"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],it:["Dollaro / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],it:["Dollaro / Siclo israeliano"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],it:["Dollaro / Rupìa indiana"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],it:["Dollaro / Yen giapponese"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],it:["Dollaro / Won sudcoreano"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],it:["Dollaro / Peso messicano"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],it:["Dollaro USA / Dollaro neozelandese"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],it:["Dollaro / Peso filippino"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],it:["DOLLARO USA / ZLOTY POLACCO"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],it:["Dollaro / Rublo russo"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],it:["Dollaro / Rublo russo TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],it:["Dollaro / Corona svedese"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],it:["Dollaro / Dollaro Singapore"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],it:["Dollaro / Baht thailandese"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],it:["Dollaro / Nuova lira turca"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],it:["Dollaro / Rand Sudafricano"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],it:["CFD Petrolio greggio (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],it:["CFD Grano"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],it:["Argento / Dollaro"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],it:["Oro / Dollaro"]},e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],it:["Bitcoin / Dollaro Canadese"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],it:["Indice DAX"]},
|
||||
e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],it:["Monero / Dollaro"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],it:["CFD Palladio"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],it:["Platino / Dollaro"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],it:["XRP / Dollaro"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],it:["Zcash / Dollaro"]}}}]);
|
||||
it:["Onda di Elliott doppia combo (WXY)"]}},61114:e=>{e.exports={en:["Elliott Impulse Wave (12345)"],it:["Onda di Elliott impulsiva (12345)"]}},72359:e=>{e.exports={en:["Elliott Triangle Wave (ABCDE)"],it:["Onda di Elliot triangolo (ABCDE)"]}},76129:e=>{e.exports={en:["Elliott Triple Combo Wave (WXYXZ)"],it:["Onda di Elliot tripla combo (WXYXZ)"]}},78996:e=>{e.exports={en:["Ellipse"],it:["Ellisse"]}},52788:e=>{e.exports={en:["Extended Line"],it:["Linea estesa"]}},86905:e=>{e.exports={en:["Exchange"],it:["Borsa"]}},19271:e=>{e.exports={en:["Existing pane above"],it:["Pannello esistente superiore"]}},46545:e=>{e.exports={en:["Existing pane below"],it:["Pannello esistente inferiore"]}},20138:e=>{e.exports={en:["Forecast"],it:["Previsione"]}},2507:e=>{e.exports={en:["Feb"]}},59005:e=>{e.exports={en:["Fib Channel"],it:["Canale Fib"]}},82330:e=>{e.exports={en:["Fib Circles"],it:["Cerchi Fib"]}},55986:e=>{e.exports={en:["Fib Retracement"],it:["Ritracciamento Fibonacci"]}},33880:e=>{e.exports={en:["Fib Speed Resistance Arcs"],it:["Archi Fib"]}},2395:e=>{e.exports={en:["Fib Speed Resistance Fan"],it:["Linee a ventaglio di Fibonacci"]}},39014:e=>{e.exports={en:["Fib Spiral"],it:["Spirale Fib"]}},30622:e=>{e.exports={en:["Fib Time Zone"],it:["Ciclo temporale Fibonacci"]}},85042:e=>{e.exports={en:["Fib Wedge"],it:["Cuneo Fib"]}},33885:e=>{e.exports={en:["Flag"],it:["Bandiera"]}},14600:e=>{e.exports={en:["Flag Mark"],it:["Bandiera"]}},45051:e=>{e.exports={en:["Flat Top/Bottom"],it:["Cima/Fondo piatto"]}},39643:e=>{e.exports={en:["Fraction part is invalid."],it:["La frazione non è valida."]}},24077:e=>{e.exports={en:["Fundamental studies are no longer available on charts"],it:["Gli indicatori di tipo fondamentale non sono più disponibili nei grafici"]}},31561:e=>{e.exports={en:["Kolkata"]}},54533:e=>{e.exports={en:["Kathmandu"]}},83490:e=>{e.exports={en:["Kagi"]}},70913:e=>{e.exports={en:["Karachi"]}},76614:e=>{e.exports={en:["Kuwait"]}},38561:e=>{e.exports={en:["Kuala Lumpur"]}},99906:e=>{e.exports={en:["HLC area"],it:["Area HLC"]}},886:e=>{e.exports={en:["HLC bars"],it:["Barre HLC"]}},34491:e=>{e.exports={en:["Ho Chi Minh"]}},13459:e=>{e.exports={en:["Hollow candles"],it:["Candele vuote"]}},48861:e=>{e.exports={en:["Hong Kong"]}},79668:e=>{e.exports={en:["Honolulu"]}},21795:e=>{e.exports={en:["Horizontal Line"],it:["Linea orizzontale"]}},25487:e=>{e.exports={en:["Horizontal Ray"],it:["Semiretta orizzontale"]}},21928:e=>{e.exports={en:["Head and Shoulders"],it:["Testa e spalle"]}},63876:e=>{e.exports={en:["Heikin Ashi"]}},48203:e=>{e.exports={en:["Helsinki"]}},27298:e=>{e.exports={en:["Hide"],it:["Nascondi"]}},47074:e=>{e.exports={en:["Hide all"],it:["Nascondi tutto"]}},52563:e=>{e.exports={en:["Hide all drawings"],it:["Nascondi tutti gli strumenti di disegno"]}},90763:e=>{e.exports={en:["Hide all drawings and indicators"],it:["Nascondi ogni indicatore e disegno"]}},18216:e=>{e.exports={en:["Hide all drawings, indicators, positions & orders"],it:["Nascondi disegni, indicatori, posizioni e ordini"]}},78525:e=>{e.exports={
|
||||
en:["Hide all indicators"],it:["Nascondi ogni indicatore"]}},42164:e=>{e.exports={en:["Hide all positions & orders"],it:["Nascondi tutte le posizioni e gli ordini"]}},3217:e=>{e.exports={en:["Hide drawings"],it:["Nascondi disegni"]}},97878:e=>{e.exports={en:["Hide events on chart"],it:["Nascondi eventi sul grafico"]}},72351:e=>{e.exports={en:["Hide indicators"],it:["Nascondi indicatori"]}},28345:e=>{e.exports={en:["Hide marks on bars"],it:["Nascondi note sulle barre"]}},92226:e=>{e.exports={en:["Hide positions & orders"],it:["Nascondi posizioni e ordini"]}},78254:e=>{e.exports={en:["High"],it:["Massimo"]}},98236:e=>{e.exports={en:["High-low"],it:["Max-min"]}},99479:e=>{e.exports={en:["High and low price labels"],it:["Etichette prezzo max e min"]}},33766:e=>{e.exports={en:["High and low price lines"],it:["Linee prezzo max e min"]}},69476:e=>{e.exports={en:["Highlighter"],it:["Evidenziatore"]}},72819:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],it:["L'istogramma è troppo grande, aumentare {boldHighlightStart}Dimensione riga{boldHighlightEnd} nella finestra delle impostazioni."]}},94966:e=>{e.exports={en:["Histogram is too large, please increase {boldHighlightStart}Ticks Per Row{boldHighlightEnd} in the settings window."],it:["L'istogramma è troppo grande, aumentare {boldHighlightStart}Tick per riga{boldHighlightEnd} nella finestra delle impostazioni."]}},66751:e=>{e.exports={en:["Histogram is too large, please reduce {boldHighlightStart}Row Size{boldHighlightEnd} in the settings window."],it:["L'istogramma è troppo grande, ridurre {boldHighlightStart}Dimensione riga{boldHighlightEnd} nella finestra delle impostazioni."]}},68065:e=>{e.exports={en:["Image"],it:["Immagine"]}},80185:e=>{e.exports={en:["Intervals less than {resolution} are not supported for {ticker}."],it:["Gli intervalli inferiori a {resolution} non sono supportati per {ticker}."]}},10268:e=>{e.exports={en:["Intermediate"],it:["Intermedio"]}},14285:e=>{e.exports={en:["Invalid Symbol"],it:["Simbolo non valido"]}},52969:e=>{e.exports={en:["Invalid symbol"],it:["Simbolo non valido"]}},37189:e=>{e.exports={en:["Invert scale"],it:["Inverti asse"]}},89999:e=>{e.exports={en:["Indexed to 100"],it:["Indicizzata a base 100"]}},46850:e=>{e.exports={en:["Indicators value labels"],it:["Etichette valore indicatori"]}},54418:e=>{e.exports={en:["Indicators name labels"],it:["Etichette nome indicatori"]}},40490:e=>{e.exports={en:["Indicators, Metrics and Strategies. Press slash"],it:["Indicatori, metriche e strategie. Premere slash"]}},15992:e=>{e.exports={en:["Info Line"],it:["Infolinea"]}},87829:e=>{e.exports={en:["Insert indicator"],it:["Inserisci indicatore"]}},41686:e=>{e.exports={en:["Inside Pitchfork"],it:["Pitchfork Inside"]}},37913:e=>{e.exports={en:["Icon"],it:["Icona"]}},78326:e=>{e.exports={en:["Istanbul"]}},39585:e=>{e.exports={en:["Johannesburg"]}},14995:e=>{e.exports={en:["Jakarta"],it:["Giacarta"]}},62310:e=>{e.exports={en:["Jan"],it:["Gen"]}},36057:e=>{e.exports={
|
||||
en:["Jerusalem"],it:["Gerusalemme"]}},53786:e=>{e.exports={en:["Jul"],it:["Lug"]}},429:e=>{e.exports={en:["Jun"],it:["Giu"]}},67560:e=>{e.exports={en:["Juneau"]}},62329:e=>{e.exports={en:["On the left"],it:["Sulla sinistra"]}},55813:e=>{e.exports={en:["On the right"],it:["Sulla destra"]}},64818:e=>{e.exports={en:["Only {availableResolutions} intervals are supported for {ticker}."],it:["Per {ticker} sono supportati solo gli intervalli {availableResolutions}."]}},21064:e=>{e.exports={en:["Oops!"]}},51221:e=>{e.exports={en:["Object Tree"],it:["Albero oggetti"]}},12179:e=>{e.exports={en:["Oct"],it:["Ott"]}},16610:e=>{e.exports={en:["Open"],it:["Apertura"]}},27884:e=>{e.exports={en:["Open layout. Press period"],it:["Apri layout. Premi il punto"]}},75722:e=>{e.exports={en:["Oslo"]}},65318:e=>{e.exports={en:["Low"],it:["Minimo"]}},51077:e=>{e.exports={en:["Lock"],it:["Blocca"]}},79777:e=>{e.exports={en:["Lock/unlock"],it:["Blocca/Sblocca"]}},66005:e=>{e.exports={en:["Lock vertical cursor line by time"],it:["Blocca cursore verticale di tempo"]}},14017:e=>{e.exports={en:["Lock price to bar ratio"],it:["Blocca rapporto prezzo/barra"]}},16170:e=>{e.exports={en:["Logarithmic"],it:["Logaritmica"]}},19439:e=>{e.exports={en:["London"],it:["Londra"]}},74832:e=>{e.exports={en:["Long Position"],it:["Posizione long"]}},28733:e=>{e.exports={en:["Los Angeles"]}},85924:e=>{e.exports={en:["Label Down"],it:["Etichetta giù"]}},52402:e=>{e.exports={en:["Label Up"],it:["Etichetta su"]}},5119:e=>{e.exports={en:["Labels"],it:["Etichette"]}},19931:e=>{e.exports={en:["Lagos"]}},63815:e=>{e.exports={en:["Last day change"],it:["Variazione ultimo giorno di negoziazione"]}},59444:e=>{e.exports={en:["Lima"]}},3554:e=>{e.exports={en:["Line"],it:["Linea"]}},9394:e=>{e.exports={en:["Line with markers"],it:["Linea con contrassegni"]}},43588:e=>{e.exports={en:["Line break"],it:["Line Break"]}},56982:e=>{e.exports={en:["Lines"],it:["Linee"]}},37367:e=>{e.exports={en:["Link to the chart image copied to clipboard {emoji}"],it:["Link all'immagine del grafico copiata negli appunti {emoji}"]}},53375:e=>{e.exports={en:["Lisbon"],it:["Lisbona"]}},81038:e=>{e.exports={en:["Luxembourg"],it:["Lussemburgo"]}},60663:e=>{e.exports={en:["Move the point to position the anchor then tap to place"],it:["Muovi il cursore e clicca sul punto dove vuoi fissare l'ancoraggio"]}},35049:e=>{e.exports={en:["Move to"],it:["Sposta"]}},26493:e=>{e.exports={en:["Move scale to left"],it:["Sposta asse a sinistra"]}},40789:e=>{e.exports={en:["Move scale to right"],it:["Sposta asse a destra"]}},57681:e=>{e.exports={en:["Modified Schiff Pitchfork"],it:["Pitchfork Schiff modificata"]}},93907:e=>{e.exports={en:["More settings"],it:["Altre impostazioni"]}},64039:e=>{e.exports={en:["Moscow"],it:["Mosca"]}},52066:e=>{e.exports={en:["Madrid"]}},38365:e=>{e.exports={en:["Malta"]}},48991:e=>{e.exports={en:["Manila"]}},92767:e=>{e.exports={en:["Mar"]}},73332:e=>{e.exports={en:["Mexico City"],it:["Città del Messico"]}},88314:e=>{e.exports={en:["Merge all scales into one"],
|
||||
it:["Unisci tutti gli assi in uno"]}},54215:e=>{e.exports={en:["Mixed"],it:["Misto"]}},24866:e=>{e.exports={en:["Micro"]}},87957:e=>{e.exports={en:["Millennium"],it:["Millennio"]}},14724:e=>{e.exports={en:["Minuette"],it:["Minuetto"]}},78273:e=>{e.exports={en:["Minuscule"],it:["Minuscolo"]}},9865:e=>{e.exports={en:["Muscat"],it:["Mascate"]}},96935:e=>{e.exports={en:["N/A"],it:["N/D"]}},36252:e=>{e.exports={en:["No data here"],it:["Nessun dato qui"]}},11254:e=>{e.exports={en:["No scale (fullscreen)"],it:["Nessun asse (schermo intero)"]}},9140:e=>{e.exports={en:["No sync"],it:["Nessuna sincronizzazione"]}},50910:e=>{e.exports={en:["No volume data"],it:["Nessun dato sul volume"]}},99024:e=>{e.exports={en:["No, keep them"],it:["No, conservali"]}},94389:e=>{e.exports={en:["Note"],it:["Nota"]}},26899:e=>{e.exports={en:["Nov"]}},67891:e=>{e.exports={en:["Norfolk Island"],it:["Isola Norfolk"]}},40977:e=>{e.exports={en:["Nairobi"]}},40544:e=>{e.exports={en:["New York"]}},66103:e=>{e.exports={en:["New Zealand"],it:["Nuova Zelanda"]}},15512:e=>{e.exports={en:["New pane above"],it:["Nuovo pannello superiore"]}},52160:e=>{e.exports={en:["New pane below"],it:["Nuovo pannello inferiore"]}},94600:e=>{e.exports={en:["Nicosia"]}},73013:e=>{e.exports={en:["Something went wrong"],it:["Dati immessi non validi"]}},83524:e=>{e.exports={en:["Something went wrong when creating the indicator."],it:["Qualcosa è andato storto durante la creazione dell'indicatore."]}},4509:e=>{e.exports={en:["Something went wrong. Please try again later."],it:["Qualcosa è andato storto. Prova di nuovo più tardi."]}},43047:e=>{e.exports={en:["Save New Chart Layout"],it:["Salva nuovo layout grafico"]}},76266:e=>{e.exports={en:["Save as"],it:["Salva come"]}},55502:e=>{e.exports={en:["San Salvador"]}},30231:e=>{e.exports={en:["Santiago"]}},91912:e=>{e.exports={en:["Sao Paulo"],it:["San Paolo"]}},43931:e=>{e.exports={en:["Scale currency"],it:["Valuta della scala"]}},43758:e=>{e.exports={en:["Scale price chart only"],it:["Utilizza solo scala del prezzo"]}},40012:e=>{e.exports={en:["Scale unit"],it:["Unità della scala"]}},42608:e=>{e.exports={en:["Schiff Pitchfork"],it:["Pitchfork Schiff"]}},76078:e=>{e.exports={en:["Script may be not updated if you leave the page."],it:["Lo script potrebbe non essere aggiornato se lasci la pagina."]}},32514:e=>{e.exports={en:["Settings"],it:["Impostazioni"]}},70784:e=>{e.exports={en:["Second fraction part is invalid."],it:["Seconda frazione non valida."]}},75594:e=>{e.exports={en:["Security info"],it:["Info simbolo"]}},21973:e=>{e.exports={en:["Send to back"],it:["Metti in secondo piano"]}},71179:e=>{e.exports={en:["Send backward"],it:["Sposta indietro"]}},26820:e=>{e.exports={en:["Seoul"]}},6816:e=>{e.exports={en:["Sep"],it:["Set"]}},94031:e=>{e.exports={en:["Session"],it:["Sessione"]}},83298:e=>{e.exports={en:["Session volume profile"],it:["Profilo volume sessione"]}},66707:e=>{e.exports={en:["Session breaks"],it:["Separatori sessione"]}},1852:e=>{e.exports={en:["Shanghai"]}},8075:e=>{e.exports={en:["Short Position"],
|
||||
it:["Posizione short"]}},98334:e=>{e.exports={en:["Show"],it:["Mostra"]}},85891:e=>{e.exports={en:["Show all drawings"],it:["Mostra ogni disegno"]}},25881:e=>{e.exports={en:["Show all drawings and indicators"],it:["Mostra ogni indicatore e disegno"]}},86738:e=>{e.exports={en:["Show all drawings, indicators, positions & orders"],it:["Mostra disegni, indicatori, posizioni e ordini"]}},98753:e=>{e.exports={en:["Show all indicators"],it:["Mostra ogni indicatore"]}},55418:e=>{e.exports={en:["Show all ideas"],it:["Mostra tutte le idee"]}},20506:e=>{e.exports={en:["Show all positions & orders"],it:["Mostra tutte le posizioni e gli ordini"]}},33158:e=>{e.exports={en:["Show continuous contract switch"],it:["Mostra switch contratto continuo"]}},81465:e=>{e.exports={en:["Show contract expiration"],it:["Mostra la scadenza del contratto"]}},29449:e=>{e.exports={en:["Show dividends"],it:["Mostra dividendi"]}},37113:e=>{e.exports={en:["Show earnings"],it:["Mostra utili"]}},10261:e=>{e.exports={en:["Show ideas of followed users"],it:["Mostra idee degli utenti che segui"]}},62986:e=>{e.exports={en:["Show latest news"],it:["Mostra le ultime notizie"]}},44020:e=>{e.exports={en:["Show my ideas only"],it:["Mostra solo mie idee"]}},50849:e=>{e.exports={en:["Show splits"],it:["Mostra frazionamenti"]}},67751:e=>{e.exports={en:["Signpost"],it:["Segnale"]}},77377:e=>{e.exports={en:["Singapore"]}},39090:e=>{e.exports={en:["Sine Line"],it:["Curva sinusoidale"]}},66205:e=>{e.exports={en:["Square"],it:["Quadrato"]}},86146:e=>{e.exports={en:["Studies limit exceeded: {number} studies per layout.\nPlease, remove some studies."],it:["Superato il limite di {number} studi per layout. Rimuovine qualcuno, grazie."]}},92516:e=>{e.exports={en:["Style"],it:["Stile"]}},61507:e=>{e.exports={en:["Stack on the left"],it:["Sinistra"]}},97800:e=>{e.exports={en:["Stack on the right"],it:["Destra"]}},85166:e=>{e.exports={en:["Start using keyboard navigation mode. Press {shortcut}"],it:["Inizia a usare la modalità di navigazione da tastiera. Premere {shortcut}"]}},4035:e=>{e.exports={en:["Stay in drawing mode"],it:["Rimani in modalità disegno"]}},69217:e=>{e.exports={en:["Step line"],it:["Linea a step"]}},43114:e=>{e.exports={en:["Sticker"]}},86716:e=>{e.exports={en:["Stockholm"],it:["Stoccolma"]}},1145:e=>{e.exports={en:["Submicro"]}},63375:e=>{e.exports={en:["Submillennium"]}},30585:e=>{e.exports={en:["Subminuette"],it:["Sotto-Minuetto"]}},67948:e=>{e.exports={en:["Supercycle"],it:["SuperCiclo"]}},3348:e=>{e.exports={en:["Supermillennium"]}},18905:e=>{e.exports={en:["Switch to {resolution}"],it:["Passa a {resolution}"]}},31622:e=>{e.exports={en:["Sydney"]}},70963:e=>{e.exports={en:["Symbol Error"],it:["Errore simbolo"]}},32390:e=>{e.exports={en:["Symbol name label"],it:["Etichetta nome simbolo"]}},10127:e=>{e.exports={en:["Symbol last price label"],it:["Etichetta ultimo valore simbolo"]}},39079:e=>{e.exports={en:["Sync globally"],it:["Sincronizza tutto"]}},46607:e=>{e.exports={en:["Sync in layout"],it:["Sincronizza nel layout"]}},76519:e=>{e.exports={
|
||||
en:["Point & figure"],it:["Point & Figure"]}},39949:e=>{e.exports={en:["Polyline"],it:["Multilinea"]}},371:e=>{e.exports={en:["Path"],it:["Percorso"]}},59256:e=>{e.exports={en:["Parallel Channel"],it:["Canale parallelo"]}},61879:e=>{e.exports={en:["Paris"],it:["Parigi"]}},35140:e=>{e.exports={en:["Paste"],it:["Incolla"]}},6919:e=>{e.exports={en:["Percent"],it:["Percentuale"]}},24436:e=>{e.exports={en:["Perth"]}},14055:e=>{e.exports={en:["Phoenix"]}},34156:e=>{e.exports={en:["Pitchfan"]}},19634:e=>{e.exports={en:["Pitchfork"]}},86631:e=>{e.exports={en:["Pin"],it:["Spilla"]}},33110:e=>{e.exports={en:["Pin to new left scale"],it:["Fissa a nuovo asse sinistro"]}},28280:e=>{e.exports={en:["Pin to new right scale"],it:["Fissa a nuovo asse destro"]}},14115:e=>{e.exports={en:["Pin to left scale"],it:["Fissa all'asse sinistro"]}},72046:e=>{e.exports={en:["Pin to left scale (hidden)"],it:["Fissa all'asse sinistro (nascosto)"]}},81054:e=>{e.exports={en:["Pin to right scale"],it:["Fissa all'asse destro"]}},16986:e=>{e.exports={en:["Pin to right scale (hidden)"],it:["Fissa all'asse destro (nascosto)"]}},60035:e=>{e.exports={en:["Pin to scale (now left)"],it:["Fissa all'asse (ora sinistro)"]}},94210:e=>{e.exports={en:["Pin to scale (now no scale)"],it:["Fissa all'asse (ora senza asse)"]}},10761:e=>{e.exports={en:["Pin to scale (now right)"],it:["Fissa all'asse (ora destro)"]}},76150:e=>{e.exports={en:["Pin to scale (now {label})"],it:["Fissa all'asse (ora {label})"]}},29436:e=>{e.exports={en:["Pin to scale {label}"],it:["Fissa all'asse {label}"]}},2165:e=>{e.exports={en:["Pin to scale {label} (hidden)"],it:["Fissa all'asse {label} (nascosto)"]}},90095:e=>{e.exports={en:["Pinned to left scale"],it:["Fissato all'asse sinistro"]}},32538:e=>{e.exports={en:["Pinned to left scale (hidden)"],it:["Fissato all'asse sinistro (nascosto)"]}},44579:e=>{e.exports={en:["Pinned to right scale"],it:["Fissato all'asse destro"]}},94559:e=>{e.exports={en:["Pinned to right scale (hidden)"],it:["Fissa all'asse destro (nascosto)"]}},12645:e=>{e.exports={en:["Pinned to scale {label}"],it:["Fissato all'asse {label}"]}},3564:e=>{e.exports={en:["Pinned to scale {label} (hidden)"],it:["Fissato all'asse {label} (nascosto)"]}},71566:e=>{e.exports={en:["Plus button"],it:['Pulsante "+"']}},28298:e=>{e.exports={en:["Please give us a clipboard writing permission in your browser or press {keystroke}"],it:["Abbiamo bisogno dell'autorizzazione del browser a copiare le tue note. Altrimenti, puoi premere {keystroke}"]}},81248:e=>{e.exports={en:["Prague"],it:["Praga"]}},81712:e=>{e.exports={en:["Press and hold {key} while zooming to maintain the chart position"],it:["Tieni premuto {key} per mantenere la posizione durante lo zoom"]}},91282:e=>{e.exports={en:["Price Label"],it:["Etichetta prezzo"]}},97512:e=>{e.exports={en:["Price Note"],it:["Nota di prezzo"]}},68941:e=>{e.exports={en:["Price Range"],it:["Range prezzo"]}},66123:e=>{e.exports={en:["Price format is invalid."],it:["Il formato quotazioni non è valido."]}},72926:e=>{e.exports={en:["Price line"],
|
||||
it:["Linea quotazioni"]}},59189:e=>{e.exports={en:["Primary"],it:["Primario"]}},75747:e=>{e.exports={en:["Projection"],it:["Proiezione"]}},55801:e=>{e.exports={en:["Published on {customer}, {date}"],it:["Pubblicato su {customer} il {date}"]}},14568:e=>{e.exports={en:["Q1"]}},13534:e=>{e.exports={en:["Q2"]}},14530:e=>{e.exports={en:["Q3"]}},3762:e=>{e.exports={en:["Q4"]}},28756:e=>{e.exports={en:["Qatar"]}},57959:e=>{e.exports={en:["Quick search. Press {shortcut}"],it:["Ricerca rapida. Premere {shortcut}"]}},56820:e=>{e.exports={en:["Rotated Rectangle"],it:["Rettangolo ruotato"]}},52961:e=>{e.exports={en:["Rome"],it:["Roma"]}},50318:e=>{e.exports={en:["Ray"],it:["Raggio"]}},55169:e=>{e.exports={en:["Range"]}},13386:e=>{e.exports={en:["Reykjavik"]}},26001:e=>{e.exports={en:["Rectangle"],it:["Rettangolo"]}},48236:e=>{e.exports={en:["Redo"],it:["Ripeti"]}},2460:e=>{e.exports={en:["Regression Trend"],it:["Regressione trend"]}},67410:e=>{e.exports={en:["Remove"],it:["Elimina"]}},3061:e=>{e.exports={en:["Remove this financial metric from favorites"],it:["Rimuovi questa metrica dai preferiti"]}},58764:e=>{e.exports={en:["Remove this indicator from favorites"],it:["Rimuovi questo indicatore dai preferiti"]}},86285:e=>{e.exports={en:["Remove {drawings}"],it:["Rimuovi {drawings}"]}},87796:e=>{e.exports={en:["Remove {drawings} & {indicators}"],it:["Rimuovi {drawings} e {indicators}"]}},87797:e=>{e.exports={en:["Remove {indicators}"],it:["Rimuovi {indicators}"]}},22584:e=>{e.exports={en:["Rename Chart Layout"],it:["Rinomina layout grafico"]}},88130:e=>{e.exports={en:["Renko"]}},75246:e=>{e.exports={en:["Reset chart view"],it:["Reimposta la visualizzazione del grafico"]}},88853:e=>{e.exports={en:["Reset points"],it:["Reset dei punti"]}},15332:e=>{e.exports={en:["Reset price scale"],it:["Reimposta asse di prezzo"]}},54170:e=>{e.exports={en:["Reset time scale"],it:["Reimposta asse di tempo"]}},37974:e=>{e.exports={en:["Riyadh"],it:["Riyad"]}},94022:e=>{e.exports={en:["Riga"]}},60630:e=>{e.exports={en:["Runtime error"],it:["Errore di runtime"]}},66719:e=>{e.exports={en:["Warning"],it:["Avviso"]}},5959:e=>{e.exports={en:["Warsaw"],it:["Varsavia"]}},41446:e=>{e.exports={en:["To calculate the VWAP indicator, more data is needed. Zoom out or scroll left to load more historical data."]}},98549:e=>{e.exports={en:["Tokelau"]}},69122:e=>{e.exports={en:["Tokyo"]}},10095:e=>{e.exports={en:["Toronto"]}},17981:e=>{e.exports={en:["Table"],it:["Tabella"]}},11034:e=>{e.exports={en:["Taipei"]}},79995:e=>{e.exports={en:["Tallinn"]}},6686:e=>{e.exports={en:["Tehran"]}},93553:e=>{e.exports={en:["Template"],it:["Modello"]}},81657:e=>{e.exports={en:["The data vendor doesn't provide volume data for this symbol."],it:["Il fornitore dati non fornisce i volumi per questo simbolo."]}},49947:e=>{e.exports={en:["The publication preview could not be loaded. Please disable your browser extensions and try again."],it:["Impossibile caricare anteprima pubblicazione. Disabilita le estensioni del browser e riprova."]}},99274:e=>{e.exports={
|
||||
en:["The request took too long to process. Ensure you have a stable internet connection. If the issue persists, try decreasing the length of the requested time interval."],it:["L'elaborazione della richiesta ha richiesto troppo tempo. Assicurati di avere una connessione Internet stabile. Se il problema persiste, provare a diminuire la lunghezza dell'intervallo di tempo richiesto."]}},43716:e=>{e.exports={en:["There's no data for your selected period and chart timeframe."],it:["Non ci sono dati per il periodo ed il timeframe del grafico."]}},93738:e=>{e.exports={en:["This file is too big. Max size is {value}."],it:["Questo file è troppo grande. La dimensione massima consentita è di {value}."]}},59519:e=>{e.exports={en:["This indicator cannot be applied to another indicator."],it:["Questo indicatore non può essere applicato ad un altro indicatore"]}},18260:e=>{e.exports={en:["This script contains an error. Please contact its author."],it:["Questo script contiene un errore. Si prega di contattare l'autore."]}},76989:e=>{e.exports={en:["This script is invite-only. To request access, please contact its author."],it:["Questo script è su invito. Per richiedere l'accesso, devi contattare l'autore."]}},47773:e=>{e.exports={en:["This symbol is only available on {linkStart}TradingView{linkEnd}."],it:["Il simbolo è disponibile solo su {linkStart}TradingView{linkEnd}."]}},46982:e=>{e.exports={en:["Three Drives Pattern"],it:["Pattern Three Drives"]}},80254:e=>{e.exports={en:["Tick-based intervals are not available for {ticker}."],it:["Gli intervalli basati sui tick non sono disponibili per {ticker}."]}},12806:e=>{e.exports={en:["Time"],it:["Ora"]}},20909:e=>{e.exports={en:["Time zone"],it:["Fuso orario"]}},46852:e=>{e.exports={en:["Time Cycles"],it:["Cicli temporali"]}},17809:e=>{e.exports={en:["Time Price Opportunity"]}},66823:e=>{e.exports={en:["Trade"]}},7697:e=>{e.exports={en:["TradingView is interactive and has commands to use with a screen reader. The following is a list of keyboard commands available to interact on the platform"],it:["Tradingview è interattivo e dispone di comandi da utilizzare con uno screen reader. Di seguito è riportato un elenco di comandi da tastiera disponibili per interagire con la piattaforma"]}},35757:e=>{e.exports={en:["Trend Angle"],it:["Angolo Trend"]}},97339:e=>{e.exports={en:["Trend Line"],it:["Trend line"]}},80583:e=>{e.exports={en:["Trend-Based Fib Extension"],it:["Estensione Fibonacci"]}},72159:e=>{e.exports={en:["Trend-Based Fib Time"],it:["Ciclo temporale su trend Fibonacci"]}},1671:e=>{e.exports={en:["Triangle"],it:["Triangolo"]}},76152:e=>{e.exports={en:["Triangle Down"],it:["Triangolo giù"]}},90148:e=>{e.exports={en:["Triangle Pattern"],it:["Pattern a triangolo"]}},21236:e=>{e.exports={en:["Triangle Up"],it:["Triangolo su"]}},21007:e=>{e.exports={en:["Tunis"]}},1833:e=>{e.exports={en:["UTC"]}},14804:e=>{e.exports={en:["Undo"],it:["Annulla"]}},56815:e=>{e.exports={en:["Unexpected error in Deep Backtesting mode. Contact support for more information."],
|
||||
it:["Errore imprevisto in modalità Backtesting esteso. Contattare l'assistenza per ulteriori informazioni."]}},15432:e=>{e.exports={en:["Units"],it:["Unità"]}},11768:e=>{e.exports={en:["Unknown error"],it:["Errore sconosciuto"]}},99894:e=>{e.exports={en:["Unlock"],it:["Sblocca"]}},75546:e=>{e.exports={en:["Unsupported interval"],it:["Intervallo non supportato"]}},8580:e=>{e.exports={en:["User-defined error"],it:["Errore definito dall'utente"]}},81030:e=>{e.exports={en:["VWAP is waiting for more data"]}},40693:e=>{e.exports={en:["Volume Profile Fixed Range"],it:["Profilo volume ad intervallo fisso"]}},39903:e=>{e.exports={en:["Volume Profile indicator available only on our upgraded plans."],it:["L'indicatore di Profilo volume è disponibile solo con uno dei nostri abbonamenti."]}},93722:e=>{e.exports={en:["Volume candles"],it:["Candele volume"]}},69156:e=>{e.exports={en:["Volume data is not provided in BIST MIXED data plan."],it:["Il volume non viene fornito nel piano dati BIST MIXED."]}},92763:e=>{e.exports={en:["Volume footprint"],it:["Footprint volume"]}},32838:e=>{e.exports={en:["Vancouver"]}},29535:e=>{e.exports={en:["Vertical Line"],it:["Linea verticale"]}},23160:e=>{e.exports={en:["Vienna"]}},60534:e=>{e.exports={en:["Vilnius"]}},40091:e=>{e.exports={en:["Visibility"],it:["Visibilità"]}},54853:e=>{e.exports={en:["Visibility on intervals"],it:["Visibilità intervalli"]}},58302:e=>{e.exports={en:["Visible on tap"],it:["Visibile al tocco"]}},10309:e=>{e.exports={en:["Visible on mouse over"],it:["Visibile al passaggio del mouse"]}},4077:e=>{e.exports={en:["Visual order"],it:["Ordine visualizzazione"]}},11316:e=>{e.exports={en:["X Cross"],it:["Incrocio X"]}},42231:e=>{e.exports={en:["XABCD Pattern"],it:["Pattern XABCD"]}},25059:e=>{e.exports={en:["You cannot see this pivot timeframe on this resolution"],it:["Non puoi consultare il pivot con quella risoluzione in questo timeframe"]}},41019:e=>{e.exports={en:["You have locked drawings on this symbol. Do you want to remove the locked drawings too?"],it:["Su questo simbolo sono stati bloccati dei disegni. Vuoi rimuovere anche i disegni bloccati?"]}},53168:e=>{e.exports={en:["Yangon"]}},93123:e=>{e.exports={en:["Yes, remove them"],it:["Sì, rimuovili"]}},62859:e=>{e.exports={en:["Zurich"],it:["Zurigo"]}},47977:e=>{e.exports={en:["change Elliott degree"],it:["cambio grado Elliott"]}},61557:e=>{e.exports={en:["change no overlapping labels"],it:["cambio etichette non sovrapposte"]}},76852:e=>{e.exports={en:["change average close price label visibility"],it:["cambio visibilità etichetta prezzo medio chiusura"]}},1022:e=>{e.exports={en:["change average close price line visibility"],it:["cambio visibilità linea prezzo medio chiusura"]}},69362:e=>{e.exports={en:["change bid and ask labels visibility"],it:["cambia visibilità etichette bid e ask"]}},52919:e=>{e.exports={en:["change bid and ask lines visibility"],it:["cambia visibilità linee bid e ask"]}},32302:e=>{e.exports={en:["change currency"],it:["cambio valuta"]}},68846:e=>{e.exports={en:["change chart layout to {title}"],
|
||||
it:["cambio layout grafico su {title}"]}},18867:e=>{e.exports={en:["change continuous contract switch visibility"],it:["cambio visibilità switch contratto continuo"]}},39383:e=>{e.exports={en:["change countdown to bar close visibility"],it:["cambia visibilità conto alla rovescia"]}},16979:e=>{e.exports={en:["change date range"],it:["cambio range tempo"]}},53929:e=>{e.exports={en:["change dividends visibility"],it:["cambia visibilità dividendi staccati"]}},6119:e=>{e.exports={en:["change events visibility on chart"],it:["cambia visibilità eventi sul grafico"]}},6819:e=>{e.exports={en:["change earnings visibility"],it:["cambia visibilità utili rilasciati"]}},85532:e=>{e.exports={en:["change futures contract expiration visibility"],it:["modifica la visibilità della scadenza dei contratti futures"]}},24226:e=>{e.exports={en:["change high and low price labels visibility"],it:["cambia visibilità etichette prezzo min e max"]}},80692:e=>{e.exports={en:["change high and low price lines visibility"],it:["cambia visibilità linee prezzo max e min"]}},24893:e=>{e.exports={en:["change indicators name labels visibility"],it:["cambia visibilità etichette nomi indicatori"]}},64729:e=>{e.exports={en:["change indicators value labels visibility"],it:["cambia visibilità etichette valore indicatori"]}},50243:e=>{e.exports={en:["change latest news and Minds visibility"],it:["modifica visibilità ultimi aggiornamenti"]}},88849:e=>{e.exports={en:["change linking group"],it:["modifica gruppo di collegamento"]}},14691:e=>{e.exports={en:["change pane height"],it:["cambio altezza pannello"]}},96379:e=>{e.exports={en:["change plus button visibility"],it:["cambia visibilità pulsante +"]}},76660:e=>{e.exports={en:["change point"],it:["modifica punto"]}},30870:e=>{e.exports={en:["change pre/post market price label visibility"],it:["cambia visibilità etichette prezzo pre e post mercato"]}},11718:e=>{e.exports={en:["change pre/post market price line visibility"],it:["cambia visibilità linea prezzo pre e post mercato"]}},58419:e=>{e.exports={en:["change previous close price line visibility"],it:["cambia visibilità linea chiusura precedente"]}},8662:e=>{e.exports={en:["change price line visibility"],it:["Cambia linea prezzo"]}},2509:e=>{e.exports={en:["change price to bar ratio"],it:["cambio rapporto prezzo / barra"]}},32829:e=>{e.exports={en:["change resolution"],it:["Cambia timeframe"]}},35400:e=>{e.exports={en:["change symbol"],it:["Cambia simbolo"]}},73357:e=>{e.exports={en:["change symbol labels visibility"],it:["cambio visibilità etichette simbolo"]}},67453:e=>{e.exports={en:["change symbol last value visibility"],it:["cambia visibilità ultimo valore simbolo"]}},4729:e=>{e.exports={en:["change symbol previous close value visibility"],it:["cambia visibilità chiusura precedente simbolo"]}},87041:e=>{e.exports={en:["change session"],it:["cambio sessione"]}},38413:e=>{e.exports={en:["change session breaks visibility"],it:["cambio visibilità separatori sessione"]}},49965:e=>{e.exports={en:["change series style"],it:["cambio stile serie"]}},47474:e=>{
|
||||
e.exports={en:["change splits visibility"],it:["cambia visibilità frazionamenti"]}},20137:e=>{e.exports={en:["change timezone"],it:["cambio fuso orario"]}},85975:e=>{e.exports={en:["change unit"],it:["cambio unità"]}},1924:e=>{e.exports={en:["change visibility"],it:["Cambia visibilità"]}},84331:e=>{e.exports={en:["change visibility at current interval"],it:["Cambia visibilità all'intervallo corrente"]}},45800:e=>{e.exports={en:["change visibility at current interval and above"],it:["Cambia visibilità all'intervallo corrente e superiore"]}},75645:e=>{e.exports={en:["change visibility at current interval and below"],it:["Cambia visibilità all'intervallo corrente e inferiore"]}},57916:e=>{e.exports={en:["change visibility at all intervals"],it:["Cambia visibilità a tutti gli intervalli"]}},94566:e=>{e.exports={en:["charts by TradingView"],it:["grafici da TradingView"]}},32943:e=>{e.exports={en:["clone line tools"],it:["Clonazione strumento"]}},46219:e=>{e.exports={en:["create line tools group"],it:["Crea gruppo strumenti linea"]}},95394:e=>{e.exports={en:["create line tools group from selection"],it:["Crea gruppo strumenti linea dalla selezione"]}},12898:e=>{e.exports={en:["create {tool}"],it:["creazione {tool}"]}},94227:e=>{e.exports={en:["cut sources"],it:["taglia fonti"]}},11500:e=>{e.exports={en:["cut {title}"],it:["taglia {title}"]}},63869:e=>{e.exports={en:["anchor objects"],it:["ancora oggetti"]}},12570:e=>{e.exports={en:["add line tool {lineTool} to group {name}"],it:["Aggiungi strumento linea {lineTool} al gruppo {name}"]}},21162:e=>{e.exports={en:["add line tool(s) to group {group}"],it:["aggiungi le linee al gruppo {group}"]}},67608:e=>{e.exports={en:["add this financial metric to entire layout"],it:["Applica questo dato finanziario all'intero layout"]}},96677:e=>{e.exports={en:["add this indicator to entire layout"],it:["applica questo indicatore all'intero layout"]}},58156:e=>{e.exports={en:["add this strategy to entire layout"],it:["Applica questa strategia all'intero layout"]}},79290:e=>{e.exports={en:["add this symbol to entire layout"],it:["Applica questo simbolo all'intero layout"]}},4128:e=>{e.exports={en:["align to 45 degrees"],it:["allinea a 45 gradi"]}},68231:e=>{e.exports={en:["apply chart theme"],it:["applica tema grafico"]}},99551:e=>{e.exports={en:["apply all chart properties"],it:["applicazione proprietà grafico"]}},89720:e=>{e.exports={en:["apply drawing template"],it:["Applica modello disegno"]}},27851:e=>{e.exports={en:["apply factory defaults to selected sources"],it:["applicazione reset su fonti selezionate"]}},70507:e=>{e.exports={en:["apply indicators to entire layout"],it:["applica indicatori su layout intero"]}},69604:e=>{e.exports={en:["apply study template {template}"],it:["Applica modello indicatore {template}"]}},86708:e=>{e.exports={en:["apply toolbars theme"],it:["applicazione tema barra strumenti"]}},1979:e=>{e.exports={en:["bring group {title} forward"],it:["metti gruppo {title} in primo piano"]}},53159:e=>{e.exports={en:["bring {title} to front"],it:["porta {title} davanti"]}
|
||||
},41966:e=>{e.exports={en:["bring {title} forward"],it:["Manda {title} avanti"]}},44676:e=>{e.exports={en:["by TradingView"],it:["da TradingView"]}},58850:e=>{e.exports={en:["date range lock"],it:["blocco range di tempo"]}},99395:e=>{e.exports={en:["exclude line tools from group {group}"],it:["Escludi strumenti linea dal gruppo {group}"]}},13017:e=>{e.exports={en:["hide {title}"],it:["Nascondi {title}"]}},62249:e=>{e.exports={en:["hide marks on bars"],it:["Nascondi note sulle barre"]}},56558:e=>{e.exports={en:["interval lock"],it:["blocco intervallo"]}},6830:e=>{e.exports={en:["invert scale"],it:["Inverti asse"]}},48818:e=>{e.exports={en:["insert {title}"],it:["inserimento {title}"]}},56307:e=>{e.exports={en:["insert {title} after {targetTitle}"],it:["inserimento {title} dopo {targetTitle}"]}},32960:e=>{e.exports={en:["insert {title} after {target}"],it:["Inserisci {title} dopo {target}"]}},57106:e=>{e.exports={en:["insert {title} before {target}"],it:["aggiungi {title} prima di {target}"]}},46229:e=>{e.exports={en:["insert {title} before {targetTitle}"],it:["aggiungi {title} prima di {targetTitle}"]}},43364:e=>{e.exports={en:["load default drawing template"],it:["caricamento modello disegni default"]}},62011:e=>{e.exports={en:["loading..."],it:["caricamento...."]}},76104:e=>{e.exports={en:["lock {title}"],it:["Blocca {title}"]}},20453:e=>{e.exports={en:["lock group {group}"],it:["blocca gruppo {group}"]}},18942:e=>{e.exports={en:["lock objects"],it:["blocca oggetti"]}},98277:e=>{e.exports={en:["move"],it:["spostamento"]}},58228:e=>{e.exports={en:["move {title} to new left scale"],it:["Sposta {title} su nuovo asse sinistro"]}},77482:e=>{e.exports={en:["move {title} to new right scale"],it:["sposta {title} su un nuovo asse a destra"]}},64077:e=>{e.exports={en:["move all scales to left"],it:["Sposta tutti gli assi a sinistra"]}},19013:e=>{e.exports={en:["move all scales to right"],it:["Sposta tutti gli assi a destra"]}},52510:e=>{e.exports={en:["move drawing(s)"],it:["spostamento disegno/i"]}},79209:e=>{e.exports={en:["move left"],it:["sposta a sinistra"]}},60114:e=>{e.exports={en:["move right"],it:["sposta a destra"]}},44854:e=>{e.exports={en:["move scale"],it:["Sposta asse"]}},10625:e=>{e.exports={en:["make {title} no scale (Full screen)"],it:["Dissocia {title} dall'asse (schermo intero)"]}},76709:e=>{e.exports={en:["make group {group} invisible"],it:["Rendi gruppo {group} invisibile"]}},45987:e=>{e.exports={en:["make group {group} visible"],it:["Rendi gruppo {group} visibile"]}},78055:e=>{e.exports={en:["merge down"],it:["unione sotto"]}},41866:e=>{e.exports={en:["merge to pane"],it:["unione a pannello"]}},52458:e=>{e.exports={en:["merge up"],it:["unione sopra"]}},90091:e=>{e.exports={en:["n/a"],it:["N/D"]}},94981:e=>{e.exports={en:["scale price"],it:["scala di prezzo"]}},63796:e=>{e.exports={en:["scale price chart only"],it:["Utilizza solo scala del prezzo"]}},70771:e=>{e.exports={en:["scale time"],it:["cambio scala"]}},42070:e=>{e.exports={en:["scroll"],it:["scorrimento"]}},87840:e=>{e.exports={en:["scroll time"],
|
||||
it:["scorrimento tempo"]}},46302:e=>{e.exports={en:["set layout sizes"]}},82241:e=>{e.exports={en:["set price scale selection strategy to {title}"],it:["impostazione strategia di selezione scala di prezzo su {title}"]}},40962:e=>{e.exports={en:["send {title} backward"],it:["porta {title} indietro"]}},5005:e=>{e.exports={en:["send {title} to back"],it:["porta {title} indietro"]}},69546:e=>{e.exports={en:["send group {title} backward"],it:["metti gruppo {title} in secondo piano"]}},63934:e=>{e.exports={en:["share line tools globally"],it:["condivisione globale linee"]}},90221:e=>{e.exports={en:["share line tools in layout"],it:["condivisione linee su layout"]}},13336:e=>{e.exports={en:["show all ideas"],it:["mostra tutte le idee"]}},91395:e=>{e.exports={en:["show ideas of followed users"],it:["mostra idee degli utenti seguiti"]}},57460:e=>{e.exports={en:["show my ideas only"],it:["mostra solo le mie idee"]}},4114:e=>{e.exports={en:["stay in drawing mode"],it:["rimani in modalità disegno"]}},3350:e=>{e.exports={en:["stop syncing drawing"],it:["stop sincronizzazione disegni"]}},49183:e=>{e.exports={en:["stop syncing line tool(s)"],it:["ferma sincronizzazione linee"]}},53278:e=>{e.exports={en:["symbol lock"],it:["blocco simbolo"]}},91677:e=>{e.exports={en:["sync time"],it:["sincronizza ora"]}},3140:e=>{e.exports={en:["powered by"],it:["fornito da"]}},92800:e=>{e.exports={en:["powered by TradingView"],it:["fornito da TradingView"]}},62192:e=>{e.exports={en:["paste drawing"],it:["incolla disegno"]}},1064:e=>{e.exports={en:["paste indicator"],it:["incolla indicatore"]}},57010:e=>{e.exports={en:["paste {title}"],it:["incolla {title}"]}},78690:e=>{e.exports={en:["pin to left scale"],it:["fissa all'asse sinistro"]}},7495:e=>{e.exports={en:["pin to right scale"],it:["Fissa all'asse destro"]}},81566:e=>{e.exports={en:["pin to scale {label}"],it:["fissa sull'asse {label}"]}},2618:e=>{e.exports={en:["rearrange panes"],it:["modifica pannelli"]}},60806:e=>{e.exports={en:["remove all indicators"],it:["rimuovi tutti gli indicatori"]}},29096:e=>{e.exports={en:["remove all indicators and drawing tools"],it:["rimuovi tutti gli indicatori ed i disegni"]}},27171:e=>{e.exports={en:["remove deselected empty line tools"],it:["rimozione linee vuote deselezionate"]}},30538:e=>{e.exports={en:["remove drawings"],it:["Elimina disegni"]}},1193:e=>{e.exports={en:["remove drawings group"],it:["rimuovi gruppo disegni"]}},38199:e=>{e.exports={en:["remove line data sources"],it:["rimozione fonti dati linea"]}},93333:e=>{e.exports={en:["remove pane"],it:["rimozione pannello"]}},94543:e=>{e.exports={en:["remove {title}"],it:["rimuovi {title}"]}},41430:e=>{e.exports={en:["removing line tools group {name}"],it:["rimozione strumenti linea del gruppo {name}"]}},80491:e=>{e.exports={en:["rename group {group} to {newName}"],it:["Rinomina gruppo {group} in {newName}"]}},85366:e=>{e.exports={en:["reset layout sizes"],it:["ripristina dimensioni layout"]}},3323:e=>{e.exports={en:["reset scales"],it:["reset scala"]}},17336:e=>{e.exports={en:["reset time scale"],
|
||||
it:["Reimposta asse di tempo"]}},47418:e=>{e.exports={en:["resize layout"],it:["modifica dimensioni layout"]}},85815:e=>{e.exports={en:["restore defaults"],it:["ripristino default"]}},96881:e=>{e.exports={en:["restore study defaults"],it:["ripristinare le impostazioni predefinite dello studio"]}},63095:e=>{e.exports={en:["toggle maximized pane state"],it:["attiva massimizzazione del pannello"]}},42240:e=>{e.exports={en:["toggle auto scale"],it:["attiva/disattiva scala automatica"]}},46054:e=>{e.exports={en:["toggle collapsed pane state"],it:["modifica stato pannello chiuso"]}},24736:e=>{e.exports={en:["toggle indexed to 100 scale"],it:["switch scala indicizzata su base 100"]}},49695:e=>{e.exports={en:["toggle lock scale"],it:["blocco scala"]}},49403:e=>{e.exports={en:["toggle log scale"],it:["attiva/disattiva scala logaritmica"]}},98994:e=>{e.exports={en:["toggle percentage scale"],it:["Attiva scala percentuale"]}},80688:e=>{e.exports={en:["toggle regular scale"],it:["switch scala regolare"]}},46807:e=>{e.exports={en:["track time"],it:["traccia tempo"]}},8040:e=>{e.exports={en:["turn line tools sharing off"],it:["disattiva condivisione linee"]}},99234:e=>{e.exports={en:["unanchor objects"],it:["disancora oggetti"]}},23230:e=>{e.exports={en:["unlock objects"],it:["sblocca oggetti"]}},74590:e=>{e.exports={en:["unlock group {group}"],it:["Sblocca gruppo {group}"]}},12525:e=>{e.exports={en:["unlock {title}"],it:["sblocca {title}"]}},81576:e=>{e.exports={en:["unmerge to new bottom pane"],it:["separazione su nuovo pannello"]}},79443:e=>{e.exports={en:["unmerge up"],it:["separazione sopra"]}},46453:e=>{e.exports={en:["unmerge down"],it:["separazione sotto"]}},94656:e=>{e.exports={en:["{chartStyle} chart type isn't currently available for tick-based intervals."],it:["Oh no! Il tipo di grafico {chartStyle} non è attualmente disponibile per gli intervalli basati sui tick."]}},41643:e=>{e.exports={en:["{count} bars"],it:["{count} barre"]}},83470:e=>{e.exports={en:["{symbol} financials by TradingView"],it:["{symbol} dati finanziari da TradingView"]}},40947:e=>{e.exports={en:["{userName} published on {customer}, {date}"],it:["{userName} ha pubblicato su {customer} il {date}"]}},91084:e=>{e.exports={en:["zoom"]}},49856:e=>{e.exports={en:["zoom in"],it:["ingrandimento"]}},73638:e=>{e.exports={en:["zoom out"],it:["riduzione"]}},41807:e=>{e.exports={en:["day","days"],it:["giorno","giorni"]}},42328:e=>{e.exports={en:["hour","hours"],it:["ora","ore"]}},98393:e=>{e.exports={en:["month","months"],it:["mese","mesi"]}},78318:e=>{e.exports={en:["minute","minutes"],it:["minuto","minuti"]}},33232:e=>{e.exports={en:["second","seconds"],it:["secondo","secondi"]}},89937:e=>{e.exports={en:["range","ranges"],it:["range","range"]}},48898:e=>{e.exports={en:["week","weeks"],it:["settimana","settimane"]}},11913:e=>{e.exports={en:["tick","ticks"],it:["tick","tick"]}},22299:e=>{e.exports={en:["{amount} drawing","{amount} drawings"],it:["{amount} disegno","{amount} disegni"]}},68984:e=>{e.exports={en:["{amount} indicator","{amount} indicators"],
|
||||
it:["{amount} indicatore","{amount} indicatori"]}},58590:e=>{e.exports={en:["{count}m","{count}m"]}},47801:e=>{e.exports={en:["{count}d","{count}d"]}},46766:e=>{e.exports={en:["{count}y","{count}y"]}},56316:e=>{e.exports=Object.create(null),e.exports["#AAPL-symbol-description"]={en:["Apple Inc"]},e.exports["#AMEX:SCHO-symbol-description"]={en:["Schwab Short-Term U.S. Treasury ETF"]},e.exports["#AMEX:SHYG-symbol-description"]={en:["Shares 0-5 YEAR High Yield Corporate Bond ETF"]},e.exports["#ASX:XAF-symbol-description"]={en:["S&P/ASX All Australian 50 Index"],it:["Indice S&P/ASX All Australian 50"]},e.exports["#ASX:XAT-symbol-description"]={en:["S&P/ASX All Australian 200 Index"],it:["Indice S&P/ASX All Australian 200"]},e.exports["#ASX:XJO-symbol-description"]={en:["S&P/ASX 200 Index"],it:["Indice S&P/ASX 200"]},e.exports["#AUDCAD-symbol-description"]={en:["Australian Dollar/Canadian Dollar"],it:["Dollaro australiano/Dollaro canadese"]},e.exports["#AUDCHF-symbol-description"]={en:["Australian Dollar / Swiss Franc"],it:["Dollaro australiano / Franco svizzero"]},e.exports["#AUDJPY-symbol-description"]={en:["Australian Dollar / Japanese Yen"],it:["Dollaro australiano / Yen giapponese"]},e.exports["#AUDNZD-symbol-description"]={en:["Australian Dollar / New Zealand Dollar"],it:["Dollaro australiano / Dollaro neozelandese"]},e.exports["#AUDRUB-symbol-description"]={en:["Australian Dollar / Russian Ruble"],it:["Dollaro australiano / Rublo russo"]},e.exports["#AUDUSD-symbol-description"]={en:["Australian Dollar / U.S. Dollar"],it:["Dollaro australiano / Dollaro"]},e.exports["#BCBA:IMV-symbol-description"]={en:["S&P MERVAL Index"],it:["Indice S&P MERVAL"]},e.exports["#BCHEUR-symbol-description"]={en:["Bitcoin Cash / Euro"]},e.exports["#BCHUSD-symbol-description"]={en:["Bitcoin Cash / U.S. Dollar"],it:["Bitcoin Cash / Dollaro"]},e.exports["#BELEX:BELEX15-symbol-description"]={en:["BELEX 15 Index"],it:["Indice BELEX 15"]},e.exports["#BIST:XU100-symbol-description"]={en:["BIST 100 Index"],it:["Indice BIST 100"]},e.exports["#BITMEX:XBT-symbol-description"]={en:["Bitcoin / U.S. Dollar Index"],it:["Indice Bitcoin / Dollaro"]},e.exports["#BME:IBC-symbol-description"]={en:["IBEX 35 Index"],it:["Indice IBEX 35"]},e.exports["#BMFBOVESPA:IBOV-symbol-description"]={en:["Bovespa Index"],it:["Indice Bovespa"]},e.exports["#BMFBOVESPA:IBRA-symbol-description"]={en:["IBrasil Index"],it:["Indice IBrasil"]},e.exports["#BMFBOVESPA:IBXL-symbol-description"]={en:["Brazil 50 Index"],it:["Indice Brazil 50"]},e.exports["#BMV:CT-symbol-description"]={en:["China SX20 RT"]},e.exports["#BMV:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#BMV:ME-symbol-description"]={en:["S&P/BMV IPC Index"],it:["Indice S&P/BMV IPC"]},e.exports["#BRLJPY-symbol-description"]={en:["Brazilian Real / Japanese Yen"],it:["Real brasiliano / Yen giapponese"]},e.exports["#BSE:ITI-symbol-description"]={en:["ITI Ltd"]},e.exports["#BSE:SENSEX-symbol-description"]={en:["S&P BSE Sensex Index"],it:["Indice S&P BSE Sensex"]},e.exports["#BTCBRL-symbol-description"]={
|
||||
en:["Bitcoin / Brazilian Real"],it:["Bitcoin / Real Brasiliano"]},e.exports["#BTCCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],it:["Bitcoin / Dollaro Canadese"]},e.exports["#BTCCNY-symbol-description"]={en:["Bitcoin / Chinese Yuan"],it:["Bitcoin / Yuan Cinese"]},e.exports["#BTCEUR-symbol-description"]={en:["Bitcoin / Euro"]},e.exports["#BTCGBP-symbol-description"]={en:["Bitcoin / British Pound"],it:["Bitcoin / Sterlina"]},e.exports["#BTCJPY-symbol-description"]={en:["Bitcoin / Japanese Yen"],it:["Bitcoin / Yen Giapponese"]},e.exports["#BTCKRW-symbol-description"]={en:["Bitcoin / South Korean Won"],it:["Bitcoin / Won Sudcoreano"]},e.exports["#BTCPLN-symbol-description"]={en:["Bitcoin / Polish Zloty"],it:["Bitcoin / Zloty Polacco"]},e.exports["#BTCRUB-symbol-description"]={en:["Bitcoin / Russian Ruble"],it:["Bitcoin / Rublo russo"]},e.exports["#BTCTHB-symbol-description"]={en:["Bitcoin / Thai Baht"],it:["Bitcoin / Baht thai"]},e.exports["#BTCUSD-symbol-description"]={en:["Bitcoin / U.S. Dollar"],it:["Bitcoin / Dollaro"]},e.exports["#BTGUSD-symbol-description"]={en:["Bitcoin Gold / U.S. Dollar"],it:["Bitcoin Gold / Dollaro"]},e.exports["#BVL:SPBLPGPT-symbol-description"]={en:["S&P / BVL Peru General Index (PEN)"]},e.exports["#BVSP-symbol-description"]={en:["Brazil Bovespa Index"],it:["Indice Brasile Bovespa"]},e.exports["#CADJPY-symbol-description"]={en:["Canadian Dollar / Japanese Yen"],it:["Dollaro canadese / Yen giapponese"]},e.exports["#CADUSD-symbol-description"]={en:["Canadian Dollar / U.S. Dollar"],it:["Dollaro canadese / Dollaro USA"]},e.exports["#CBOE:OEX-symbol-description"]={en:["S&P 100 Index"],it:["Indice S&P 100"]},e.exports["#CBOE:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],it:["Indice volatilità S&P 500"]},e.exports["#CBOT:ZB1!-symbol-description"]={en:["T-Bond Futures"],it:["Futures T-Bond"]},e.exports["#CBOT:ZC1!-symbol-description"]={en:["Corn Futures"],it:["Futures mais"]},e.exports["#CBOT:ZM1!-symbol-description"]={en:["Soybean Meal Futures"],it:["Futures farina di soia"]},e.exports["#CBOT:ZN1!-symbol-description"]={en:["10 Year T-Note Futures"],it:["Futures T-Note 10 anni"]},e.exports["#CBOT:ZO1!-symbol-description"]={en:["Oat Futures"],it:["Futures avena"]},e.exports["#CBOT:ZQ1!-symbol-description"]={en:["30 Day Federal Funds Interest Rate Futures"],it:["Futures 30 Day Federal Funds Interest Rate"]},e.exports["#CBOT:ZR1!-symbol-description"]={en:["Rice Futures"],it:["Futures riso"]},e.exports["#CBOT:ZS1!-symbol-description"]={en:["Soybean Futures"],it:["Futures soia"]},e.exports["#CBOT:ZW1!-symbol-description"]={en:["Wheat Futures"],it:["Futures Grano"]},e.exports["#CBOT_MINI:XK1!-symbol-description"]={en:["Soybean Mini Futures"],it:["Futures mini soia"]},e.exports["#CBOT_MINI:XW1!-symbol-description"]={en:["Wheat Mini Futures"],it:["Futures mini grano"]},e.exports["#CBOT_MINI:YM1!-symbol-description"]={en:["E-mini Dow Jones ($5) Futures"],it:["Futures E-MINI DOW JONES ($5)"]},e.exports["#CHFJPY-symbol-description"]={en:["Swiss Franc / Japanese Yen"],
|
||||
it:["Franco svizzero / Yen giapponese"]},e.exports["#CHFUSD-symbol-description"]={en:["Swiss Franc / U.S. Dollar"],it:["Franco svizzero / Dollaro USA"]},e.exports["#CME:BTC1!-symbol-description"]={en:["Bitcoin CME Futures"],it:["Futures Bitcoin CME"]},e.exports["#CME:CB1!-symbol-description"]={en:["Butter Futures-Cash (Continuous: Current contract in front)"],it:["Futures burro (continuo: contratto a scadenza frontale)"]},e.exports["#CME:GF1!-symbol-description"]={en:["Feeder Cattle Futures"],it:["Futures mangime bestiame"]},e.exports["#CME:HE1!-symbol-description"]={en:["Lean Hogs Futures"],it:["Futures carne di maiale"]},e.exports["#CME:LE1!-symbol-description"]={en:["Live Cattle Futures"],it:["Futures bestiame vivo"]},e.exports["#CME_MINI:E71!-symbol-description"]={en:["Euro E-mini Futures"],it:["Futures E-mini euro"]},e.exports["#CME_MINI:ES1!-symbol-description"]={en:["S&P 500 E-mini Futures"],it:["Futures E-mini S&P 500"]},e.exports["#CME_MINI:J71!-symbol-description"]={en:["Japanese Yen E-mini Futures"],it:["Futures E-mini yen giapponese"]},e.exports["#CME_MINI:NQ1!-symbol-description"]={en:["NASDAQ 100 E-mini Futures"],it:["Futures NASDAQ 100 E-MINI"]},e.exports["#CME_MINI:RTY1!-symbol-description"]={en:["E-Mini Russell 2000 Index Futures"],it:["Indice futures E-Mini Russell 2000"]},e.exports["#COMEX:AEP1!-symbol-description"]={en:["Aluminium European Premium Futures"],it:["Futures Aluminium European Premium"]},e.exports["#COMEX:AUP1!-symbol-description"]={en:["Aluminum MW U.S. Transaction Premium Platts (25MT) Futures"],it:["Futures Aluminum MW U.S. Transaction Premium Platts (25MT)"]},e.exports["#COMEX:GC1!-symbol-description"]={en:["Gold Futures"],it:["Futures Oro"]},e.exports["#COMEX:HG1!-symbol-description"]={en:["Copper Futures"],it:["Futures Rame"]},e.exports["#COMEX:SI1!-symbol-description"]={en:["Silver Futures"],it:["Futures Argento"]},e.exports["#COMEX_MINI:QC1!-symbol-description"]={en:["E-mini Copper Futures"],it:["Futures E-mini rame"]},e.exports["#COMEX_MINI:QI1!-symbol-description"]={en:["Silver (Mini) Futures"],it:["Futures argento (mini)"]},e.exports["#COMEX_MINI:QO1!-symbol-description"]={en:["Gold (Mini) Futures"],it:["Futures oro (mini)"]},e.exports["#COPPER-symbol-description"]={en:["CFDs on Copper"],it:["CFD Rame"]},e.exports["#CORNUSD-symbol-description"]={en:["CFDs on Corn"],it:["CFD Mais"]},e.exports["#COTUSD-symbol-description"]={en:["CFDs on Cotton"],it:["CFD Cotone"]},e.exports["#CRYPTOCAP:TOTAL-symbol-description"]={en:["Crypto Total Market Cap, $"],it:["Cap di mercato totale cripto, $"]},e.exports["#DFM:DFMGI-symbol-description"]={en:["DFM Index"],it:["Indice DFM"]},e.exports["#DJ:DJA-symbol-description"]={en:["Dow Jones Composite Average Index"],it:["Indice Dow Jones Composite Average"]},e.exports["#DJ:DJCIAGC-symbol-description"]={en:["Dow Jones Commodity Index Agriculture Capped Component"],it:["Indice Dow Jones Commodity Agriculture Capped Component"]},e.exports["#DJ:DJCICC-symbol-description"]={en:["Dow Jones Commodity Index Cocoa"],it:["Indice Dow Jones Commodity Cocoa"]},
|
||||
e.exports["#DJ:DJCIEN-symbol-description"]={en:["Dow Jones Commodity Index Energy"],it:["Indice Dow Jones Commodity Energy"]},e.exports["#DJ:DJCIGC-symbol-description"]={en:["Dow Jones Commodity Index Gold"],it:["Indice Dow Jones Commodity Gold"]},e.exports["#DJ:DJCIGR-symbol-description"]={en:["Dow Jones Commodity Index Grains"],it:["Indice Dow Jones Commodity Grains"]},e.exports["#DJ:DJCIIK-symbol-description"]={en:["Dow Jones Commodity Index Nickel"],it:["Indice Dow Jones Commodity Nickel"]},e.exports["#DJ:DJCIKC-symbol-description"]={en:["Dow Jones Commodity Index Coffee"],it:["Indice Dow Jones Commodity Coffee"]},e.exports["#DJ:DJCISB-symbol-description"]={en:["Dow Jones Commodity Index Sugar"],it:["Indice Dow Jones Commodity Sugar"]},e.exports["#DJ:DJCISI-symbol-description"]={en:["Dow Jones Commodity Index Silver"],it:["Indice Dow Jones Commodity Silver"]},e.exports["#DJ:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Dow Jones Industrial Average"]},e.exports["#DJ:DJT-symbol-description"]={en:["Dow Jones Transportation Average Index"],it:["Indice Dow Jones Transportation Average"]},e.exports["#DJ:DJU-symbol-description"]={en:["Dow Jones Utility Average Index"],it:["Indice Dow Jones Utility Average"]},e.exports["#DJ:DJUSCL-symbol-description"]={en:["Dow Jones U.S. Coal Index"],it:["Indice Dow Jones U.S. Coal"]},e.exports["#EGX:EGX30-symbol-description"]={en:["EGX 30 Index"],it:["Indice EGX 30"]},e.exports["#ETCBTC-symbol-description"]={en:["Ethereum Classic / Bitcoin"]},e.exports["#ETCEUR-symbol-description"]={en:["Ethereum Classic / Euro"]},e.exports["#ETCUSD-symbol-description"]={en:["Ethereum Classic / U.S. Dollar"],it:["Ethereum Classic / Dollaro"]},e.exports["#ETHBTC-symbol-description"]={en:["Ethereum / Bitcoin"]},e.exports["#ETHEUR-symbol-description"]={en:["Ethereum / Euro"]},e.exports["#ETHGBP-symbol-description"]={en:["Ethereum / British Pound"],it:["Ethereum / Sterlina"]},e.exports["#ETHJPY-symbol-description"]={en:["Ethereum / Japanese Yen"],it:["Ethereum / Yen"]},e.exports["#ETHKRW-symbol-description"]={en:["Ethereum / South Korean Won"],it:["Ethereum / Won Sudcoreano"]},e.exports["#ETHTHB-symbol-description"]={en:["Ethereum / Thai Baht"],it:["Ethereum / Baht thai"]},e.exports["#ETHUSD-symbol-description"]={en:["Ethereum / U.S. Dollar"],it:["Ethereum / Dollaro"]},e.exports["#EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#EURAUD-symbol-description"]={en:["Euro / Australian Dollar"],it:["Euro / Dollaro australiano"]},e.exports["#EURBRL-symbol-description"]={en:["Euro / Brazilian Real"],it:["Euro / Real brasiliano"]},e.exports["#EURCAD-symbol-description"]={en:["Euro / Canadian Dollar"],it:["Euro / Dollaro canadese"]},e.exports["#EURCHF-symbol-description"]={en:["Euro / Swiss Franc"],it:["Euro / Franco svizzero"]},e.exports["#EURGBP-symbol-description"]={en:["Euro / British Pound"],it:["Euro / Sterlina"]},e.exports["#EURJPY-symbol-description"]={en:["Euro / Japanese Yen"],it:["Euro / Yen giapponese"]},e.exports["#EURNOK-symbol-description"]={
|
||||
en:["Euro / Norwegian Krone"],it:["Euro / Corona Novergese"]},e.exports["#EURNZD-symbol-description"]={en:["Euro / New Zealand Dollar"],it:["Euro / Dollaro neozelandese"]},e.exports["#EURONEXT:AEX-symbol-description"]={en:["AEX Index"],it:["Indice AEX"]},e.exports["#EURONEXT:BEL20-symbol-description"]={en:["BEL 20 Index"],it:["Indice BEL 20"]},e.exports["#EURONEXT:PX1-symbol-description"]={en:["CAC 40 Index"],it:["Indice CAC 40"]},e.exports["#EURRUB-symbol-description"]={en:["Euro / Russian Ruble"],it:["Euro / Rublo russo"]},e.exports["#EURRUB_TOM-symbol-description"]={en:["Euro / Russian Ruble TOM"],it:["Euro / Rublo russo TOM"]},e.exports["#EURSEK-symbol-description"]={en:["Euro / Swedish Krona"],it:["Euro / Corona svedese"]},e.exports["#EURTRY-symbol-description"]={en:["Euro / Turkish Lira"],it:["Euro / Nuova lira turca"]},e.exports["#EURUSD-symbol-description"]={en:["Euro / U.S. Dollar"],it:["Euro / Dollaro"]},e.exports["#EUSTX50-symbol-description"]={en:["Euro Stoxx 50 Index"],it:["Indice Euro Stoxx 50"]},e.exports["#FOREXCOM:US2000-symbol-description"]={en:["US Small Cap 2000"]},e.exports["#FRA40-symbol-description"]={en:["CAC 40 Index"],it:["Indice CAC 40"]},e.exports["#FRED:GDP-symbol-description"]={en:["Gross Domestic Product, 1 Decimal"],it:["Prodotto interno lordo, 1 decimale"]},e.exports["#FRED:POP-symbol-description"]={en:["Total Population: All Ages Including Armed Forces Overseas"],it:["Popolazione totale: tutte le età compresi i militari in missione"]},e.exports["#FRED:UNRATE-symbol-description"]={en:["Civilian Unemployment Rate"],it:["Tasso di disoccupazione"]},e.exports["#FTSEMYX:FBMKLCI-symbol-description"]={en:["FTSE Bursa Malaysia KLCI Index"],it:["Indice FTSE Bursa Malaysia KLCI"]},e.exports["#FWB:KT1-symbol-description"]={en:["Key Tronic Corр."]},e.exports["#FX:AUS200-symbol-description"]={en:["S&P/ASX Index"],it:["Indice S&P/ASX"]},e.exports["#FX:US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Industriale Dow Jones"]},e.exports["#GBPAUD-symbol-description"]={en:["British Pound / Australian Dollar"],it:["Sterlina / Dollaro australiano"]},e.exports["#GBPCAD-symbol-description"]={en:["British Pound / Canadian Dollar"],it:["Sterlina / Dollaro canadese"]},e.exports["#GBPCHF-symbol-description"]={en:["British Pound / Swiss Franc"],it:["Sterlina / Franco svizzero"]},e.exports["#GBPEUR-symbol-description"]={en:["British Pound / Euro"],it:["Sterlina / Euro"]},e.exports["#GBPJPY-symbol-description"]={en:["British Pound / Japanese Yen"],it:["Sterlina / Yen giapponese"]},e.exports["#GBPNZD-symbol-description"]={en:["British Pound / New Zealand Dollar"],it:["Sterlina / Dollaro neozelandese"]},e.exports["#GBPPLN-symbol-description"]={en:["British Pound / Polish Zloty"],it:["Sterlina / Zloty Polacco"]},e.exports["#GBPRUB-symbol-description"]={en:["British Pound / Russian Ruble"],it:["Sterlina / Rublo russo"]},e.exports["#GBPUSD-symbol-description"]={en:["British Pound / U.S. Dollar"],it:["Sterlina / Dollaro"]},e.exports["#GER30-symbol-description"]={en:["DAX Index"],
|
||||
it:["DAX Indice azionario tedesco"]},e.exports["#GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#GPW:ACG-symbol-description"]={en:["Acautogaz"]},e.exports["#GPW:WIG20-symbol-description"]={en:["WIG20 Index"],it:["Indice WIG20"]},e.exports["#HSI:HSI-symbol-description"]={en:["Hang Seng Index"],it:["Indice Hang Seng"]},e.exports["#ICEUS:DX1!-symbol-description"]={en:["U.S. Dollar Index Futures"],it:["Indice futures dollaro"]},e.exports["#IDX:COMPOSITE-symbol-description"]={en:["IDX Composite Index"],it:["Indice IDX Composite"]},e.exports["#INDEX:HSCE-symbol-description"]={en:["Hang Seng China Enterprises Index"],it:["Indice Hang Seng China Enterprises"]},e.exports["#INDEX:JKSE-symbol-description"]={en:["Jakarta Composite Index"],it:["Indice Jakarta Composite"]},e.exports["#INDEX:KLSE-symbol-description"]={en:["Bursa Malaysia KLCI Index"],it:["Indice Bursa Malaysia KLCI"]},e.exports["#INDEX:MIB-symbol-description"]={en:["MIB Index"],it:["Indice MIB"]},e.exports["#INDEX:MOY0-symbol-description"]={en:["Euro Stoxx 50 Index"],it:["Indice Euro Stoxx 50"]},e.exports["#INDEX:STI-symbol-description"]={en:["STI Index"],it:["Indice STI"]},e.exports["#INDEX:TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#INDEX:XLY0-symbol-description"]={en:["Shanghai Composite Index"],it:["Indice Shanghai Composite"]},e.exports["#IOTUSD-symbol-description"]={en:["IOTA / U.S. Dollar"],it:["IOTA / Dollaro"]},e.exports["#JPN225-symbol-description"]={en:["Japan 225 Index"],it:["Indice Japan 225"]},e.exports["#JPYKRW-symbol-description"]={en:["Japanese Yen / South Korean Won"],it:["Yen giapponese / Won sudcoreano"]},e.exports["#JPYRUB-symbol-description"]={en:["Japanese Yen / Russian Ruble"],it:["Yen giapponese / Rublo russo"]},e.exports["#JPYUSD-symbol-description"]={en:["Japanese Yen / U.S. Dollar"],it:["Yen giapponese / Dollaro"]},e.exports["#LKOH-symbol-description"]={en:["LUKOIL"]},e.exports["#LSE:SCHO-symbol-description"]={en:["Scholium Group Plc Ord 1P"]},e.exports["#LTCBRL-symbol-description"]={en:["Litecoin / Brazilian Real"],it:["Litecoin / Real brasiliano"]},e.exports["#LTCBTC-symbol-description"]={en:["Litecoin / Bitcoin"]},e.exports["#LTCUSD-symbol-description"]={en:["Litecoin / U.S. Dollar"],it:["Litecoin / Dollaro"]},e.exports["#LUNAUSD-symbol-description"]={en:["Luna / U.S. Dollar"],it:["Luna / Dollaro"]},e.exports["#MOEX:BR1!-symbol-description"]={en:["Brent Oil Futures"],it:["Futures Petrolio Brent"]},e.exports["#MOEX:GAZP-symbol-description"]={en:["GAZPROM"]},e.exports["#MOEX:IMOEX-symbol-description"]={en:["MOEX Russia Index"],it:["Indice MOEX Russia"]},e.exports["#MOEX:MGNT-symbol-description"]={en:["MAGNIT"]},e.exports["#MOEX:MICEXINDEXCF-symbol-description"]={en:["MOEX Russia Index"],it:["Indice MOEX"]},e.exports["#MOEX:MX1!-symbol-description"]={en:["MICEX Index Futures"],it:["Futures Indice MICEX"]},e.exports["#MOEX:MX2!-symbol-description"]={en:["MICEX Index Futures"],it:["Futures Indice MICEX"]},
|
||||
e.exports["#MOEX:RI1!-symbol-description"]={en:["RTS Index Futures"],it:["Futures Indice RTS"]},e.exports["#MOEX:RTSI-symbol-description"]={en:["RTS Index"],it:["Indice RTS"]},e.exports["#MOEX:RUAL-symbol-description"]={en:["United Company RUSAL PLC"]},e.exports["#MOEX:SBER-symbol-description"]={en:["SBERBANK"]},e.exports["#MOEX:VTBR-symbol-description"]={en:["VTB"]},e.exports["#MSFT-symbol-description"]={en:["Microsoft Corp."]},e.exports["#NAS100-symbol-description"]={en:["US 100 Cash CFD"]},e.exports["#NASDAQ:AMD-symbol-description"]={en:["Advanced Micro Devices Inc"]},e.exports["#NASDAQ:GOOG-symbol-description"]={en:["Alphabet Inc (Google) Class C"]},e.exports["#NASDAQ:GOOGL-symbol-description"]={en:["Alphabet Inc (Google) Class A"]},e.exports["#NASDAQ:HGX-symbol-description"]={en:["PHLX Housing Sector Index"],it:["Indice PHLX Housing Sector"]},e.exports["#NASDAQ:IEF-symbol-description"]={en:["Ishares 7-10 Year Treasury Bond ETF"],it:["Ishares Treasury Bond ETF 7-10 anni"]},e.exports["#NASDAQ:IEI-symbol-description"]={en:["Ishares 3-7 Year Treasury Bond ETF"],it:["Ishares Treasury Bond ETF 3-7 anni"]},e.exports["#NASDAQ:ITI-symbol-description"]={en:["Iteris Inc"]},e.exports["#NASDAQ:IXIC-symbol-description"]={en:["Nasdaq Composite Index"],it:["Indice Nasdaq Composite"]},e.exports["#NASDAQ:LCID-symbol-description"]={en:["Lucid Group, Inc."]},e.exports["#NASDAQ:LE-symbol-description"]={en:["Lands' End Inc"]},e.exports["#NASDAQ:NDX-symbol-description"]={en:["Nasdaq 100 Index"],it:["Indice Nasdaq 100"]},e.exports["#NASDAQ:OSX-symbol-description"]={en:["PHLX Oil Service Sector Index"],it:["Indice PHLX Oil Service Sector"]},e.exports["#NASDAQ:SHY-symbol-description"]={en:["Ishares 1-3 Year Treasury Bond ETF"],it:["Ishares 1-3 Anni Treasury Bond ETF"]},e.exports["#NASDAQ:SOX-symbol-description"]={en:["Philadelphia Semiconductor Index"],it:["Indice Philadelphia Semiconductor"]},e.exports["#NASDAQ:TLT-symbol-description"]={en:["Ishares 20+ Year Treasury Bond ETF"],it:["Ishares Treasury Bond ETF 20+ Anni"]},e.exports["#NASDAQ:UTY-symbol-description"]={en:["PHLX Utility Sector Index"],it:["Indice PHLX Utility Sector"]},e.exports["#NASDAQ:XAU-symbol-description"]={en:["PHLX Gold and Silver Sector Index"],it:["Indice PHLX Gold and Silver Sector"]},e.exports["#NASDAQ:ZS-symbol-description"]={en:["Zscaler Inc"]},e.exports["#NEOUSD-symbol-description"]={en:["NEO / U.S. Dollar"],it:["NEO / Dollaro"]},e.exports["#NGAS-symbol-description"]={en:["Natural Gas (Henry Hub)"]},e.exports["#NKY-symbol-description"]={en:["Japan 225 Index"],it:["Indice Japan 225"]},e.exports["#NSE:ITI-symbol-description"]={en:["Indian Telephone Industries Limited"]},e.exports["#NSE:NIFTY-symbol-description"]={en:["Nifty 50 Index"],it:["Indice Nifty 50"]},e.exports["#NYMEX:AEZ1!-symbol-description"]={en:["NY Ethanol Futures"],it:["Futures Etanolo NY"]},e.exports["#NYMEX:CJ1!-symbol-description"]={en:["Cocoa Futures"],it:["Futures cocco"]},e.exports["#NYMEX:CL1!-symbol-description"]={en:["Light Crude Oil Futures"],it:["Futures Petrolio Greggio Leggero"]},
|
||||
e.exports["#NYMEX:HO1!-symbol-description"]={en:["NY Harbor ULSD Futures"],it:["Futures NY Harbor ULSD"]},e.exports["#NYMEX:KT1!-symbol-description"]={en:["Coffee Futures"],it:["Futures Caffè"]},e.exports["#NYMEX:NG1!-symbol-description"]={en:["Natural Gas Futures"],it:["Futures Gas Naturale"]},e.exports["#NYMEX:PA1!-symbol-description"]={en:["Palladium Futures"],it:["Futures palladio"]},e.exports["#NYMEX:PL1!-symbol-description"]={en:["Platinum Futures"],it:["Futures Platino"]},e.exports["#NYMEX:RB1!-symbol-description"]={en:["RBOB Gasoline Futures"],it:["Futures Benzina RBOB"]},e.exports["#NYMEX:TT1!-symbol-description"]={en:["Cotton Futures"],it:["Futures cotone"]},e.exports["#NYMEX_MINI:QG1!-symbol-description"]={en:["E-mini Natural Gas Futures"],it:["Futures E-mini gas naturale"]},e.exports["#NYMEX_MINI:QM1!-symbol-description"]={en:["E-mini Light Crude Oil Futures"],it:["Futures E-mini petrolio greggio leggero"]},e.exports["#NYMEX_MINI:QU1!-symbol-description"]={en:["E-mini Gasoline Futures"],it:["Futures E-mini benzina"]},e.exports["#NYSE:BABA-symbol-description"]={en:["Alibaba Group Holdings Ltd."]},e.exports["#NYSE:F-symbol-description"]={en:["FORD MTR CO DEL"]},e.exports["#NYSE:HE-symbol-description"]={en:["Hawaiian Electric Industries"]},e.exports["#NYSE:NYA-symbol-description"]={en:["NYSE Composite Index"],it:["Indice NYSE Composite"]},e.exports["#NYSE:PBR-symbol-description"]={en:["PETROLEO BRASILEIRO SA PETROBR"],it:["Petrolio Brasiliano (PBR)"]},e.exports["#NYSE:XAX-symbol-description"]={en:["AMEX Composite Index"],it:["Indice AMEX Composite"]},e.exports["#NYSE:XMI-symbol-description"]={en:["NYSE ARCA Major Market Index"],it:["Indice NYSE ARCA Major Market"]},e.exports["#NZDJPY-symbol-description"]={en:["New Zealand Dollar / Japanese Yen"],it:["Dollaro neozelandese / Yen giapponese"]},e.exports["#NZDUSD-symbol-description"]={en:["New Zealand Dollar / U.S. Dollar"],it:["Dollaro neozelandese / Dollaro"]},e.exports["#NZX:ALLC-symbol-description"]={en:["S&P/NZX All Index (Capital Index)"],it:["Indice (Capital Index) S&P/NZX ALL"]},e.exports["#NZX:NZ50G-symbol-description"]={en:["S&P / NZX 50 Index Gross"],it:["Indice grezzo S&P / NZX 50"]},e.exports["#OANDA:NATGASUSD-symbol-description"]={en:["CFDs on Natural Gas"],it:["CFD Gas Naturale"]},e.exports["#OANDA:SPX500USD-symbol-description"]={en:["S&P 500 Index"],it:["Indice S&P 500"]},e.exports["#OANDA:XCUUSD-symbol-description"]={en:["CFDs on Copper (US$ / lb)"],it:["CFD Rame (US$ / lb)"]},e.exports["#OMXCOP:OMXC25-symbol-description"]={en:["OMX Copenhagen 25 Index"],it:["Indice OMX Copenhagen 25"]},e.exports["#OMXCOP:SCHO-symbol-description"]={en:["Schouw & Co A/S"]},e.exports["#OMXHEX:OMXH25-symbol-description"]={en:["OMX Helsinki 25 Index"],it:["Indice OMX Helsinki 25"]},e.exports["#OMXRSE:OMXRGI-symbol-description"]={en:["OMX Riga Gross Index"],it:["Indice OMX Riga Gross"]},e.exports["#OMXSTO:OMXS30-symbol-description"]={en:["OMX Stockholm 30 Index"],it:["Indice OMX Stockholm 30"]},e.exports["#OMXTSE:OMXTGI-symbol-description"]={
|
||||
en:["OMX Tallinn Gross Index"],it:["Indice OMX Tallinn Gross"]},e.exports["#OMXVSE:OMXVGI-symbol-description"]={en:["OMX Vilnius Gross Index"],it:["Indice OMX Vilnius Gross"]},e.exports["#OTC:IHRMF-symbol-description"]={en:["Ishares MSCI Japan SHS"]},e.exports["#QSE:GNRI-symbol-description"]={en:["QE Index"],it:["Indice QE"]},e.exports["#RTS-symbol-description"]={en:["Russian RTS Index"],it:["Indice Russo RTS"]},e.exports["#RUSSELL:RUA-symbol-description"]={en:["Russell 3000 Index"],it:["Indice Russell 3000"]},e.exports["#RUSSELL:RUI-symbol-description"]={en:["Russell 1000 Index"],it:["Indice Russell 1000"]},e.exports["#RUSSELL:RUT-symbol-description"]={en:["Russell 2000 Index"],it:["Indice Russell 2000"]},e.exports["#SET:GC-symbol-description"]={en:["Global Connections Public Company"]},e.exports["#SIX:F-symbol-description"]={en:["Ford Motor Company"]},e.exports["#SIX:SMI-symbol-description"]={en:["Swiss Market Index"],it:["Indice mercato svizzero"]},e.exports["#SOLUSD-symbol-description"]={en:["Solana / U.S. Dollar"],it:["Solana / Dollaro"]},e.exports["#SOYBNUSD-symbol-description"]={en:["CFDs on Soybeans"],it:["CFD Semi di soia"]},e.exports["#SP:OEX-symbol-description"]={en:["S&P 100 Index"],it:["Indice S&P 100"]},e.exports["#SP:SPGSCI-symbol-description"]={en:["S&P Goldman Sachs Commodity Index"],it:["Indice S&P Goldman Sachs Commodity"]},e.exports["#SP:SPX-symbol-description"]={en:["S&P 500 Index"],it:["Indice S&P 500"]},e.exports["#SP:SVX-symbol-description"]={en:["S&P 500 Value Index"],it:["Indice S&P 500 Value"]},e.exports["#SPX500-symbol-description"]={en:["S&P 500 Index"],it:["Indice S&P 500"]},e.exports["#SUGARUSD-symbol-description"]={en:["CFDs on Sugar"],it:["CFD Zucchero"]},e.exports["#SZSE:399001-symbol-description"]={en:["Shenzhen Component Index"],it:["Indice Shenzhen Component"]},e.exports["#TADAWUL:2370-symbol-description"]={en:["Middle East Specialized Cables Co."]},e.exports["#TADAWUL:TASI-symbol-description"]={en:["Tadawul All Shares Index"],it:["Indice Tadawul All Shares"]},e.exports["#TASE:TA35-symbol-description"]={en:["TA-35 Index"],it:["Indice TA-35"]},e.exports["#TSX:TSX-symbol-description"]={en:["S&P/TSX Composite Index"],it:["Indice S&P/TSX Composite"]},e.exports["#TSX:TX60-symbol-description"]={en:["S&P/TSX 60 Index"],it:["Indice S&P/TSX 60"]},e.exports["#TVC:AU10-symbol-description"]={en:["Australia Government Bonds 10 YR"],it:["Titoli di stato Australia 10 anni"]},e.exports["#TVC:AU10Y-symbol-description"]={en:["Australia Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Australia 10 anni"]},e.exports["#TVC:AXY-symbol-description"]={en:["Australian Dollar Currency Index"],it:["Indice Dollaro australiano"]},e.exports["#TVC:BXY-symbol-description"]={en:["British Pound Currency Index"],it:["Indice Sterlina"]},e.exports["#TVC:CA10-symbol-description"]={en:["Canadian Government Bonds, 10 YR"],it:["Titoli di stato Canada, 10 anni"]},e.exports["#TVC:CA10Y-symbol-description"]={en:["Canadian Government Bonds 10 YR Yield"],it:["Titoli di stato Canada, rendimento 10 anni"]},
|
||||
e.exports["#TVC:CAC40-symbol-description"]={en:["CAC 40 Index"],it:["Indice CAC 40"]},e.exports["#TVC:CN10-symbol-description"]={en:["China Government Bonds 10 YR"],it:["Titoli di stato Cina 10 anni"]},e.exports["#TVC:CN10Y-symbol-description"]={en:["China Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Cina 10 anni"]},e.exports["#TVC:CXY-symbol-description"]={en:["Canadian Dollar Currency Index"],it:["Indice Dollaro canadese"]},e.exports["#TVC:DE10-symbol-description"]={en:["German Government Bonds 10 YR"],it:["Titoli di stato Germania 10 anni"]},e.exports["#TVC:DE10Y-symbol-description"]={en:["German Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Germania 10 anni"]},e.exports["#TVC:DEU30-symbol-description"]={en:["DAX Index"],it:["Indice DAX"]},e.exports["#TVC:DJI-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Industriale Dow Jones"]},e.exports["#TVC:DXY-symbol-description"]={en:["U.S. Dollar Index"],it:["Indice Dollaro americano"]},e.exports["#TVC:ES10-symbol-description"]={en:["Spain Government Bonds 10 YR"],it:["Titoli di stato Spagna 10 anni"]},e.exports["#TVC:ES10Y-symbol-description"]={en:["Spain Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Spagna 10 anni"]},e.exports["#TVC:EUBUND-symbol-description"]={en:["Euro Bund"]},e.exports["#TVC:EXY-symbol-description"]={en:["Euro Currency Index"],it:["Indice Euro"]},e.exports["#TVC:FR10-symbol-description"]={en:["France Government Bonds 10 YR"],it:["Titoli di stato Francia 10 anni"]},e.exports["#TVC:FR10Y-symbol-description"]={en:["France Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Francia 10 anni"]},e.exports["#TVC:FTMIB-symbol-description"]={en:["Milano Italia Borsa Index"]},e.exports["#TVC:GB02-symbol-description"]={en:["UK Government Bonds 2 YR"],it:["Titoli di stato UK 2 anni"]},e.exports["#TVC:GB10-symbol-description"]={en:["UK Government Bonds 10 YR"],it:["Titoli di stato UK 10 anni"]},e.exports["#TVC:GB10Y-symbol-description"]={en:["UK Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Gran Bretagna 10 anni"]},e.exports["#TVC:GOLD-symbol-description"]={en:["CFDs on Gold (US$ / OZ)"],it:["CFD Oro (US$/OZ)"]},e.exports["#TVC:HSI-symbol-description"]={en:["Hang Seng Index"],it:["Indice Hang Seng"]},e.exports["#TVC:IBEX35-symbol-description"]={en:["IBEX 35 Index"],it:["Indice IBEX 35"]},e.exports["#TVC:ID03-symbol-description"]={en:["Indonesia Government Bonds 3 YR"],it:["Titoli di stato Indonesia 3 anni"]},e.exports["#TVC:ID10-symbol-description"]={en:["Indonesia Government Bonds 10 YR"],it:["Titoli di stato Indonesia 10 anni"]},e.exports["#TVC:ID10Y-symbol-description"]={en:["Indonesia Government Bonds 10 YR Yield"],it:["Titoli di stato Indonesia, 10 anni"]},e.exports["#TVC:IN10-symbol-description"]={en:["India Government Bonds 10 YR"],it:["Titoli di stato India 10 anni"]},e.exports["#TVC:IN10Y-symbol-description"]={en:["India Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato India 10 anni"]},e.exports["#TVC:IT10-symbol-description"]={
|
||||
en:["Italy Government Bonds 10 YR"],it:["Titoli di stato Italia 10 anni"]},e.exports["#TVC:IT10Y-symbol-description"]={en:["Italy Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Italia 10 anni"]},e.exports["#TVC:IXIC-symbol-description"]={en:["US Composite Index"],it:["Indice Composite US"]},e.exports["#TVC:JP10-symbol-description"]={en:["Japan Government Bonds 10 YR"],it:["Titoli di stato Giappone 10 anni"]},e.exports["#TVC:JP10Y-symbol-description"]={en:["Japan Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Giappone 10 anni"]},e.exports["#TVC:JXY-symbol-description"]={en:["Japanese Yen Currency Index"],it:["Indice Yen giapponese"]},e.exports["#TVC:KOSPI-symbol-description"]={en:["Korea Composite Stock Price Index"],it:["Indice Korea Composite Stock Price"]},e.exports["#TVC:KR10-symbol-description"]={en:["Korea Government Bonds 10 YR"],it:["Titoli di stato Corea 10 anni"]},e.exports["#TVC:KR10Y-symbol-description"]={en:["Korea Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Corea 10 anni"]},e.exports["#TVC:MY10-symbol-description"]={en:["Malaysia Government Bonds 10 YR"],it:["Titoli di stato Malesia 10 anni"]},e.exports["#TVC:MY10Y-symbol-description"]={en:["Malaysia Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Malesia 10 anni"]},e.exports["#TVC:NDX-symbol-description"]={en:["US 100 Index"],it:["Indice US 100"]},e.exports["#TVC:NI225-symbol-description"]={en:["Japan 225 Index"],it:["Indice Japan 225"]},e.exports["#TVC:NL10-symbol-description"]={en:["Netherlands Government Bonds, 10 YR"],it:["Titoli di stato Olanda, 10 anni"]},e.exports["#TVC:NL10Y-symbol-description"]={en:["Netherlands Government Bonds 10 YR Yield"],it:["Titoli di stato Olanda, rendimento 10 anni"]},e.exports["#TVC:NYA-symbol-description"]={en:["NYSE Composite Index"],it:["Indice NYSE Composite"]},e.exports["#TVC:NZ10-symbol-description"]={en:["New Zealand Government Bonds, 10 YR"],it:["Titoli di stato Nuova Zelanda, 10 anni"]},e.exports["#TVC:NZ10Y-symbol-description"]={en:["New Zealand Government Bonds 10 YR Yield"],it:["Titoli di stato Nuova Zelanda, rendimento 10 anni"]},e.exports["#TVC:PALLADIUM-symbol-description"]={en:["CFDs on Palladium (US$ / OZ)"],it:["CFD Palladio (US$/OZ)"]},e.exports["#TVC:PL05Y-symbol-description"]={en:["Poland Government Bonds 5 YR Yield"],it:["Rendimento titoli di stato Polonia 5 anni"]},e.exports["#TVC:PL10Y-symbol-description"]={en:["Poland Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Polonia 10 anni"]},e.exports["#TVC:PLATINUM-symbol-description"]={en:["CFDs on Platinum (US$ / OZ)"],it:["CFD Platino (US$ / OZ)"]},e.exports["#TVC:PT10-symbol-description"]={en:["Portugal Government Bonds 10 YR"],it:["Titoli di stato Portogallo 10 anni"]},e.exports["#TVC:PT10Y-symbol-description"]={en:["Portugal Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Portogallo 10 anni"]},e.exports["#TVC:SA40-symbol-description"]={en:["South Africa Top 40 Index"],it:["Indice South Africa Top 40"]},e.exports["#TVC:SILVER-symbol-description"]={
|
||||
en:["CFDs on Silver (US$ / OZ)"],it:["CFD Argento (US$/OZ)"]},e.exports["#TVC:SPX-symbol-description"]={en:["S&P 500 Index"],it:["S&P 500"]},e.exports["#TVC:SSMI-symbol-description"]={en:["Swiss Market Index"],it:["Indice Mercato Svizzero"]},e.exports["#TVC:STI-symbol-description"]={en:["Straits Times Index"],it:["Indice Straits Time"]},e.exports["#TVC:SX5E-symbol-description"]={en:["Euro Stoxx 50 Index"],it:["Indice Stoxx 50"]},e.exports["#TVC:SXY-symbol-description"]={en:["Swiss Franc Currency Index"],it:["Indice Franco Svizzero"]},e.exports["#TVC:TR10-symbol-description"]={en:["Turkey Government Bonds 10 YR"],it:["Indice di stato Turchia 10 anni"]},e.exports["#TVC:TR10Y-symbol-description"]={en:["Turkey Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Turchia 10 anni"]},e.exports["#TVC:UKOIL-symbol-description"]={en:["CFDs on Brent Crude Oil"],it:["CFD Petrolio greggio Brent"]},e.exports["#TVC:UKX-symbol-description"]={en:["UK 100 Index"],it:["Indice UK 100"]},e.exports["#TVC:US02-symbol-description"]={en:["US Government Bonds 2 YR"],it:["Titoli di stato USA 2 anni"]},e.exports["#TVC:US02Y-symbol-description"]={en:["US Government Bonds 2 YR Yield"],it:["Rendimento titoli di stato Stati Uniti 2 anni"]},e.exports["#TVC:US05-symbol-description"]={en:["US Government Bonds 5 YR"],it:["Titoli di stato USA 5 anni"]},e.exports["#TVC:US05Y-symbol-description"]={en:["US Government Bonds 5 YR Yield"],it:["Rendimento titoli di stato Stati Uniti 5 anni"]},e.exports["#TVC:US10-symbol-description"]={en:["US Government Bonds 10 YR"],it:["Titoli di stato USA 10 anni"]},e.exports["#TVC:US10Y-symbol-description"]={en:["US Government Bonds 10 YR Yield"],it:["Rendimento titoli di stato Stati Uniti 10 anni"]},e.exports["#TVC:US30-symbol-description"]={en:["US Government Bonds 30 YR"],it:["Titoli di stato USA 30 anni"]},e.exports["#TVC:USOIL-symbol-description"]={en:["CFDs on WTI Crude Oil"],it:["CFD Petrolio WTI"]},e.exports["#TVC:VIX-symbol-description"]={en:["Volatility S&P 500 Index"],it:["Indice volatilità S&P 500"]},e.exports["#TVC:ZXY-symbol-description"]={en:["New Zealand Dollar Currency Index"],it:["Indice Dollaro Neozelandese"]},e.exports["#TWII-symbol-description"]={en:["Taiwan Weighted Index"]},e.exports["#TWSE:TAIEX-symbol-description"]={en:["Taiwan Capitalization Weighted Stock Index"],it:["Indice azionario Taiwan ponderato sulla capitalizzazione"]},e.exports["#TWTR-symbol-description"]={en:["Twitter Inc"],it:["TWITTER INC"]},e.exports["#UK100-symbol-description"]={en:["FTSE 100 Index"],it:["Indice FTSE 100"]},e.exports["#UKOIL-symbol-description"]={en:["CFDs on Crude Oil (Brent)"],it:["CFD Petrolio greggio (Brent)"]},e.exports["#UNIUSD-symbol-description"]={en:["Uniswap / U.S. Dollar"],it:["Uniswap / Dollaro"]},e.exports["#US30-symbol-description"]={en:["Dow Jones Industrial Average Index"],it:["Indice Dow Jones Industrial Average"]},e.exports["#USDAUD-symbol-description"]={en:["U.S. Dollar / Australian Dollar"],it:["Dollaro USA / Dollaro australiano"]},e.exports["#USDBRL-symbol-description"]={
|
||||
en:["U.S. Dollar / Brazilian Real"],it:["Dollaro / Real brasiliano"]},e.exports["#USDCAD-symbol-description"]={en:["U.S. Dollar / Canadian Dollar"],it:["Dollaro / Dollaro canadese"]},e.exports["#USDCHF-symbol-description"]={en:["U.S. Dollar / Swiss Franc"],it:["Dollaro / Franco svizzero"]},e.exports["#USDCNY-symbol-description"]={en:["U.S. Dollar / Chinese Yuan"],it:["Dollaro / Yuan cinese"]},e.exports["#USDDKK-symbol-description"]={en:["U.S. Dollar / Danish Krone"],it:["Dollaro / Corona danese"]},e.exports["#USDEUR-symbol-description"]={en:["U.S. Dollar / Euro"],it:["Dollaro USA / Euro"]},e.exports["#USDGBP-symbol-description"]={en:["U.S. Dollar / Pound Sterling"],it:["Dollaro / Sterlina"]},e.exports["#USDHKD-symbol-description"]={en:["U.S. Dollar / Hong Kong Dollar"],it:["Dollaro / Dollaro Hong Kong"]},e.exports["#USDHUF-symbol-description"]={en:["U.S. Dollar / Hungarian Forint"],it:["Dollaro / Fiorino ungherese"]},e.exports["#USDIDR-symbol-description"]={en:["U.S. Dollar / Rupiah"],it:["Dollaro / Rupiah"]},e.exports["#USDILS-symbol-description"]={en:["U.S. Dollar / Israeli Shekel"],it:["Dollaro / Siclo israeliano"]},e.exports["#USDINR-symbol-description"]={en:["U.S. Dollar / Indian Rupee"],it:["Dollaro / Rupìa indiana"]},e.exports["#USDJPY-symbol-description"]={en:["U.S. Dollar / Japanese Yen"],it:["Dollaro / Yen giapponese"]},e.exports["#USDKRW-symbol-description"]={en:["U.S. Dollar / South Korean"],it:["Dollaro / Won sudcoreano"]},e.exports["#USDMXN-symbol-description"]={en:["U.S. Dollar / Mexican Peso"],it:["Dollaro / Peso messicano"]},e.exports["#USDNZD-symbol-description"]={en:["U.S. Dollar / New Zealand Dollar"],it:["Dollaro USA / Dollaro neozelandese"]},e.exports["#USDPHP-symbol-description"]={en:["U.S. Dollar / Philippine peso"],it:["Dollaro / Peso filippino"]},e.exports["#USDPLN-symbol-description"]={en:["U.S. Dollar / Polish Zloty"],it:["DOLLARO USA / ZLOTY POLACCO"]},e.exports["#USDRUB-symbol-description"]={en:["U.S. Dollar / Russian Ruble"],it:["Dollaro / Rublo russo"]},e.exports["#USDRUB_TOM-symbol-description"]={en:["U.S. Dollar / Russian Ruble TOM"],it:["Dollaro / Rublo russo TOM"]},e.exports["#USDSEK-symbol-description"]={en:["U.S. Dollar / Swedish Krona"],it:["Dollaro / Corona svedese"]},e.exports["#USDSGD-symbol-description"]={en:["U.S. Dollar / Singapore Dollar"],it:["Dollaro / Dollaro Singapore"]},e.exports["#USDTHB-symbol-description"]={en:["U.S. Dollar / Thai Baht"],it:["Dollaro / Baht thailandese"]},e.exports["#USDTRY-symbol-description"]={en:["U.S. Dollar / Turkish Lira"],it:["Dollaro / Nuova lira turca"]},e.exports["#USDZAR-symbol-description"]={en:["U.S. Dollar / South African Rand"],it:["Dollaro / Rand Sudafricano"]},e.exports["#USOIL-symbol-description"]={en:["CFDs on Crude Oil (WTI)"],it:["CFD Petrolio greggio (WTI)"]},e.exports["#WHEATUSD-symbol-description"]={en:["CFDs on Wheat"],it:["CFD Grano"]},e.exports["#XAGUSD-symbol-description"]={en:["Silver / U.S. Dollar"],it:["Argento / Dollaro"]},e.exports["#XAUUSD-symbol-description"]={en:["Gold Spot / U.S. Dollar"],it:["Oro / Dollaro"]},
|
||||
e.exports["#XBTCAD-symbol-description"]={en:["Bitcoin / Canadian Dollar"],it:["Bitcoin / Dollaro Canadese"]},e.exports["#XETR:DAX-symbol-description"]={en:["DAX Index"],it:["Indice DAX"]},e.exports["#XMRUSD-symbol-description"]={en:["Monero / U.S. Dollar"],it:["Monero / Dollaro"]},e.exports["#XPDUSD-symbol-description"]={en:["CFDs on Palladium"],it:["CFD Palladio"]},e.exports["#XPTUSD-symbol-description"]={en:["Platinum / U.S. Dollar"],it:["Platino / Dollaro"]},e.exports["#XRPBTC-symbol-description"]={en:["XRP / Bitcoin"]},e.exports["#XRPEUR-symbol-description"]={en:["XRP / Euro"]},e.exports["#XRPUSD-symbol-description"]={en:["XRP / U.S. Dollar"],it:["XRP / Dollaro"]},e.exports["#ZECUSD-symbol-description"]={en:["Zcash / U.S. Dollar"],it:["Zcash / Dollaro"]}}}]);
|
||||
7
charting_library/bundles/it.7458.068c610f8718bc62a766.js
Normal file
7
charting_library/bundles/it.7458.068c610f8718bc62a766.js
Normal file
@@ -0,0 +1,7 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[7458,4821],{80587:e=>{e.exports={en:["bars"],it:["barre"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"]}},31882:e=>{e.exports={en:["12-hours"],it:["12 ore"]}},5797:e=>{e.exports={en:["24-hours"],it:["24 ore"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],it:["Colore basato sulla chiusura precedente"]}},23739:e=>{e.exports={en:["Canvas"]}},24197:e=>{e.exports={en:["Center"],it:["Centro"]}},15153:e=>{e.exports={en:["Chart basic styles"],it:["Stili base del grafico"]}},45639:e=>{e.exports={en:["Chart values"],it:["Valori del grafico"]}},84831:e=>{e.exports={en:["Close line"],it:["Linea chiusura"]}},74622:e=>{e.exports={en:["Crosshair"],it:["Cursore"]}},81849:e=>{e.exports={en:["Currency"],it:["Valuta"]}},3015:e=>{e.exports={en:["Currency and Unit"],it:["Valuta ed unità"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],it:["Adegua i dati a seconda dei dividendi"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],it:["Incorpora variazioni dovute al cambio di contratto"]}},36620:e=>{e.exports={en:["Alerts"],it:["Alert"]}},14119:e=>{e.exports={en:["Arguments"],it:["Argomenti"]}},68650:e=>{e.exports={en:["Average close"],it:["Chiusura media"]}},27567:e=>{e.exports={en:["Bottom"],it:["Sotto"]}},3159:e=>{e.exports={en:["Bottom line"],it:["Linea inferiore"]}},74406:e=>{e.exports={en:["Body"],it:["Corpo"]}},333:e=>{e.exports={en:["Borders"],it:["Bordi"]}},79468:e=>{e.exports={en:["Background"],it:["Sfondo"]}},10842:e=>{e.exports={en:["Bar change values"],it:["Variazione barre"]}},28975:e=>{e.exports={en:["Base level"],it:["Livello base"]}},76473:e=>{e.exports={en:["Bid and ask"],it:["Bid e Ask"]}},32744:e=>{e.exports={en:["Buttons"],it:["Pulsanti"]}},68662:e=>{e.exports={en:["Grid lines"],it:["Linee griglia"]}},17611:e=>{e.exports={en:["Down bars"],it:["Barre giù"]}},23743:e=>{e.exports={en:["Down color"],it:["Colore giù"]}},48225:e=>{e.exports={en:["Data modification"],it:["Modifica dei dati"]}},84838:e=>{e.exports={en:["Date format"],it:["Formato data"]}},42357:e=>{e.exports={en:["Day of week on labels"],it:["Giorno della settimana sulle etichette"]}},16564:e=>{e.exports={en:["Default"],it:["Predefinito"]}},78734:e=>{e.exports={en:["Description"],it:["Descrizione"]}},89212:e=>{e.exports={en:["Display inactivity gaps on intraday"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],it:["Orario di contrattazione elettronica"]}},69808:e=>{e.exports={en:["Events"],it:["Eventi"]}},41129:e=>{e.exports={en:["Fill"],it:["Riempi"]}},61112:e=>{e.exports={en:["Fill top area"],it:["Riempimento area su"]}},73185:e=>{e.exports={en:["Fill bottom area"],it:["Riempimento area inf"]}},95406:e=>{e.exports={en:["Horizontal"],it:["Orizzontale"]}},61900:e=>{e.exports={en:["Horz only"],it:["Solo orizz"]}},14180:e=>{e.exports={en:["High and low"],it:["Massimo e minimo"]}},56359:e=>{e.exports={en:["High line"],it:["Linea massimo"]}},47326:e=>{
|
||||
e.exports={en:["Integer"],it:["Intero"]}},84549:e=>{e.exports={en:["Indicators"],it:["Indicatori"]}},78082:e=>{e.exports={en:["Indicators and financials"],it:["Indicatori e dati finanziari"]}},25765:e=>{e.exports={en:["Open market status"],it:["Mercato aperto"]}},34579:e=>{e.exports={en:["Low line"],it:["Linea minimo"]}},14876:e=>{e.exports={en:["Logo"]}},89315:e=>{e.exports={en:["Long Description"],it:["Descrizione lunga"]}},72423:e=>{e.exports={en:["Last day change values"],it:["Variazione sul giorno precedente"]}},11626:e=>{e.exports={en:["Left"],it:["Sinistra"]}},8249:e=>{e.exports={en:["Money"],it:["Denaro"]}},70937:e=>{e.exports={en:["Margins"],it:["Margini"]}},68833:e=>{e.exports={en:["Middle"],it:["Medio"]}},58589:e=>{e.exports={en:["No overlapping labels"],it:["Nessuna etichetta sovrapposta"]}},60798:e=>{e.exports={en:["None"],it:["Nessuno"]}},51019:e=>{e.exports={en:["Navigation"],it:["Controlli navigazione"]}},99709:e=>{e.exports={en:["Name"],it:["Nome"]}},8852:e=>{e.exports={en:["Save chart left edge position when changing interval"],it:["Salva la posizione del bordo sinistro del grafico quando si cambia intervallo"]}},26204:e=>{e.exports={en:["Scale modes (A and L)"],it:["Modalità di scala (A e L)"]}},93968:e=>{e.exports={en:["Scales"],it:["Assi"]}},90275:e=>{e.exports={en:["Scales and lines"],it:["Scale e linee"]}},30042:e=>{e.exports={en:["Scales placement"],it:["Posizione assi"]}},28715:e=>{e.exports={en:["Status line"],it:["Legenda"]}},95481:e=>{e.exports={en:["Symbol"],it:["Simbolo"]}},53263:e=>{e.exports={en:["Pane"],it:["Pannello"]}},82894:e=>{e.exports={en:["Pane separators"],it:["Separatori pannello"]}},16207:e=>{e.exports={en:["Percentage"],it:["Percentuale"]}},94408:e=>{e.exports={en:["Pips"],it:["Pip/Tick"]}},60904:e=>{e.exports={en:["Pre/post market"],it:["Pre/post mercato"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],it:["Sfondo sessione pre e post mercato"]}},59766:e=>{e.exports={en:["Precision"],it:["Precisione"]}},83811:e=>{e.exports={en:["Previous day close"],it:["Chiusura giorno precedente"]}},35082:e=>{e.exports={en:["Price Scale"],it:["Asse del prezzo"]}},27632:e=>{e.exports={en:["Price and percentage value"],it:["Valore di prezzo e percentuale"]}},62142:e=>{e.exports={en:["Price labels & lines"],it:["Etichette e linee di prezzo"]}},84684:e=>{e.exports={en:["Price source"],it:["Fonte prezzo"]}},73466:e=>{e.exports={en:["Projection up bars"],it:["Barre a proiezione superiore"]}},77430:e=>{e.exports={en:["Projection candles"],it:["Candele di proiezione"]}},88367:e=>{e.exports={en:["Projection down bars"],it:["Barre a proiezione inferiore"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],it:["Prezzi reali sull'asse (invece di quelli Heikin Ashi)"]}},50421:e=>{e.exports={en:["Right"],it:["Destra"]}},62532:e=>{e.exports={en:["Right Margin"],it:["Margine destro"]}},41571:e=>{e.exports={en:["Watermark"],it:["Filigrana"]}},32163:e=>{e.exports={en:["Wick"],it:["Ombra"]}},97118:e=>{e.exports={en:["Top"],it:["Sopra"]}},89349:e=>{
|
||||
e.exports={en:["Top line"],it:["Linea superiore"]}},70320:e=>{e.exports={en:["Text"],it:["Testo"]}},25485:e=>{e.exports={en:["Text alignment"],it:["Allineamento testo"]}},67781:e=>{e.exports={en:["Text orientation"],it:["Orientamento testo"]}},20215:e=>{e.exports={en:["Thin bars"],it:["Barre sottili"]}},70198:e=>{e.exports={en:["Title"],it:["Titolo"]}},29854:e=>{e.exports={en:["Titles"],it:["Titoli"]}},5791:e=>{e.exports={en:["Ticker"]}},16816:e=>{e.exports={en:["Ticker and description"],it:["Ticker e descrizione"]}},24821:e=>{e.exports={en:["Ticks"],it:["Tick"]}},93965:e=>{e.exports={en:["Time Scale"],it:["Asse temporale"]}},5591:e=>{e.exports={en:["Time hours format"],it:["Formato orario"]}},77073:e=>{e.exports={en:["Timezone"],it:["Fuso orario"]}},76495:e=>{e.exports={en:["Trading"]}},33564:e=>{e.exports={en:["Unit"],it:["Unità"]}},23091:e=>{e.exports={en:["Up color"],it:["Colore su"]}},36957:e=>{e.exports={en:["Up bars"],it:["Barre su"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],it:["Usa il settlement come chiusura nel giornaliero"]}},37644:e=>{e.exports={en:["Volume"]}},51514:e=>{e.exports={en:["Value"],it:["Valore"]}},31218:e=>{e.exports={en:["Value according to scale"],it:["Valore asse"]}},60092:e=>{e.exports={en:["Values"],it:["Valori"]}},83594:e=>{e.exports={en:["Vert and horz"],it:["Vert e orizz"]}},8402:e=>{e.exports={en:["Vert only"],it:["Solo vert."]}},69526:e=>{e.exports={en:["Vertical"],it:["Verticale"]}},21105:e=>{e.exports={en:["candle"],it:["candela"]}},27068:e=>{e.exports={en:["change HLC bars"],it:["cambio barre HLC"]}},21201:e=>{e.exports={en:["change HLC bars color"]}},3311:e=>{e.exports={en:["change navigation buttons visibility"],it:["cambio visibilità pulsanti navigazione"]}},96227:e=>{e.exports={en:["change open market status visibility"],it:["cambio visibilità stato di mercato"]}},43231:e=>{e.exports={en:["change average close price line width"],it:["modifica spessore della linea del prezzo medio di chiusura"]}},47026:e=>{e.exports={en:["change average close price line color"],it:["modifica colore della linea del prezzo medio di chiusura"]}},86866:e=>{e.exports={en:["change area fill color"],it:["cambio colore riempimento area"]}},89346:e=>{e.exports={en:["change area line width"],it:["cambio spessore linea area"]}},29605:e=>{e.exports={en:["change area line color"],it:["cambio colore linea area"]}},4640:e=>{e.exports={en:["change area price source"],it:["cambio fonte area prezzo"]}},98407:e=>{e.exports={en:["change ask line color"],it:["cambio colore linea lettera (ask)"]}},42190:e=>{e.exports={en:["change base level"],it:["cambio livello base"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],it:["cambio colore inf baseline"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],it:["cambio spessore linea inf baseline"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],it:["cambio colore riempimento area inf baseline"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],
|
||||
it:["cambio colore riempimento area sup baseline"]}},68609:e=>{e.exports={en:["change baseline price source"],it:["cambio fonte prezzo baseline"]}},69044:e=>{e.exports={en:["change baseline top line color"],it:["cambio colore sup baseline"]}},68197:e=>{e.exports={en:["change baseline top line width"],it:["cambio spessore linea sup baseline"]}},33464:e=>{e.exports={en:["change bar up color"],it:["cambio colore barra su"]}},27426:e=>{e.exports={en:["change bar change visibility"],it:["cambio visibilità variazione barre"]}},59622:e=>{e.exports={en:["change bar down color"],it:["cambio colore barra giù"]}},17919:e=>{e.exports={en:["change bid line color"],it:["cambio colore linea denaro (bid)"]}},32094:e=>{e.exports={en:["change bottom margin"],it:["cambio margine inf"]}},63119:e=>{e.exports={en:["change currency and unit labels visibility"],it:["cambio visibilità etichette valuta e unità"]}},64003:e=>{e.exports={en:["change currency label visibility"],it:["cambio visibilità etichetta valuta"]}},42803:e=>{e.exports={en:["change chart background color"],it:["cambio colore sfondo grafico"]}},41382:e=>{e.exports={en:["change chart background type"],it:["cambio tipologia sfondo grafico"]}},79637:e=>{e.exports={en:["change chart values visibility"],it:["modifica visibilità dei valori del grafico"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],it:["cambio colore basato su chiusura prec"]}},88324:e=>{e.exports={en:["change column up color"],it:["cambio colore colonna sup"]}},93890:e=>{e.exports={en:["change column down color"],it:["cambio colore colonna inf"]}},4727:e=>{e.exports={en:["change column price source"],it:["cambio fonte dati colonna"]}},50544:e=>{e.exports={en:["change crosshair width"],it:["cambio spessore linea croce"]}},92885:e=>{e.exports={en:["change crosshair color"],it:["cambio colore linea croce"]}},68418:e=>{e.exports={en:["change crosshair style"],it:["cambio stile linea croce"]}},43109:e=>{e.exports={en:["change date format"],it:["cambio formato data"]}},30418:e=>{e.exports={en:["change day of week on labels"],it:["cambia il giorno della settimana sulle etichette"]}},82063:e=>{e.exports={en:["change decimal places"],it:["cambio cifre decimali"]}},44223:e=>{e.exports={en:["change extended hours color"],it:["cambio colore orari estesi"]}},47393:e=>{e.exports={en:["change electronic trading hours"],it:["modifica orari di negoziazione elettronica"]}},73844:e=>{e.exports={en:["change grid lines visibility"],it:["cambia la visibilità delle linee della griglia"]}},61407:e=>{e.exports={en:["change high and low price line color"],it:["modifica colore delle linee dei prezzi massimi e minimi"]}},39581:e=>{e.exports={en:["change high and low price line width"],it:["modifica spessore delle linee dei prezzi massimi e minimi"]}},6026:e=>{e.exports={en:["change high-low body color"],it:["cambio colore corpo max-min"]}},73021:e=>{e.exports={en:["change high-low body visibility"],it:["cambio visibilità corpo max-min"]}},46844:e=>{e.exports={en:["change high-low border color"],
|
||||
it:["cambio colore bordo max-min"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],it:["cambio visibilità bordi max-min"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],it:["cambio visibilità etichette max-min"]}},56961:e=>{e.exports={en:["change high-low labels color"],it:["cambio colore etichette max-min"]}},21133:e=>{e.exports={en:["change horz grid lines color"],it:["cambio colore linee orizz griglia"]}},63050:e=>{e.exports={en:["change indicator titles visibility"],it:["cambio visibilità titoli indicatore"]}},49583:e=>{e.exports={en:["change indicator values visibility"],it:["cambio visibilità valori indicatore"]}},78310:e=>{e.exports={en:["change indicator arguments visibility"],it:["cambio visibilità argomenti indicatore"]}},35111:e=>{e.exports={en:["change indicators and financials name labels visibility"],it:["cambia visibilità etichette nomi indicatori e finanziari"]}},71161:e=>{e.exports={en:["change indicators and financials value labels visibility"],it:["cambia visibilità etichette valori indicatori e finanziari"]}},66307:e=>{e.exports={en:["change last day change visibility"],it:["variazione visibilità della variazione nell'ultimo giorno di negoziazione"]}},91873:e=>{e.exports={en:["change legend background transparency"],it:["cambio trasparenza sfondo legenda"]}},14246:e=>{e.exports={en:["change legend background visibility"],it:["cambio visibilità sfondo legenda"]}},88640:e=>{e.exports={en:["change line color"],it:["cambio colore linea"]}},41837:e=>{e.exports={en:["change line price source"],it:["cambio fonte linea prezzo"]}},48339:e=>{e.exports={en:["change line width"],it:["cambio spessore linea"]}},18378:e=>{e.exports={en:["change pane buttons visibility"],it:["cambio visibilità pulsanti pannelli"]}},52203:e=>{e.exports={en:["change pane separators color"],it:["cambio colore separatori pannello"]}},38730:e=>{e.exports={en:["change post market color"],it:["cambio colore post mercato"]}},28075:e=>{e.exports={en:["change post market line color"],it:["cambio colore linea post mercato"]}},91978:e=>{e.exports={en:["change pre/post market price lines visibility"],it:["cambia visibilità linee prezzo pre e post mercato"]}},44371:e=>{e.exports={en:["change pre market color"],it:["cambio colore pre mercato"]}},96114:e=>{e.exports={en:["change pre market line color"],it:["cambio colore linea pre mercato"]}},69814:e=>{e.exports={en:["change previous close price line color"],it:["cambio colore linea prezzo chiusura prec"]}},13660:e=>{e.exports={en:["change previous close price line width"],it:["cambio spessore linea prezzo chiusura prec"]}},87861:e=>{e.exports={en:["change price line color"],it:["cambio colore linea prezzo"]}},29353:e=>{e.exports={en:["change price line width"],it:["cambio spessore linea prezzo"]}},16241:e=>{e.exports={en:["change range bars style"],it:["cambia lo stile delle barre range"]}},65821:e=>{e.exports={en:["change range thin bars"],it:["cambio range barre sottili"]}},75487:e=>{e.exports={en:["change renko wick down color"],
|
||||
it:["cambio colore ombra inf renko"]}},92277:e=>{e.exports={en:["change renko wick up color"],it:["cambio colore ombra sup renko"]}},79604:e=>{e.exports={en:["change renko wick visibility"],it:["cambio visibilità ombra renko"]}},82946:e=>{e.exports={en:["change right margin"],it:["cambio margine dx"]}},79545:e=>{e.exports={en:["change right margin percentage"],it:["modifica percentuale del margine destro"]}},78995:e=>{e.exports={en:["change symbol watermark color"],it:["cambio colore filigrana"]}},73227:e=>{e.exports={en:["change symbol watermark visibility"],it:["cambio visibilità filigrana"]}},88167:e=>{e.exports={en:["change symbol description visibility"],it:["cambio visibilità descrizione simbolo"]}},12050:e=>{e.exports={en:["change symbol field visibility"],it:["cambia la visibilità del campo dei simboli"]}},46066:e=>{e.exports={en:["change symbol last value mode"],it:["cambio modalità ultimo valore simbolo"]}},902:e=>{e.exports={en:["change symbol legend format"],it:["cambio formato legenda simbolo"]}},77408:e=>{e.exports={en:["change save chart left edge position when changing interval"],it:["modifica del salvataggio della posizione del bordo sinistro del grafico quando si cambia intervallo"]}},69023:e=>{e.exports={en:["change scale modes buttons visibility"],it:["cambia la visibilità dei pulsanti delle modalità di scala"]}},76131:e=>{e.exports={en:["change scales text color"],it:["cambio colore testo assi"]}},27792:e=>{e.exports={en:["change scales font size"],it:["cambio dimensione font assi"]}},94997:e=>{e.exports={en:["change scales lines color"],it:["cambio colore linee assi"]}},60067:e=>{e.exports={en:["change sessions breaks visibility"],it:["cambio visibilità separatori sessione"]}},28175:e=>{e.exports={en:["change sessions breaks width"],it:["cambio spessore separatori sessione"]}},33895:e=>{e.exports={en:["change sessions breaks color"],it:["cambio colore separatori sessione"]}},21641:e=>{e.exports={en:["change sessions breaks style"],it:["cambio stile separatori sessione"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],it:["cambio prezzo da mostrare nell'asse (al posto di quello Heikin-Ashi)"]}},60834:e=>{e.exports={en:["change thin bars"],it:["cambio spessore barre"]}},39754:e=>{e.exports={en:["change time hours format"],it:["cambio formato orario"]}},74883:e=>{e.exports={en:["change top margin"],it:["cambio margine sup"]}},51250:e=>{e.exports={en:["change unit label visibility"],it:["cambio visibilità etichetta unità"]}},71805:e=>{e.exports={en:["change vert grid lines color"],it:["cambio colore linee vert griglia"]}},96201:e=>{e.exports={en:["change volume values visibility"],it:["cambio visibilità valori volume"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],it:["cambio colore bordo sup {candleType}"]}},36697:e=>{e.exports={en:["change {candleType} up color"],it:["cambio colore sup {candleType}"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],it:["cambio colore ombra inf {candleType}"]}},
|
||||
47664:e=>{e.exports={en:["change {candleType} wick up color"],it:["cambio colore ombra sup {candleType}"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],it:["cambio visibilità ombra {candleType}"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],it:["cambio visibilità corpo {candleType}"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],it:["cambio visibilità bordo {candleType}"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],it:["cambio colore bordo inf {candleType}"]}},64571:e=>{e.exports={en:["change {candleType} down color"],it:["cambio colore inf {candleType}"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],it:["cambio colore bordo inf {chartType}"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],it:["cambio colore bordo sup {chartType}"]}},5012:e=>{e.exports={en:["change {chartType} down color"],it:["cambio colore inf {chartType}"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],it:["cambio colore bordo proiezione sup {chartType}"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],it:["cambio colore proiezione inf {chartType}"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],it:["cambio colore proiezione sup {chartType}"]}},6970:e=>{e.exports={en:["change {chartType} up color"],it:["cambio colore sup {chartType}"]}},66110:e=>{e.exports={en:["change {inputName} property"],it:["cambio proprietà {inputName}"]}},18077:e=>{e.exports={en:["adjust data for dividends"],it:["adegua i dati a seconda dei dividendi"]}},1433:e=>{e.exports={en:["adjust for contract changes"],it:["incorpora variazioni dovute a cambio di contratti"]}},92598:e=>{e.exports={en:["hollow candles"],it:["Candele vuote"]}},57243:e=>{e.exports={en:["range","ranges"],it:["range","range"]}},70282:e=>{e.exports={en:["renko"],it:["Renko"]}},28871:e=>{e.exports={en:["toggle intraday inactivity gaps"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],it:["usa il settlement come chiusura nel giornaliero"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],it:["{value} decimale","{value} decimali"]}}}]);
|
||||
@@ -1,5 +0,0 @@
|
||||
(self.webpackChunktradingview=self.webpackChunktradingview||[]).push([[1190,6155,4821],{13616:e=>{e.exports={en:["#{count} (bar)"],ja:["#{count} (バー)"]}},80166:e=>{e.exports={en:["#{count} (price, bar)"],ja:["#{count}(価格, バー)"]}},4348:e=>{e.exports={en:["(O + H + L + C)/4"],ja:["(始値 + 高値 + 安値 + 終値)/4"]}},27311:e=>{e.exports={en:["(H + L + C)/3"],ja:["(高値 + 安値 + 終値)/3"]}},69303:e=>{e.exports={en:["(H + L)/2"],ja:["(高値 + 安値)/2"]}},23111:e=>{e.exports={en:["Color bars based on previous close"],ja:["(現在足の始値基準ではなく)前の足の終値基準でバーの色を判定"]}},78930:e=>{e.exports={en:["Coordinates"],ja:["座標"]}},24197:e=>{e.exports={en:["Center"],ja:["中央"]}},84831:e=>{e.exports={en:["Close line"],ja:["ライン - 終値"]}},93020:e=>{e.exports={en:["Adjust data for dividends"],ja:["配当でデータを調整"]}},68921:e=>{e.exports={en:["Adjust for contract changes"],ja:["限月の切り替えを調整"]}},27567:e=>{e.exports={en:["Bottom"],ja:["下"]}},3159:e=>{e.exports={en:["Bottom line"],ja:["下部ライン"]}},74406:e=>{e.exports={en:["Body"],ja:["実体"]}},333:e=>{e.exports={en:["Borders"],ja:["枠"]}},42398:e=>{e.exports={en:["Base"],ja:["ベース"]}},28975:e=>{e.exports={en:["Base level"],ja:["基準レベル"]}},71776:e=>{e.exports={en:["Down"],ja:["下"]}},17611:e=>{e.exports={en:["Down bars"],ja:["下降バー"]}},23743:e=>{e.exports={en:["Down color"],ja:["下降カラー"]}},48225:e=>{e.exports={en:["Data modification"],ja:["データの調整"]}},72942:e=>{e.exports={en:["Days"],ja:["日"]}},16564:e=>{e.exports={en:["Default"],ja:["デフォルト"]}},44272:e=>{e.exports={en:["Displacement (price, bar)"],ja:["再配置 (価格, バー)"]}},59777:e=>{e.exports={en:["Electronic trading hours background"],ja:["電子取引時間の背景"]}},819:e=>{e.exports={en:["Extend lines"],ja:["ラインを延長"]}},41129:e=>{e.exports={en:["Fill"],ja:["塗りつぶし"]}},61112:e=>{e.exports={en:["Fill top area"],ja:["上部エリア"]}},73185:e=>{e.exports={en:["Fill bottom area"],ja:["下部エリア"]}},886:e=>{e.exports={en:["HLC bars"],ja:["HLCバー"]}},56796:e=>{e.exports={en:["Hours"],ja:["時間"]}},95406:e=>{e.exports={en:["Horizontal"],ja:["水平"]}},56359:e=>{e.exports={en:["High line"],ja:["ライン - 高値"]}},47326:e=>{e.exports={en:["Integer"],ja:["整数"]}},21429:e=>{e.exports={en:["Inputs"],ja:["パラメーター"]}},64075:e=>{e.exports={en:["Override min tick"],ja:["小数点表示"]}},34579:e=>{e.exports={en:["Low line"],ja:["ライン - 安値"]}},11626:e=>{e.exports={en:["Left"],ja:["左"]}},43154:e=>{e.exports={en:["Months"],ja:["月"]}},68833:e=>{e.exports={en:["Middle"],ja:["中央"]}},42562:e=>{e.exports={en:["Minutes"],ja:["分"]}},65188:e=>{e.exports={en:["Seconds"],ja:["秒"]}},13350:e=>{e.exports={en:["Pearson's R"],ja:["ピアソンの積率相関係数"]}},88327:e=>{e.exports={en:["Pre/post market hours background"],ja:["プレ/アフターマーケット時間の背景"]}},59766:e=>{e.exports={en:["Precision"],ja:["精度"]}},84684:e=>{e.exports={en:["Price source"],ja:["価格のソース"]}},73466:e=>{e.exports={en:["Projection up bars"],ja:["上昇予測バー"]}},77430:e=>{e.exports={en:["Projection candles"],ja:["予測バー"]}},88367:e=>{e.exports={en:["Projection down bars"],ja:["下降予測バー"]}},6160:e=>{e.exports={en:["Real prices on price scale (instead of Heikin-Ashi price)"],ja:["価格スケールに(平均足ではなく)実際の価格を表示"]}},50421:e=>{e.exports={en:["Right"],ja:["右"]
|
||||
}},835:e=>{e.exports={en:["Weeks"],ja:["週"]}},32163:e=>{e.exports={en:["Wick"],ja:["ヒゲ"]}},97118:e=>{e.exports={en:["Top"],ja:["上"]}},89349:e=>{e.exports={en:["Top line"],ja:["上部ライン"]}},70320:e=>{e.exports={en:["Text"],ja:["テキスト"]}},25485:e=>{e.exports={en:["Text alignment"],ja:["テキストの配置"]}},67781:e=>{e.exports={en:["Text orientation"],ja:["テキストの向き"]}},20215:e=>{e.exports={en:["Thin bars"],ja:["細いバー"]}},24821:e=>{e.exports={en:["Ticks"],ja:["ティック"]}},77073:e=>{e.exports={en:["Timezone"],ja:["タイムゾーン"]}},22691:e=>{e.exports={en:["Up"],ja:["上"]}},23091:e=>{e.exports={en:["Up color"],ja:["上昇カラー"]}},36957:e=>{e.exports={en:["Up bars"],ja:["上昇バー"]}},49545:e=>{e.exports={en:["Use settlement as close on daily interval"],ja:["日足で清算価格を終値として利用"]}},69526:e=>{e.exports={en:["Vertical"],ja:["垂直"]}},21105:e=>{e.exports={en:["candle"],ja:["ローソク足"]}},27068:e=>{e.exports={en:["change HLC bars"],ja:["HLCバーの変更"]}},86866:e=>{e.exports={en:["change area fill color"],ja:["エリアの塗りつぶしの色の変更"]}},89346:e=>{e.exports={en:["change area line width"],ja:["エリアラインの幅の変更"]}},29605:e=>{e.exports={en:["change area line color"],ja:["エリアラインの色の変更"]}},4640:e=>{e.exports={en:["change area price source"],ja:["エリア価格のソースの変更"]}},42190:e=>{e.exports={en:["change base level"],ja:["基準レベルの変更"]}},71785:e=>{e.exports={en:["change baseline bottom line color"],ja:["ベースラインの下部ラインの色の変更"]}},56175:e=>{e.exports={en:["change baseline bottom line width"],ja:["ベースラインの下部ラインの幅の変更"]}},97216:e=>{e.exports={en:["change baseline fill bottom area color"],ja:["ベースラインの下部エリアの塗りつぶしの色の変更"]}},92873:e=>{e.exports={en:["change baseline fill top area color"],ja:["ベースラインの上部エリアの塗りつぶしの色の変更"]}},68609:e=>{e.exports={en:["change baseline price source"],ja:["ベースラインの価格ソースの変更"]}},69044:e=>{e.exports={en:["change baseline top line color"],ja:["ベースラインの上部ラインの色の変更"]}},68197:e=>{e.exports={en:["change baseline top line width"],ja:["ベースラインの上部ラインの幅の変更"]}},33464:e=>{e.exports={en:["change bar up color"],ja:["上昇バーの色の変更"]}},2066:e=>{e.exports={en:["change bar X coordinate"],ja:["バーのX座標の変更"]}},59622:e=>{e.exports={en:["change bar down color"],ja:["下降バーの色の変更"]}},43090:e=>{e.exports={en:["change color bars based on previous close"],ja:["前の足の終値基準でバーの色の変更"]}},88324:e=>{e.exports={en:["change column up color"],ja:["カラムの上昇カラーの変更"]}},93890:e=>{e.exports={en:["change column down color"],ja:["カラムの下降カラーの変更"]}},4727:e=>{e.exports={en:["change column price source"],ja:["カラムの価格ソースの変更"]}},82063:e=>{e.exports={en:["change decimal places"],ja:["小数点以下の桁数の変更"]}},44223:e=>{e.exports={en:["change extended hours color"],ja:["時間外取引の色の変更"]}},47393:e=>{e.exports={en:["change electronic trading hours"],ja:["電子取引時間の変更"]}},6026:e=>{e.exports={en:["change high-low body color"],ja:["ハイローの実体の色の変更"]}},73021:e=>{e.exports={en:["change high-low body visibility"],ja:["ハイローの実体の表示の変更"]}},46844:e=>{e.exports={en:["change high-low border color"],ja:["ハイローの枠の色の変更"]}},15801:e=>{e.exports={en:["change high-low borders visibility"],ja:["ハイローの枠の表示の変更"]}},72399:e=>{e.exports={en:["change high-low labels visibility"],ja:["ハイローのラベルの表示の変更"]}},56961:e=>{
|
||||
e.exports={en:["change high-low labels color"],ja:["ハイローのラベルの色の変更"]}},88640:e=>{e.exports={en:["change line color"],ja:["ラインの色の変更"]}},41837:e=>{e.exports={en:["change line price source"],ja:["ライン価格のソースの変更"]}},48339:e=>{e.exports={en:["change line width"],ja:["ライン幅の変更"]}},38730:e=>{e.exports={en:["change post market color"],ja:["アフターマーケットの色の変更"]}},44371:e=>{e.exports={en:["change pre market color"],ja:["プレマーケットの色の変更"]}},11737:e=>{e.exports={en:["change price Y coordinate"],ja:["価格のY座標の変更"]}},16241:e=>{e.exports={en:["change range bars style"],ja:["レンジバーのスタイルの変更"]}},65821:e=>{e.exports={en:["change range thin bars"],ja:["レンジバーの細さの変更"]}},75487:e=>{e.exports={en:["change renko wick down color"],ja:["下降の練行足のヒゲの色の変更"]}},92277:e=>{e.exports={en:["change renko wick up color"],ja:["練行足のヒゲの色の変更"]}},79604:e=>{e.exports={en:["change renko wick visibility"],ja:["練行足のヒゲの表示の変更"]}},91109:e=>{e.exports={en:["change study overlay min tick"],ja:["インジケーターの最小ティックの変更"]}},82924:e=>{e.exports={en:["change study overlay style"],ja:["インジケーターのオーバーレイのスタイルの変更"]}},16660:e=>{e.exports={en:["change the display of real prices on price scale (instead of Heiken-Ashi price)"],ja:["価格スケールに(平均足ではなく)実際の価格を表示の変更"]}},60834:e=>{e.exports={en:["change thin bars"],ja:["細いバーの変更"]}},78509:e=>{e.exports={en:["change {title} base line color"],ja:["{title}のベースラインの色の変更"]}},27864:e=>{e.exports={en:["change {title} base line style"],ja:["{title}のベースラインのスタイルの変更"]}},96177:e=>{e.exports={en:["change {title} base line visibility"],ja:["{title}のベースラインの表示の変更"]}},17926:e=>{e.exports={en:["change {title} base line width"],ja:["{title}のベースラインの幅の変更"]}},41638:e=>{e.exports={en:["change {title} down line color"],ja:["{title}の下降ラインの色の変更"]}},51842:e=>{e.exports={en:["change {title} down line style"],ja:["{title}の下降ラインのスタイルの変更"]}},46410:e=>{e.exports={en:["change {title} down line visibility"],ja:["{title}の下降ラインの表示の変更"]}},64615:e=>{e.exports={en:["change {title} down line width"],ja:["{title}の下降ラインの幅の変更"]}},96135:e=>{e.exports={en:["change {title} days to"],ja:["{title}の可視性を何日までに変更"]}},91201:e=>{e.exports={en:["change {title} days from"],ja:["{title}の可視性を何日からに変更"]}},76295:e=>{e.exports={en:["change {title} extend lines"],ja:["{title}のラインを延長の変更"]}},8306:e=>{e.exports={en:["change {title} hours from"],ja:["{title}の可視性を何時間からに変更"]}},67233:e=>{e.exports={en:["change {title} hours to"],ja:["{title}の可視性を何時間までに変更"]}},99122:e=>{e.exports={en:["change {title} months from"],ja:["{title}の可視性を何ヶ月からに変更"]}},10518:e=>{e.exports={en:["change {title} months to"],ja:["{title}の可視性を何ヶ月までに変更"]}},38011:e=>{e.exports={en:["change {title} minutes to"],ja:["{title}の可視性を何分までに変更"]}},59820:e=>{e.exports={en:["change {title} minutes from"],ja:["{title}の可視性を何分からに変更"]}},6573:e=>{e.exports={en:["change {title} seconds to"],ja:["{title}の可視性を何秒までに変更"]}},86780:e=>{e.exports={en:["change {title} seconds from"],ja:["{title}の可視性を何秒からに変更"]}},6207:e=>{e.exports={en:["change {title} show pearson's r"],ja:["{title}のピアソンの積率相関係数の表示の変更"]}},32481:e=>{e.exports={en:["change {title} weeks from"],ja:["{title}の可視性を何週からに変更"]}},
|
||||
18678:e=>{e.exports={en:["change {title} weeks to"],ja:["{title}の可視性を何週までに変更"]}},42553:e=>{e.exports={en:["change {title} up line visibility"],ja:["{title}の上昇ラインの表示の変更"]}},63824:e=>{e.exports={en:["change {title} up line width"],ja:["{title}の上昇ラインの幅の変更"]}},89178:e=>{e.exports={en:["change {title} up line color"],ja:["{title}の上昇ラインの色の変更"]}},51188:e=>{e.exports={en:["change {title} up line style"],ja:["{title}の上昇ラインのスタイルの変更"]}},98596:e=>{e.exports={en:["change {title} visibility on ticks"],ja:["{title}のティックでの可視性の変更"]}},71084:e=>{e.exports={en:["change {title} visibility on weeks"],ja:["{title}の週足の可視性の変更"]}},55616:e=>{e.exports={en:["change {title} visibility on {ranges}"],ja:["{ranges}で{title}の表示の変更"]}},56402:e=>{e.exports={en:["change {title} visibility on days"],ja:["{title}の日足の可視性の変更"]}},68715:e=>{e.exports={en:["change {title} visibility on hours"],ja:["{title}の時間足の可視性の変更"]}},78219:e=>{e.exports={en:["change {title} visibility on minutes"],ja:["{title}の分足の可視性の変更"]}},67583:e=>{e.exports={en:["change {title} visibility on months"],ja:["{title}の月足の可視性の変更"]}},41315:e=>{e.exports={en:["change {title} visibility on seconds"],ja:["{title}の秒足での可視性の変更"]}},17214:e=>{e.exports={en:["change {candleType} up border color"],ja:["上昇の{candleType}の枠の色の変更"]}},36697:e=>{e.exports={en:["change {candleType} up color"],ja:["上昇の{candleType}の色の変更"]}},48091:e=>{e.exports={en:["change {candleType} wick down color"],ja:["下降の{candleType}のヒゲの色の変更"]}},47664:e=>{e.exports={en:["change {candleType} wick up color"],ja:["上昇の{candleType}のヒゲの色の変更"]}},94750:e=>{e.exports={en:["change {candleType} wick visibility"],ja:["{candleType}のヒゲの表示の変更"]}},60608:e=>{e.exports={en:["change {candleType} body visibility"],ja:["{candleType}の実体の表示の変更"]}},11114:e=>{e.exports={en:["change {candleType} border visibility"],ja:["{candleType}の枠の表示の変更"]}},20291:e=>{e.exports={en:["change {candleType} down border color"],ja:["下降の{candleType}の枠の色の変更"]}},64571:e=>{e.exports={en:["change {candleType} down color"],ja:["下降の{candleType}の色の変更"]}},23053:e=>{e.exports={en:["change {chartType} border bar down color"],ja:["{chartType}の下降バーの枠の色の変更"]}},28394:e=>{e.exports={en:["change {chartType} border bar up color"],ja:["{chartType}の上昇バーの枠の色の変更"]}},5012:e=>{e.exports={en:["change {chartType} down color"],ja:["下降の{chartType}の色の変更"]}},42826:e=>{e.exports={en:["change {chartType} projection border bar up color"],ja:["{chartType}の上昇予測バーの枠の色の変更"]}},72545:e=>{e.exports={en:["change {chartType} projection bar down color"],ja:["{chartType}の下降予測バーの色の変更"]}},85032:e=>{e.exports={en:["change {chartType} projection bar up color"],ja:["{chartType}の上昇予測バーの色の変更"]}},6970:e=>{e.exports={en:["change {chartType} up color"],ja:["上昇の{chartType}の色の変更"]}},66110:e=>{e.exports={en:["change {inputName} property"],ja:["{inputName}プロパティの変更"]}},25167:e=>{e.exports={en:["change {propertyName} property"],ja:["{propertyName}プロパティの変更"]}},18077:e=>{e.exports={en:["adjust data for dividends"],ja:["配当でデータの調整"]}},1433:e=>{e.exports={en:["adjust for contract changes"],ja:["限月の切り替えを調整"]}},35813:e=>{e.exports={en:["days"],
|
||||
ja:["日"]}},89919:e=>{e.exports={en:["days to"],ja:["何日まで"]}},59215:e=>{e.exports={en:["days from"],ja:["何日から"]}},2359:e=>{e.exports={en:["hours"],ja:["時間"]}},82267:e=>{e.exports={en:["hours from"],ja:["何時間から"]}},15600:e=>{e.exports={en:["hours to"],ja:["何時間まで"]}},92598:e=>{e.exports={en:["hollow candles"],ja:["中空ローソク足"]}},76261:e=>{e.exports={en:["move drawings"],ja:["描画の移動"]}},95300:e=>{e.exports={en:["months"],ja:["月"]}},17250:e=>{e.exports={en:["months from"],ja:["何ヶ月から"]}},2828:e=>{e.exports={en:["months to"],ja:["何ヶ月まで"]}},18726:e=>{e.exports={en:["minutes"],ja:["分"]}},67649:e=>{e.exports={en:["minutes to"],ja:["何分まで"]}},22476:e=>{e.exports={en:["minutes from"],ja:["何分から"]}},751:e=>{e.exports={en:["seconds"],ja:["秒"]}},73419:e=>{e.exports={en:["seconds to"],ja:["何秒まで"]}},35801:e=>{e.exports={en:["seconds from"],ja:["何秒から"]}},57243:e=>{e.exports={en:["range","ranges"],ja:["レンジ"]}},70282:e=>{e.exports={en:["renko"],ja:["練行足"]}},45537:e=>{e.exports={en:["weeks"],ja:["週"]}},92859:e=>{e.exports={en:["weeks from"],ja:["何週から"]}},44127:e=>{e.exports={en:["weeks to"],ja:["何週まで"]}},3539:e=>{e.exports={en:["ticks"],ja:["ティック"]}},92978:e=>{e.exports={en:["use settlement as close on daily interval"],ja:["日足で清算価格を終値として利用"]}},59644:e=>{e.exports={en:["{value} decimal","{value} decimals"],ja:["{value}桁"]}}}]);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user